-
-
Notifications
You must be signed in to change notification settings - Fork 695
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[17.0][OU-ADD] account_edi_ubl_cii: Migrate to 17.0
- Loading branch information
1 parent
1456517
commit feb1b3a
Showing
4 changed files
with
79 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
openupgrade_scripts/scripts/account_edi_ubl_cii/17.0.1.0/post-migration.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||
from openupgradelib import openupgrade | ||
|
||
|
||
def _res_partner_compute_fields_values(env): | ||
res_partner = env["res.partner"].with_context(active_test=False).search([]) | ||
res_partner._compute_ubl_cii_format() | ||
res_partner._compute_peppol_endpoint() | ||
res_partner._compute_peppol_eas() | ||
|
||
|
||
@openupgrade.migrate() | ||
def migrate(env, version): | ||
_res_partner_compute_fields_values(env) |
19 changes: 19 additions & 0 deletions
19
openupgrade_scripts/scripts/account_edi_ubl_cii/17.0.1.0/pre-migration.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). | ||
from openupgradelib import openupgrade | ||
|
||
|
||
def _res_partner_create_columns(env): | ||
openupgrade.logged_query( | ||
env.cr, | ||
""" | ||
ALTER TABLE res_partner | ||
ADD COLUMN IF NOT EXISTS peppol_eas VARCHAR, | ||
ADD COLUMN IF NOT EXISTS peppol_endpoint VARCHAR, | ||
ADD COLUMN IF NOT EXISTS ubl_cii_format VARCHAR | ||
""", | ||
) | ||
|
||
|
||
@openupgrade.migrate() | ||
def migrate(env, version): | ||
_res_partner_create_columns(env) |
45 changes: 45 additions & 0 deletions
45
openupgrade_scripts/scripts/account_edi_ubl_cii/17.0.1.0/upgrade_analysis_work.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
---Models in module 'account_edi_ubl_cii'--- | ||
---Fields in module 'account_edi_ubl_cii'--- | ||
account_edi_ubl_cii / account.move / ubl_cii_xml_file (binary) : NEW attachment: True | ||
account_edi_ubl_cii / res.company / invoice_is_ubl_cii (boolean) : NEW hasdefault: default | ||
# NOTHING TO DO | ||
|
||
account_edi_ubl_cii / res.partner / peppol_eas (selection) : NEW selection_keys: ['0002', '0007', '0009', '0037', '0060', '0088', '0096', '0097', '0106', '0130', '0135', '0142', '0151', '0183', '0184', '0188', '0190', '0191', '0192', '0193', '0195', '0196', '0198', '0199', '0200', '0201', '0202', '0204', '0208', '0209', '0210', '0211', '0212', '0213', '0215', '0216', '0221', '0230', '9901', '9910', '9913', '9914', '9915', '9918', '9919', '9920', '9922', '9923', '9924', '9925', '9926', '9927', '9928', '9929', '9930', '9931', '9932', '9933', '9934', '9935', '9936', '9937', '9938', '9939', '9940', '9941', '9942', '9943', '9944', '9945', '9946', '9947', '9948', '9949', '9950', '9951', '9952', '9953', '9955', '9957', '9959'], hasdefault: compute | ||
account_edi_ubl_cii / res.partner / peppol_endpoint (char) : NEW hasdefault: compute | ||
account_edi_ubl_cii / res.partner / ubl_cii_format (selection) : NEW selection_keys: ['facturx', 'nlcius', 'ubl_a_nz', 'ubl_bis3', 'ubl_sg', 'xrechnung'], hasdefault: compute | ||
# DONE: pre-migration create columns | ||
# DONE: post-migration compute values | ||
|
||
---XML records in module 'account_edi_ubl_cii'--- | ||
DEL account.edi.format: account_edi_ubl_cii.edi_efff_1 | ||
DEL account.edi.format: account_edi_ubl_cii.edi_facturx_1_0_05 | ||
DEL account.edi.format: account_edi_ubl_cii.edi_nlcius_1 | ||
DEL account.edi.format: account_edi_ubl_cii.edi_ubl_2_1 | ||
DEL account.edi.format: account_edi_ubl_cii.ubl_a_nz | ||
DEL account.edi.format: account_edi_ubl_cii.ubl_bis3 | ||
DEL account.edi.format: account_edi_ubl_cii.ubl_de | ||
DEL account.edi.format: account_edi_ubl_cii.ubl_sg | ||
NEW ir.ui.view: account_edi_ubl_cii.account_move_send_form | ||
NEW ir.ui.view: account_edi_ubl_cii.res_config_settings_view_form | ||
NEW ir.ui.view: account_edi_ubl_cii.res_partner_view_search | ||
NEW ir.ui.view: account_edi_ubl_cii.res_partner_view_tree | ||
NEW ir.ui.view: account_edi_ubl_cii.ubl_20_CommonLineType | ||
NEW ir.ui.view: account_edi_ubl_cii.ubl_20_CommonType | ||
NEW ir.ui.view: account_edi_ubl_cii.ubl_20_CreditNoteLineType | ||
NEW ir.ui.view: account_edi_ubl_cii.ubl_20_CreditNoteType | ||
NEW ir.ui.view: account_edi_ubl_cii.ubl_20_DebitNote | ||
NEW ir.ui.view: account_edi_ubl_cii.ubl_20_DebitNoteLineType | ||
NEW ir.ui.view: account_edi_ubl_cii.ubl_20_DebitNoteType | ||
NEW ir.ui.view: account_edi_ubl_cii.ubl_20_DeliveryType | ||
NEW ir.ui.view: account_edi_ubl_cii.ubl_20_MonetaryTotalType | ||
NEW ir.ui.view: account_edi_ubl_cii.ubl_20_PaymentTermsType | ||
NEW ir.ui.view: account_edi_ubl_cii.ubl_20_ResponseType | ||
NEW ir.ui.view: account_edi_ubl_cii.ubl_20_SignatureType | ||
NEW ir.ui.view: account_edi_ubl_cii.ubl_21_CreditNoteLineType | ||
NEW ir.ui.view: account_edi_ubl_cii.ubl_21_CreditNoteType | ||
NEW ir.ui.view: account_edi_ubl_cii.ubl_21_DebitNoteLineType | ||
NEW ir.ui.view: account_edi_ubl_cii.ubl_21_DebitNoteType | ||
NEW ir.ui.view: account_edi_ubl_cii.ubl_21_PaymentTermsType | ||
NEW ir.ui.view: account_edi_ubl_cii.view_partner_property_form | ||
DEL ir.ui.view: account_edi_ubl_cii.ubl_21_InvoiceLineType | ||
# NOTHING TO DO |