Fix profile history to show when a CustomerShopperHistory is deleted

This commit is contained in:
Lance Edgar 2023-08-25 13:59:58 -05:00
parent a40b44b6e3
commit 844c629a6a

View file

@ -1292,10 +1292,10 @@ class PersonView(MasterView):
# CustomerShopperHistory (from Customer perspective)
cls = continuum.version_class(model.CustomerShopperHistory)
standin = continuum.version_class(model.CustomerShopper)
query = self.Session.query(cls)\
.join(model.CustomerShopper,
model.CustomerShopper.uuid == cls.shopper_uuid)\
.join(model.Customer)\
.join(standin, standin.uuid == cls.shopper_uuid)\
.join(model.Customer, model.Customer.uuid == standin.customer_uuid)\
.filter(model.Customer.account_holder_uuid == person.uuid)
versions.extend(query.all())