Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MIG] l10n_be_intrastat_product: Migration to 17.0 #225

Open
wants to merge 21 commits into
base: 17.0
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
db8cf27
[14.0]add l10n_be_intrastat_product
luc-demeyer Oct 14, 2022
b553703
l10n_be_intrastat_product - add maintainer
luc-demeyer Oct 15, 2022
a785349
l10n_be_intrastat_product - add unit test for refunds
luc-demeyer Oct 15, 2022
3adac76
l10n_be_intrastat_product - refund handling
luc-demeyer Oct 31, 2022
f11e713
[UPD] Update l10n_be_intrastat_product.pot
Nov 3, 2022
02e6f43
use README.rst from maintainer tools templates
luc-demeyer Nov 11, 2022
083f85e
intrastat readme
luc-demeyer Nov 11, 2022
92b177f
[UPD] README.rst
OCA-git-bot Nov 12, 2022
498e08d
[IMP] l10n_be_intrastat_product: pre-commit execution
jdidderen Nov 11, 2023
a81b2de
[MIG] l10n_be_intrastat_product: Migration to 15.0
jdidderen Nov 13, 2023
63a5ab6
[UPD] Update l10n_be_intrastat_product.pot
Nov 13, 2023
a756f24
[BOT] post-merge updates
OCA-git-bot Nov 13, 2023
fafa6b2
[MIG] l10n_be_intrastat_product: Migration to 16.0
jdidderen Nov 12, 2023
cba171e
[FIX]l10n_be_intrastat_product_declaration - remove obsolete code
luc-demeyer Apr 29, 2024
18743de
[IMP]l10n_be_intrastat_product - update readme
luc-demeyer Apr 29, 2024
ca909af
[FIX]l10n_be_intrastat_product fix unit tests
luc-demeyer Apr 29, 2024
76b65ff
[UPD] Update l10n_be_intrastat_product.pot
May 2, 2024
7224a12
[IMP] l10n_be_intrastat_product: pre-commit auto fixes
luc-demeyer Sep 30, 2024
0ffca14
[MIG] l10n_be_intrastat_product: Migration to 17.0
luc-demeyer Sep 30, 2024
8197a86
[MIG] l10n_be_intrastat_product: Migration to 17.0 - fix unit tests
luc-demeyer Sep 30, 2024
3ef773a
[IMP] l10n_be_intrastat_product - remove no longer used code
luc-demeyer Sep 30, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[FIX]l10n_be_intrastat_product_declaration - remove obsolete code
Remove check on VAT code on partner record.
This check has been moved to the intrastat_product module,
cf. OCA/intrastat-extrastat@17f5fcb
  • Loading branch information
luc-demeyer committed Sep 30, 2024
commit cba171e346694014fbccc541e7d2fae9f3f11c5b
Original file line number Diff line number Diff line change
@@ -142,12 +142,6 @@ def _update_computation_line_vals(self, inv_line, line_vals, notedict):
self._handle_refund(inv_line, line_vals, notedict)

if line_vals:
if self.declaration_type == "dispatches":
if not line_vals.get("vat", ""):
msg = _("Missing <em>VAT Number</em>")
notedict["partner"][inv.partner_id.display_name][msg].add(
notedict["inv_origin"]
)
# extended declaration
if self.reporting_level == "extended":
incoterm = self._get_incoterm(inv_line, notedict)