summaryrefslogtreecommitdiff
path: root/fixco_custom/models/upload_ginee.py
diff options
context:
space:
mode:
authorAzka Nathan <darizkyfaz@gmail.com>2026-01-28 15:27:31 +0700
committerAzka Nathan <darizkyfaz@gmail.com>2026-01-28 15:27:31 +0700
commite9b9be0af8edef9b3ae26143c1783870e099d262 (patch)
tree79b0e90f2e7b9f5bc9f43aa9aab4ef5b4f84852c /fixco_custom/models/upload_ginee.py
parent7fd85b36543e6f1cc9e55a90bbee2743ca129d5f (diff)
parent87abb539133d4f97c8a9cb9708a472c00a64e069 (diff)
Merge branch 'main' of bitbucket.org:altafixco/fixco-addons
pull
Diffstat (limited to 'fixco_custom/models/upload_ginee.py')
-rw-r--r--fixco_custom/models/upload_ginee.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/fixco_custom/models/upload_ginee.py b/fixco_custom/models/upload_ginee.py
index 19aa965..e86a175 100644
--- a/fixco_custom/models/upload_ginee.py
+++ b/fixco_custom/models/upload_ginee.py
@@ -241,8 +241,10 @@ class UploadGineeLine(models.Model):
'data': [{
**base_order,
'items': combined_items,
- 'externalOrderId': ', '.join(lines.mapped('invoice_marketplace')),
- 'orderId': ', '.join(order_ids),
+ # 'externalOrderId': ', '.join(lines.mapped('invoice_marketplace')),
+ # 'orderId': ', '.join(order_ids),
+ 'externalOrderId': ', '.join(l.invoice_marketplace for l in lines),
+ 'orderId': ', '.join(l.order_id for l in lines),
}]
}