Skip to content

Commit

Permalink
Merge PR #403 into 16.0
Browse files Browse the repository at this point in the history
Signed-off-by dreispt
  • Loading branch information
OCA-git-bot committed Dec 22, 2023
2 parents 08a2f9d + c1d5d1e commit d5b4a15
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion account_avatax_oca/models/account_move.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,9 @@ def _reverse_move_vals(self, default_values, cancel=True):
move_vals.update(
{
"invoice_doc_no": self.name,
"invoice_date": self.invoice_date,
"invoice_date": default_values
and default_values.get("invoice_date")
or self.invoice_date,
"tax_on_shipping_address": self.tax_on_shipping_address,
"warehouse_id": self.warehouse_id.id,
"location_code": self.location_code,
Expand Down

0 comments on commit d5b4a15

Please sign in to comment.