Commit 9795dd6e by Solo Group

pars odeo

1 parent a6bb3bc4
...@@ -147,6 +147,10 @@ class Vendor(VendorClass): ...@@ -147,6 +147,10 @@ class Vendor(VendorClass):
result["trx_id"] = self.partner_log_id result["trx_id"] = self.partner_log_id
result["bill_no"] = self.bill_no result["bill_no"] = self.bill_no
result["cust_trx"] = self.cust_trx result["cust_trx"] = self.cust_trx
data = "data" in data and data["data"] or None
if not data:
return result
if "order_id" in data: if "order_id" in data:
result["vend_trx"] = data["order_id"] or self.partner_log_id result["vend_trx"] = data["order_id"] or self.partner_log_id
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!