main #7

Merged
admin merged 620 commits from main into dev 2026-03-29 13:03:25 +00:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit 19a4363d10 - Show all commits

View File

@@ -216,6 +216,7 @@ def register():
sale.OpenPosition,
sale.Backtoback,
sale.AnalyticDimensionAssignment,
sale.PriceComposition,
module='sale', type_='model')
Pool.register(
lot.LotShipping,

View File

@@ -499,7 +499,7 @@ class PriceComposition(ModelSQL,ModelView):
__name__ = 'price.composition'
component = fields.Char("Component")
price = fields.Numerci("Price")
price = fields.Numeric("Price")
class SaleLine(metaclass=PoolMeta):
__name__ = 'sale.line'