From 1ff13078bff9ea7aa414d7f0273d26e6c75a21e1 Mon Sep 17 00:00:00 2001 From: pinky <> Date: Mon, 5 Feb 2007 13:16:57 +0000 Subject: [PATCH] Added base partner sequence bzr revid: pinky-714ce5e136bf1585efbdaf70c5638fe0e773bf72 --- addons/base_partner_sequence/__init__.py | 29 ++++++++++++++ addons/base_partner_sequence/__terp__.py | 16 ++++++++ .../base_partner_sequence/partner_sequence.py | 40 +++++++++++++++++++ .../partner_sequence.xml | 21 ++++++++++ addons/product/pricelist.py | 4 +- addons/stock/stock_view.xml | 11 +++++ 6 files changed, 119 insertions(+), 2 deletions(-) create mode 100644 addons/base_partner_sequence/__init__.py create mode 100644 addons/base_partner_sequence/__terp__.py create mode 100644 addons/base_partner_sequence/partner_sequence.py create mode 100644 addons/base_partner_sequence/partner_sequence.xml diff --git a/addons/base_partner_sequence/__init__.py b/addons/base_partner_sequence/__init__.py new file mode 100644 index 00000000000..fa11d59fa8a --- /dev/null +++ b/addons/base_partner_sequence/__init__.py @@ -0,0 +1,29 @@ +############################################################################## +# +# Copyright (c) 2004 TINY SPRL. (http://tiny.be) All Rights Reserved. +# Fabien Pinckaers +# +# WARNING: This program as such is intended to be used by professional +# programmers who take the whole responsability of assessing all potential +# consequences resulting from its eventual inadequacies and bugs +# End users who are looking for a ready-to-use solution with commercial +# garantees and support are strongly adviced to contract a Free Software +# Service Company +# +# This program is Free Software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +############################################################################## + +import partner_sequence diff --git a/addons/base_partner_sequence/__terp__.py b/addons/base_partner_sequence/__terp__.py new file mode 100644 index 00000000000..91b5d7edf05 --- /dev/null +++ b/addons/base_partner_sequence/__terp__.py @@ -0,0 +1,16 @@ +# +# Use the custom module to put your specific code in a separate module. +# +{ + "name" : "Add an automatic sequence on partners", + "version" : "1.0", + "author" : "Tiny", + "category" : "Generic Modules/Base", + "website": "http://www.tinyerp.com", + "depends" : ["base"], + "demo_xml" : [], + "init_xml" : ['partner_sequence.xml'], + "update_xml" : [], + "active": False, + "installable": True +} diff --git a/addons/base_partner_sequence/partner_sequence.py b/addons/base_partner_sequence/partner_sequence.py new file mode 100644 index 00000000000..91ff8272af2 --- /dev/null +++ b/addons/base_partner_sequence/partner_sequence.py @@ -0,0 +1,40 @@ +############################################################################## +# +# Copyright (c) 2004 TINY SPRL. (http://tiny.be) All Rights Reserved. +# Fabien Pinckaers +# +# WARNING: This program as such is intended to be used by professional +# programmers who take the whole responsability of assessing all potential +# consequences resulting from its eventual inadequacies and bugs +# End users who are looking for a ready-to-use solution with commercial +# garantees and support are strongly adviced to contract a Free Software +# Service Company +# +# This program is Free Software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +############################################################################## + +from osv import osv, fields + +class partner_sequence(osv.osv): + _inherit = 'res.partner' + def create(self, cr, uid, vals, context={}): + vals['ref'] = self.pool.get('ir.sequence').get(cr, uid, 'res.partner') + res = super(partner_sequence, self).create(cr, uid, vals, context) + return res + _columns = { + 'ref': fields.char('Code', size=64, readonly=True), + } +partner_sequence() diff --git a/addons/base_partner_sequence/partner_sequence.xml b/addons/base_partner_sequence/partner_sequence.xml new file mode 100644 index 00000000000..518fa027892 --- /dev/null +++ b/addons/base_partner_sequence/partner_sequence.xml @@ -0,0 +1,21 @@ + + + + + # + # Sequences for res.partner + # + + + Partner code + res.partner + + + Partner code + res.partner + P/ + 5 + + + + diff --git a/addons/product/pricelist.py b/addons/product/pricelist.py index ffa09b349e0..07ba3ea3f94 100644 --- a/addons/product/pricelist.py +++ b/addons/product/pricelist.py @@ -207,7 +207,7 @@ class product_pricelist_item(osv.osv): _name = "product.pricelist.item" _description = "Pricelist item" - _order = "sequence" + _order = "sequence, min_quantity desc" _defaults = { 'base': lambda *a: -1, 'min_quantity': lambda *a: 1, @@ -222,7 +222,7 @@ class product_pricelist_item(osv.osv): 'categ_id': fields.many2one('product.category', 'Product Category'), 'min_quantity': fields.integer('Min. Quantity', required=True), - 'sequence': fields.integer('Priority', required=True), + 'sequence': fields.integer('Sequence', required=True), 'base': fields.selection(_price_field_get, 'Based on', required=True, size=-1), #'base': fields.many2one('product.price.type', 'Based on', required=True), 'base_pricelist_id': fields.many2one('product.pricelist', 'If Other Pricelist'), diff --git a/addons/stock/stock_view.xml b/addons/stock/stock_view.xml index 2a36d5b3a28..76dbe99afcc 100644 --- a/addons/stock/stock_view.xml +++ b/addons/stock/stock_view.xml @@ -82,6 +82,17 @@ + + stock.inventory.line.form + ir.actions.act_window + stock.inventory.line + form + tree,form + + + + + ============================= Lot =============================