diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2025-05-27 10:45:11 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2025-05-27 10:45:11 +0700 |
| commit | af127b94e7b597a3451f42199df56e27899272fd (patch) | |
| tree | 3221a99f449a5e061a75b2066af073bea1b7312f | |
| parent | a01f05f50dd852e76b44709259e8baaf33e4b462 (diff) | |
push
| -rw-r--r-- | indoteknik_custom/models/stock_picking.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indoteknik_custom/models/stock_picking.py b/indoteknik_custom/models/stock_picking.py index 05f946fd..887b2f92 100644 --- a/indoteknik_custom/models/stock_picking.py +++ b/indoteknik_custom/models/stock_picking.py @@ -625,7 +625,7 @@ class StockPicking(models.Model): ('state', '=', 'done'), ('carrier_id', '=', 151) ]) - for picking in pickings: + for picking in self: if not picking.name: raise UserError("Name pada stock.picking tidak ditemukan.") |
