diff options
| author | IT Fixcomart <it@fixcomart.co.id> | 2022-11-14 11:33:51 +0700 |
|---|---|---|
| committer | IT Fixcomart <it@fixcomart.co.id> | 2022-11-14 11:33:51 +0700 |
| commit | d6c056a43636bd2707620649cb1917ea341f1400 (patch) | |
| tree | 8173cc4cd572ef2afa342ae9ec50ddf972a63810 | |
| parent | 5ba5dcedc1c9775d16645608ef988176dbe06bd6 (diff) | |
| parent | 22bead3f48c8f98968ec4ce559fe492245e21ff1 (diff) | |
Merge branch 'master' of bitbucket.org:altafixco/indoteknik-addons
| -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 d70cfc4d..d016e241 100644 --- a/indoteknik_custom/models/stock_picking.py +++ b/indoteknik_custom/models/stock_picking.py @@ -15,7 +15,7 @@ class StockPicking(models.Model): count_line_detail = fields.Float('Total Item Detail', compute='_compute_summary_qty') count_line_operation = fields.Float('Total Item Operation', compute='_compute_summary_qty') real_shipping_id = fields.Many2one( - 'res.partner', string='Real Delivery Address', required=True, + 'res.partner', string='Real Delivery Address', domain="['|', ('company_id', '=', False), ('company_id', '=', company_id)]", help="Dipakai untuk alamat tempel") |
