This commit is contained in:
2026-02-07 17:08:29 +01:00
parent 67eca35a9a
commit 1b92b1d207
4 changed files with 9 additions and 22 deletions

View File

@@ -50,6 +50,13 @@ DAYS = [
('sunday', 'Sunday'),
]
class ContractStrategy(ModelSQL):
"Contract - Document Type"
__name__ = 'contract.strategy'
line = fields.Many2One('purchase.line', 'Purchase Line')
sale_line = fields.Many2One('sale.line', 'Sale Line')
strategy = fields.Many2One('mtm.strategy', "Strategy")
class Estimated(ModelSQL, ModelView):
"Estimated date"
__name__ = 'pricing.estimated'