change inventory entries pos list pricing base price

This commit is contained in:
2025-09-03 15:52:33 +03:30
parent 9c189fb572
commit eaa80f7e79
3 changed files with 18 additions and 8 deletions

View File

@@ -11,9 +11,9 @@ def pos_organizations_sharing_information(device: Device) -> typing.Any:
sharing_information_list = [{
"organization_name": item.organization.name,
"credit_card": item.organization.bank_information.first().card if item.organization.bank_information.exists() else "",
"sheba": item.organization.bank_information.first().sheba,
"account": item.organization.bank_information.first().account,
# "credit_card": item.organization.bank_information.first().card if item.organization.bank_information.exists() else "",
# "sheba": item.organization.bank_information.first().sheba,
# "account": item.organization.bank_information.first().account,
"broker": item.broker.name if item.broker else None,
"amount": item.broker_amount.value if item.broker else None
} for item in stake_holders]