summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2025-05-23 09:37:45 +0700
committerstephanchrst <stephanchrst@gmail.com>2025-05-23 09:37:45 +0700
commit4fc520a9b0d1e2e809033b35562fd80fffad472d (patch)
tree5ab8d8f3a7c396b416aaaae799ef736f9cf6728c
parent43313db30da73b87843425c01c723f66ee982886 (diff)
Revert "bf cant create invoice cause of custom method action assign wrong implement"
This reverts commit 46e4c80e1b530274c01cca5603f3e1be873820f6.
-rw-r--r--indoteknik_custom/models/stock_picking.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/indoteknik_custom/models/stock_picking.py b/indoteknik_custom/models/stock_picking.py
index 504338b0..3135f41c 100644
--- a/indoteknik_custom/models/stock_picking.py
+++ b/indoteknik_custom/models/stock_picking.py
@@ -1013,15 +1013,15 @@ class StockPicking(models.Model):
self.sale_id.date_doc_kirim = self.date_doc_kirim
def action_assign(self):
- res = super(StockPicking, self).action_assign()
- for move in self:
- # if not move.sale_id.hold_outgoing and move.location_id.id != 57 and move.location_dest_id.id != 60:
- # TODO cant skip hold outgoing cause of not singleton method
+ if self.sale_id.hold_outgoing and self.location_id.id == 57 and self.location_dest_id.id == 60:
+ print(1)
+ else:
+ res = super(StockPicking, self).action_assign()
current_time = datetime.datetime.utcnow()
- move.real_shipping_id = move.sale_id.real_shipping_id
- move.date_availability = current_time
+ self.real_shipping_id = self.sale_id.real_shipping_id
+ self.date_availability = current_time
# self.check_state_reserve()
- return res
+ return res
def ask_approval(self):
if self.env.user.is_accounting: