bemade_carrier_so_to_picking: manifest fix.

This commit is contained in:
Marc Durepos 2023-09-18 21:42:22 -04:00
parent 7ab7b5551f
commit b83bfcc2ed
2 changed files with 2 additions and 3 deletions

View file

@ -25,8 +25,6 @@
'website': 'https://www.bemade.org',
'license': 'OPL-1',
'depends': ['delivery'],
'data': [''],
'demo': [''],
'installable': True,
'auto_install': False,
}

View file

@ -1,4 +1,4 @@
from odoo import fields, models, api, _, Command
from odoo import fields, models, api
class StockPicking(models.Model):
@ -10,6 +10,7 @@ class StockPicking(models.Model):
compute='_compute_carrier_id',
inverse='_inverse_carrier_id',
store=True)
# carrier_set_manually = fields.Boolean(default=False)
@api.depends('sale_id')