Add module pos_config_single_user

Several usability enhancements in sale, purchase, product and account
This commit is contained in:
Alexis de Lattre
2016-12-09 08:35:00 +01:00
parent 241041f863
commit bb7ecae874
4 changed files with 22 additions and 44 deletions

View File

@@ -1,30 +1,12 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
############################################################################## # © 2016 Akretion (http://www.akretion.com)
#
# Intrastat Product Type module for Odoo
# Copyright (C) 2016 Akretion (http://www.akretion.com)
# @author Alexis de Lattre <alexis.delattre@akretion.com> # @author Alexis de Lattre <alexis.delattre@akretion.com>
# # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
{ {
'name': 'Intrastat Product Type', 'name': 'Intrastat Product Type',
'version': '0.1', 'version': '10.0.1.0.0',
'category': 'Accounting & Finance', 'category': 'Accounting',
'license': 'AGPL-3', 'license': 'AGPL-3',
'summary': 'Adds a special field Intrastat Type on Products', 'summary': 'Adds a special field Intrastat Type on Products',
'description': """ 'description': """
@@ -42,5 +24,5 @@ This module has been written by Alexis de Lattre from Akretion <alexis.delattre@
'depends': ['intrastat_product', 'l10n_fr_intrastat_service'], 'depends': ['intrastat_product', 'l10n_fr_intrastat_service'],
'data': ['product_view.xml'], 'data': ['product_view.xml'],
'post_init_hook': 'set_intrastat_type_on_products', 'post_init_hook': 'set_intrastat_type_on_products',
'installable': False, 'installable': True,
} }

View File

@@ -4,8 +4,8 @@
# @author Alexis de Lattre <alexis.delattre@akretion.com> # @author Alexis de Lattre <alexis.delattre@akretion.com>
from openerp import models, fields, api, _ from odoo import models, fields, api, _
from openerp.exceptions import ValidationError from odoo.exceptions import ValidationError
class ProductTemplate(models.Model): class ProductTemplate(models.Model):
@@ -34,16 +34,12 @@ class ProductTemplate(models.Model):
"(but you can set Product Type to 'Consumable' or " "(but you can set Product Type to 'Consumable' or "
"'Service').") % pt.name) "'Service').") % pt.name)
@api.multi @api.onchange('type')
def onchange_type(self, type): def intrastat_type_onchange(self):
res = super(ProductTemplate, self).onchange_type(type) if self.type in ('product', 'consu'):
if 'value' not in res: self.intrastat_type = 'product'
res['value'] = {} elif self.type == 'service':
if type == 'product': self.intrastat_type = 'service'
res['value']['intrastat_type'] = 'product'
elif type == 'service':
res['value']['intrastat_type'] = 'service'
return res
class L10nFrIntrastatServiceDeclaration(models.Model): class L10nFrIntrastatServiceDeclaration(models.Model):

View File

@@ -1,7 +1,9 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# © 2016 Akretion (Alexis de Lattre <alexis.delattre@akretion.com>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
def set_intrastat_type_on_products(cr, pool): def set_intrastat_type_on_products(cr, registry):
cr.execute( cr.execute(
"UPDATE product_template SET intrastat_type='service' " "UPDATE product_template SET intrastat_type='service' "
"WHERE type='service'") "WHERE type='service'")

View File

@@ -1,12 +1,11 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<!-- <!--
Copyright (C) 2016 Akretion (http://www.akretion.com/) © 2016 Akretion (http://www.akretion.com/)
@author Alexis de Lattre <alexis.delattre@akretion.com> @author Alexis de Lattre <alexis.delattre@akretion.com>
The licence is in the file __openerp__.py License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
--> -->
<openerp> <odoo>
<data>
<record id="product_template_form_view" model="ir.ui.view"> <record id="product_template_form_view" model="ir.ui.view">
@@ -21,5 +20,4 @@
</record> </record>
</data> </odoo>
</openerp>