[IMP] improves the reporting view Expenses Analysis (add some measures to the table...
[odoo/odoo.git] / addons / sale_journal / sale_journal.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 from openerp.osv import fields, osv
23
24 class sale_journal_invoice_type(osv.osv):
25     _name = 'sale_journal.invoice.type'
26     _description = 'Invoice Types'
27     _columns = {
28         'name': fields.char('Invoice Type', size=64, required=True),
29         'active': fields.boolean('Active', help="If the active field is set to False, it will allow you to hide the invoice type without removing it."),
30         'note': fields.text('Note'),
31         'invoicing_method': fields.selection([('simple', 'Non grouped'), ('grouped', 'Grouped')], 'Invoicing method', required=True),
32     }
33     _defaults = {
34         'active': True,
35         'invoicing_method': 'simple'
36     }
37
38 #==============================================
39 # sale journal inherit
40 #==============================================
41
42 class res_partner(osv.osv):
43     _inherit = 'res.partner'
44     _columns = {
45         'property_invoice_type': fields.property(
46             type = 'many2one',
47             relation = 'sale_journal.invoice.type',
48             string = "Invoicing Type",
49             group_name = "Accounting Properties",
50             help = "This invoicing type will be used, by default, to invoice the current partner."),
51     }
52
53     def _commercial_fields(self, cr, uid, context=None):
54         return super(res_partner, self)._commercial_fields(cr, uid, context=context) + ['property_invoice_type']
55
56
57 class picking(osv.osv):
58     _inherit = "stock.picking"
59     _columns = {
60         'invoice_type_id': fields.many2one('sale_journal.invoice.type', 'Invoice Type', readonly=True)
61     }
62
63 class stock_picking_in(osv.osv):
64     _inherit = "stock.picking.in"
65     _columns = {
66         'invoice_type_id': fields.many2one('sale_journal.invoice.type', 'Invoice Type', readonly=True)
67     }
68
69 class stock_picking_out(osv.osv):
70     _inherit = "stock.picking.out"
71     _columns = {
72         'invoice_type_id': fields.many2one('sale_journal.invoice.type', 'Invoice Type', readonly=True)
73     }
74
75
76 class sale(osv.osv):
77     _inherit = "sale.order"
78     _columns = {
79         'invoice_type_id': fields.many2one('sale_journal.invoice.type', 'Invoice Type', help="Generate invoice based on the selected option.")
80     }
81
82     def _prepare_order_picking(self, cr, uid, order, context=None):
83         result = super(sale,self)._prepare_order_picking(cr, uid, order, context=context)
84         result.update(invoice_type_id=order.invoice_type_id and order.invoice_type_id.id or False)
85         return result
86
87     def onchange_partner_id(self, cr, uid, ids, part, context=None):
88         result = super(sale, self).onchange_partner_id(cr, uid, ids, part, context=context)
89         if part:
90             itype = self.pool.get('res.partner').browse(cr, uid, part, context=context).property_invoice_type
91             if itype:
92                 result['value']['invoice_type_id'] = itype.id
93         return result
94
95
96 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: