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

14.0 edi fixes #221

Merged
merged 2 commits into from
Sep 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion l10n_br_fiscal/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"maintainers": ["renatonlima"],
"website": "https://github.com/OCA/l10n-brazil",
"development_status": "Production/Stable",
"version": "14.0.22.4.2",
"version": "14.0.23.0.0",
"depends": [
"product",
"l10n_br_base",
Expand Down
5 changes: 5 additions & 0 deletions l10n_br_fiscal/migrations/14.0.23.0.0/pre-migration.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,8 @@ def install_new_modules(cr):
@openupgrade.migrate()
def migrate(env, version):
install_new_modules(env.cr)
query = """
DELETE FROM ir_model_fields
WHERE model = 'l10n_br_fiscal.document.electronic'
"""
openupgrade.logged_query(env.cr, query)
3 changes: 0 additions & 3 deletions l10n_br_fiscal_edi/views/document_view.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
<field name="priority">5</field>
<field name="inherit_id" ref="l10n_br_fiscal.document_form" />
<field name="arch" type="xml">
<xpath expr="//field[@name='state_edoc']/.." position="after">
: <field name="status_description" />
</xpath>
<xpath expr="//page[@name='delivery']" position="after">
<page name="others" string="EDI">
<group>
Expand Down
Loading