bemade_carrier_so_to_picking: manifest fix.
This commit is contained in:
parent
7ab7b5551f
commit
b83bfcc2ed
2 changed files with 2 additions and 3 deletions
|
|
@ -25,8 +25,6 @@
|
||||||
'website': 'https://www.bemade.org',
|
'website': 'https://www.bemade.org',
|
||||||
'license': 'OPL-1',
|
'license': 'OPL-1',
|
||||||
'depends': ['delivery'],
|
'depends': ['delivery'],
|
||||||
'data': [''],
|
|
||||||
'demo': [''],
|
|
||||||
'installable': True,
|
'installable': True,
|
||||||
'auto_install': False,
|
'auto_install': False,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
from odoo import fields, models, api, _, Command
|
from odoo import fields, models, api
|
||||||
|
|
||||||
|
|
||||||
class StockPicking(models.Model):
|
class StockPicking(models.Model):
|
||||||
|
|
@ -10,6 +10,7 @@ class StockPicking(models.Model):
|
||||||
compute='_compute_carrier_id',
|
compute='_compute_carrier_id',
|
||||||
inverse='_inverse_carrier_id',
|
inverse='_inverse_carrier_id',
|
||||||
store=True)
|
store=True)
|
||||||
|
|
||||||
# carrier_set_manually = fields.Boolean(default=False)
|
# carrier_set_manually = fields.Boolean(default=False)
|
||||||
|
|
||||||
@api.depends('sale_id')
|
@api.depends('sale_id')
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue