Walmart - Import Sales Orders code 1 days -1 model._scheduler_import_sale_orders() Total Amount differs from Walmart The amount computed in Odoo doesn't match with the amount in Walmart. Cause: The taxes are probably different between Odoo and Walmart. A fiscal position could have changed the final price. Resolution: Check your taxes and fiscal positions configuration and correct them if necessary. 30 sale.order if sale.walmart_bind_ids and abs(sale.amount_total - sale.walmart_bind_ids[0].total_amount) >= 0.01: failed = True Total Tax Amount differs from Walmart The tax amount computed in Odoo doesn't match with the tax amount in Walmart. Cause: The taxes are probably different between Odoo and Walmart. A fiscal position could have changed the final price. Resolution: Check your taxes and fiscal positions configuration and correct them if necessary. 30 sale.order # By default, a cent of difference for the tax amount is allowed, feel free to customise it in your own module if sale.walmart_bind_ids and abs(sale.amount_tax - sale.walmart_bind_ids[0].total_amount_tax) > 0.01: failed = True