minor fix

This commit is contained in:
Wilson Gomez 2023-09-06 20:25:13 -05:00
parent c6ad98b99d
commit 38a30e55e2
1 changed files with 1 additions and 1 deletions

View File

@ -399,7 +399,7 @@ class Sale(metaclass=PoolMeta):
user = User(ctx.get('user'))
shop = Shop(args['shop'])
attribs_del = ['id', 'amount', 'unit_price_w_tax', 'total_amount']
attribs_del = ['id', 'amount', 'unit_price_w_tax', 'total_amount', 'set_delivery_fee', 'delivery_fee']
lines = args['lines']
nested_values = None
for line in lines: