~technofluid-team/openobject-addons/technofluid_multiple_installations

« back to all changes in this revision

Viewing changes to sale_journal/sale_journal_inherit.py

  • Committer: pinky
  • Date: 2006-12-07 13:41:40 UTC
  • Revision ID: pinky-dedd7f8a42bd4557112a0513082691b8590ad6cc
New trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
##############################################################################
 
2
#
 
3
# Copyright (c) 2004 TINY SPRL. (http://tiny.be) All Rights Reserved.
 
4
#                    Fabien Pinckaers <fp@tiny.Be>
 
5
#
 
6
# WARNING: This program as such is intended to be used by professional
 
7
# programmers who take the whole responsability of assessing all potential
 
8
# consequences resulting from its eventual inadequacies and bugs
 
9
# End users who are looking for a ready-to-use solution with commercial
 
10
# garantees and support are strongly adviced to contract a Free Software
 
11
# Service Company
 
12
#
 
13
# This program is Free Software; you can redistribute it and/or
 
14
# modify it under the terms of the GNU General Public License
 
15
# as published by the Free Software Foundation; either version 2
 
16
# of the License, or (at your option) any later version.
 
17
#
 
18
# This program is distributed in the hope that it will be useful,
 
19
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
20
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
21
# GNU General Public License for more details.
 
22
#
 
23
# You should have received a copy of the GNU General Public License
 
24
# along with this program; if not, write to the Free Software
 
25
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
26
#
 
27
##############################################################################
 
28
 
 
29
from osv import osv, fields
 
30
 
 
31
 
 
32
class res_partner(osv.osv):
 
33
        _inherit = 'res.partner'
 
34
        _columns = {
 
35
                'property_invoice_type': fields.property(
 
36
                'sale_journal.invoice.type',
 
37
                type='many2one',
 
38
                relation='sale_journal.invoice.type',
 
39
                string="Invoicing Method",
 
40
                method=True,
 
41
                view_load=True,
 
42
                group_name="Accounting Properties",
 
43
                help="The type of journal used for sales and pickings."),
 
44
        }
 
45
res_partner()
 
46
 
 
47
class picking(osv.osv):
 
48
        _inherit="stock.picking"
 
49
        _columns = {
 
50
                'journal_id': fields.many2one('sale_journal.picking.journal', 'Journal', relate=True),
 
51
                'invoice_type_id': fields.many2one('sale_journal.invoice.type', 'Invoice Type', relate=True, readonly=True)
 
52
        }
 
53
picking()
 
54
 
 
55
class sale(osv.osv):
 
56
        _inherit="sale.order"
 
57
        _columns = {
 
58
                'journal_id': fields.many2one('sale_journal.sale.journal', 'Journal', relate=True),
 
59
                'invoice_type_id': fields.many2one('sale_journal.invoice.type', 'Invoice Type', relate=True)
 
60
        }
 
61
        def action_ship_create(self, cr, uid, ids, *args):
 
62
                result = super(sale, self).action_ship_create(cr, uid, ids, *args)
 
63
                for order in self.browse(cr, uid, ids, context={}):
 
64
                        pids = [ x.id for x in order.picking_ids]
 
65
                        self.pool.get('stock.picking').write(cr, uid, pids, {'invoice_type_id': order.invoice_type_id.id})
 
66
                return result
 
67
 
 
68
        def onchange_partner_id(self, cr, uid, ids, part):
 
69
                result = super(sale, self).onchange_partner_id(cr, uid, ids, part)
 
70
                if part:
 
71
                        itype = self.pool.get('res.partner').browse(cr, uid, part).property_invoice_type
 
72
                        result['value']['invoice_type_id'] = itype and itype[0]
 
73
                return result
 
74
sale()