minor fix dash sale

This commit is contained in:
wilsongomez 2022-10-07 15:24:36 -05:00
parent 16cb8de136
commit 4636aa4490
1 changed files with 6 additions and 0 deletions

View File

@ -19,6 +19,12 @@ class Sale(metaclass=PoolMeta):
def __setup__(cls):
super(Sale, cls).__setup__()
@classmethod
def dash_faster_process(cls, records):
for rec in records:
cls.faster_process({'id': rec.id})
@classmethod
def dash_quote(cls, args):
Shop = Pool().get('sale.shop')