Skip to content

Commit

Permalink
[MIG] card_installment: Migration to 16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
filoquin authored and jjscarafia committed Apr 14, 2023
1 parent 1737ca5 commit 693ad2a
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
1 change: 0 additions & 1 deletion card_installment/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
# -*- coding: utf-8 -*-
from . import models
from . import wizards
4 changes: 2 additions & 2 deletions card_installment/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
'author': 'ADHOC SA',
'website': "https://www.adhoc.com.ar",
'category': 'Technical',
'version': '15.0.0.0.2',
'version': "16.0.1.0.0",
'depends': ['product', 'account'],
'license': 'LGPL-3',
'images': [
],
'installable': False,
'installable': True,
'data': [
'security/ir.model.access.csv',
'security/ir_rule.xml',
Expand Down
2 changes: 1 addition & 1 deletion card_installment/data/account_card.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<field name="name">Naranja</field>
</record>
<record id="card_maestro" model="account.card">
<field name="name">maestro</field>
<field name="name">Maestro</field>
</record>
</data>
</odoo>
2 changes: 1 addition & 1 deletion card_installment/demo/account_card.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<odoo>
<data>
<data noupdate="1">
<record id="card_visa_credit" model="account.card">
<field name="installment_ids" eval="[
(0, 0, {'name':1,'divisor':1,'installment':1,'surcharge_coefficient':1}),
Expand Down
1 change: 0 additions & 1 deletion card_installment/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
from . import res_company
from . import account_card
from . import account_card_installment

0 comments on commit 693ad2a

Please sign in to comment.