Skip to content
Extraits de code Groupes Projets
Valider ca8a553e rédigé par Benjamin - Le Filament's avatar Benjamin - Le Filament
Parcourir les fichiers

[mig] Migration 13.0

parent 31ae3172
Branches
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -8,7 +8,7 @@ manifest_required_authors=Le Filament ...@@ -8,7 +8,7 @@ manifest_required_authors=Le Filament
manifest_required_keys=license manifest_required_keys=license
manifest_deprecated_keys=description,active manifest_deprecated_keys=description,active
license_allowed=AGPL-3,GPL-2,GPL-2 or any later version,GPL-3,GPL-3 or any later version,LGPL-3 license_allowed=AGPL-3,GPL-2,GPL-2 or any later version,GPL-3,GPL-3 or any later version,LGPL-3
valid_odoo_versions=14.0 valid_odoo_versions=13.0
[MESSAGES CONTROL] [MESSAGES CONTROL]
disable=all disable=all
......
...@@ -8,7 +8,7 @@ manifest_required_authors=Le Filament ...@@ -8,7 +8,7 @@ manifest_required_authors=Le Filament
manifest_required_keys=license manifest_required_keys=license
manifest_deprecated_keys=description,active manifest_deprecated_keys=description,active
license_allowed=AGPL-3,GPL-2,GPL-2 or any later version,GPL-3,GPL-3 or any later version,LGPL-3 license_allowed=AGPL-3,GPL-2,GPL-2 or any later version,GPL-3,GPL-3 or any later version,LGPL-3
valid_odoo_versions=14.0 valid_odoo_versions=13.0
[MESSAGES CONTROL] [MESSAGES CONTROL]
disable=all disable=all
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
"summary": "Gestion de la Facturation ARESCOP National", "summary": "Gestion de la Facturation ARESCOP National",
"author": "Le Filament", "author": "Le Filament",
"website": "https://www.le-filament.com", "website": "https://www.le-filament.com",
"version": "14.0.1.0.0", "version": "13.0.1.0.0",
"license": "AGPL-3", "license": "AGPL-3",
"depends": ["cgscop_account", "cgscop_cotisation"], "depends": ["cgscop_account", "cgscop_cotisation"],
"data": [ "data": [
......
...@@ -57,22 +57,22 @@ ...@@ -57,22 +57,22 @@
<filter <filter
name="unpaid" name="unpaid"
string="Ouvert" string="Ouvert"
domain="[('state', '=', 'posted'),('payment_state', '=', 'not_paid')]" domain="[('state', '=', 'posted'),('invoice_payment_state', '=', 'not_paid')]"
/> />
<filter <filter
name="in_payment" name="in_payment"
string="En Paiement" string="En Paiement"
domain="[('state', '=', 'posted'),('payment_state', '=', 'in_payment')]" domain="[('state', '=', 'posted'),('invoice_payment_state', '=', 'in_payment')]"
/> />
<filter <filter
name="paid" name="paid"
string="Payé" string="Payé"
domain="[('state', '=', 'posted'),('payment_state', '=', 'paid')]" domain="[('state', '=', 'posted'),('invoice_payment_state', '=', 'paid')]"
/> />
<filter <filter
name="late" name="late"
string="En Retard" string="En Retard"
domain="['&amp;', ('invoice_date_due', '&lt;', time.strftime('%%Y-%%m-%%d')), ('state', '=', 'posted'), ('payment_state', 'in', ('not_paid', 'partial'))]" domain="['&amp;', ('invoice_date_due', '&lt;', time.strftime('%%Y-%%m-%%d')), ('state', '=', 'posted'), ('invoice_payment_state', 'in', ('not_paid', 'partial'))]"
help="Overdue invoices, maturity date passed" help="Overdue invoices, maturity date passed"
/> />
<separator /> <separator />
...@@ -126,10 +126,10 @@ ...@@ -126,10 +126,10 @@
<field name="view_mode">tree,kanban,form,pivot,graph</field> <field name="view_mode">tree,kanban,form,pivot,graph</field>
<field <field
name="domain" name="domain"
>[('move_type','in',('out_invoice', 'out_refund'))]</field> >[('type','in',('out_invoice', 'out_refund'))]</field>
<field <field
name="context" name="context"
>{'move_type':'out_invoice', 'journal_type': 'sale'}</field> >{'type':'out_invoice', 'journal_type': 'sale'}</field>
<field <field
name="search_view_id" name="search_view_id"
ref="cgscop_account_arescop.view_account_move_arescop_filter" ref="cgscop_account_arescop.view_account_move_arescop_filter"
...@@ -138,7 +138,7 @@ ...@@ -138,7 +138,7 @@
<record id="action_invoice_customer_tree" model="ir.actions.act_window.view"> <record id="action_invoice_customer_tree" model="ir.actions.act_window.view">
<field eval="1" name="sequence" /> <field eval="1" name="sequence" />
<field name="view_mode">tree</field> <field name="view_mode">tree</field>
<field name="view_id" ref="account.view_out_invoice_tree" /> <field name="view_id" ref="account.view_invoice_tree" />
<field name="act_window_id" ref="action_arescop_account_move" /> <field name="act_window_id" ref="action_arescop_account_move" />
</record> </record>
<record id="action_invoice_customer_form" model="ir.actions.act_window.view"> <record id="action_invoice_customer_form" model="ir.actions.act_window.view">
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter