diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2025-06-25 10:03:06 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2025-06-25 10:03:06 +0700 |
| commit | 74b49469064387219474ddf8e8f38e5d676079c2 (patch) | |
| tree | 041665450d6494b7ebb20548a824a78568c209cb | |
| parent | 92bf91488eca67adabb6bfe8394385a9cee1032d (diff) | |
push
| -rw-r--r-- | indoteknik_custom/models/purchase_order_sales_match.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indoteknik_custom/models/purchase_order_sales_match.py b/indoteknik_custom/models/purchase_order_sales_match.py index 2ea89dab..b18864f3 100644 --- a/indoteknik_custom/models/purchase_order_sales_match.py +++ b/indoteknik_custom/models/purchase_order_sales_match.py @@ -41,7 +41,7 @@ class PurchaseOrderSalesMatch(models.Model): if stock_move: rec.bu_pick = stock_move.picking_id.id else: - rec.bu_pick = '' + rec.bu_pick = None def _compute_purchase_line_id(self): for line in self: |
