Merge pull request #126 from ursais/10.0-mig-crm_claim_rma_code

[MIG] crm_claim_rma_code: Migration to 10.0
This commit is contained in:
Maxime Chambreuil
2018-01-11 09:42:14 -06:00
committed by GitHub
6 changed files with 13 additions and 6 deletions

View File

@@ -1,4 +1,5 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
==================
@@ -49,6 +50,7 @@ Contributors
* Yanina Aular <yani@vauxoo.com>
* Osval Reyes <osval@vauxoo.com>
* Bhavesh Odedra <bodedra@ursainfosystems.com>
Maintainer
----------

View File

@@ -4,10 +4,10 @@
{
'name': 'CRM Claim RMA Code',
'version': '9.0.1.0.0',
'version': '10.0.1.0.0',
'category': 'Generic Modules/CRM & SRM',
'author': 'Vauxoo,Odoo Community Association (OCA)',
'website': 'http://www.vauxoo.com/',
'author': 'Vauxoo, Odoo Community Association (OCA)',
'website': 'http://www.vauxoo.com',
'license': 'AGPL-3',
'depends': [
'crm_claim_type',
@@ -17,5 +17,5 @@
'data/ir_sequence_type.xml',
'views/crm_claim_type.xml',
],
'installable': False,
'installable': True,
}

View File

@@ -1,5 +1,6 @@
<?xml version="1.0"?>
<?xml version="1.0" encoding="UTF-8"?>
<odoo noupdate="1">
<!-- Claims Sequence n° -->
<record id="seq_claim_supplier" model="ir.sequence">
<field name="name">CRM Claim Supplier</field>
@@ -44,4 +45,5 @@
model="ir.sequence"
/>
</record>
</odoo>

View File

@@ -2,7 +2,7 @@
# © 2015 Vauxoo
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from openerp import fields, models
from odoo import fields, models
class CrmClaimType(models.Model):

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<record id="crm_claim_type_form_sequence" model="ir.ui.view">
<field name="name">crm.claim.type.form</field>
<field name="model">crm.claim.type</field>
@@ -10,6 +11,7 @@
</xpath>
</field>
</record>
<record id="crm_claim_type_tree_sequence" model="ir.ui.view">
<field name="name">crm.claim.type.tree</field>
<field name="model">crm.claim.type</field>
@@ -20,4 +22,5 @@
</xpath>
</field>
</record>
</odoo>