diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2026-01-28 15:27:31 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2026-01-28 15:27:31 +0700 |
| commit | e9b9be0af8edef9b3ae26143c1783870e099d262 (patch) | |
| tree | 79b0e90f2e7b9f5bc9f43aa9aab4ef5b4f84852c /fixco_custom/models/upload_ginee.py | |
| parent | 7fd85b36543e6f1cc9e55a90bbee2743ca129d5f (diff) | |
| parent | 87abb539133d4f97c8a9cb9708a472c00a64e069 (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.py | 6 |
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), }] } |
