minor fix

This commit is contained in:
Wilson Gomez 2023-07-25 10:57:17 -05:00
parent c446b5b563
commit 117f070f42
1 changed files with 1 additions and 1 deletions

View File

@ -228,7 +228,7 @@ class MercadoLibre(SaleWebChannel):
gettext('sale_web_channel.msg_product_not_found', s=self.generic_product.rec_name))
for product in products:
Tax = _pool.get('account.tax')
un_price = Tax.reverse_compute(line['unit_price'],
un_price = Tax.reverse_compute(Decimal(line['unit_price']),
product.customer_taxes_used)
create_lines.append({
'sale': sale.id,