fix ranvher invetory entry bug for existence of rancher - set pagination message
This commit is contained in:
@@ -11,8 +11,11 @@ def pos_organizations_sharing_information(device: Device) -> typing.Any:
|
||||
|
||||
sharing_information_list = [{
|
||||
"organization_name": item.organization.name,
|
||||
"broker": item.broker.name,
|
||||
"amount": item.broker_amount.value
|
||||
# "credit_card": item.organization.bank_information.first().card or "",
|
||||
# "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]
|
||||
|
||||
return sharing_information_list
|
||||
|
||||
Reference in New Issue
Block a user