Browse Source

[FIX] Fix version number, data tags and import ordering

pull/128/head
Manuel Claeys Bouuaert 5 years ago
committed by Rémy Taymans
parent
commit
94fce4b3d9
  1. 2
      beesdoo_pos/__manifest__.py
  2. 3
      beesdoo_product/models/beesdoo_product.py
  3. 4
      pos_price_to_weight/data/barcode_rule.xml

2
beesdoo_pos/__manifest__.py

@ -16,7 +16,7 @@
# Check https://github.com/odoo/odoo/blob/master/openerp/addons/base/module/module_data.xml
# for the full list
'category': 'Point Of Sale',
'version': '9.0.1.1.0',
'version': '12.0.1.0.0',
# any module necessary for this one to work correctly
'depends': ['beesdoo_base', 'beesdoo_product'],

3
beesdoo_product/models/beesdoo_product.py

@ -1,7 +1,8 @@
import uuid
from odoo import models, fields, api
from odoo.tools.translate import _
from odoo.exceptions import UserError, ValidationError
import uuid
class BeesdooProduct(models.Model):

4
pos_price_to_weight/data/barcode_rule.xml

@ -5,7 +5,7 @@ Copyright (C) 2017 - Today: GRAP (http://www.grap.coop)
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
-->
<odoo><data>
<odoo>
<record id="rule_price_to_weight" model="barcode.rule">
<field name="name">Price Barcodes (Computed Weight) 2 Decimals</field>
@ -16,4 +16,4 @@ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
<field name="encoding">ean13</field>
</record>
</data></odoo>
</odoo>
Loading…
Cancel
Save