summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2025-05-23 09:21:45 +0700
committerstephanchrst <stephanchrst@gmail.com>2025-05-23 09:21:45 +0700
commit46e4c80e1b530274c01cca5603f3e1be873820f6 (patch)
tree976d9ef2014ae18d466a56e3db1d88859ecccac6
parentcbf9eff4c2f934491b3a1adbf56255c14c4852ea (diff)
bf cant create invoice cause of custom method action assign wrong implement
-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 3135f41c..504338b0 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):
- 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()
+ 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
current_time = datetime.datetime.utcnow()
- self.real_shipping_id = self.sale_id.real_shipping_id
- self.date_availability = current_time
+ move.real_shipping_id = move.sale_id.real_shipping_id
+ move.date_availability = current_time
# self.check_state_reserve()
- return res
+ return res
def ask_approval(self):
if self.env.user.is_accounting: