[FIX] delivery: allow to add delivery method in quotation if quotation in quotation...
[odoo/odoo.git] / addons / delivery / sale.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 import time
23 from openerp.osv import fields,osv
24 from openerp.tools.translate import _
25
26 # Overloaded sale_order to manage carriers :
27 class sale_order(osv.osv):
28     _inherit = 'sale.order'
29     _columns = {
30         'carrier_id':fields.many2one("delivery.carrier", "Delivery Method", help="Complete this field if you plan to invoice the shipping based on picking."),
31     }
32
33     def onchange_partner_id(self, cr, uid, ids, part, context=None):
34         result = super(sale_order, self).onchange_partner_id(cr, uid, ids, part, context=context)
35         if part:
36             dtype = self.pool.get('res.partner').browse(cr, uid, part, context=context).property_delivery_carrier.id
37             result['value']['carrier_id'] = dtype
38         return result
39
40     def _prepare_order_picking(self, cr, uid, order, context=None):
41         result = super(sale_order, self)._prepare_order_picking(cr, uid, order, context=context)
42         result.update(carrier_id=order.carrier_id.id)
43         return result
44
45     def delivery_set(self, cr, uid, ids, context=None):
46         order_obj = self.pool.get('sale.order')
47         line_obj = self.pool.get('sale.order.line')
48         grid_obj = self.pool.get('delivery.grid')
49         carrier_obj = self.pool.get('delivery.carrier')
50         acc_fp_obj = self.pool.get('account.fiscal.position')
51         for order in self.browse(cr, uid, ids, context=context):
52             grid_id = carrier_obj.grid_get(cr, uid, [order.carrier_id.id], order.partner_shipping_id.id)
53             if not grid_id:
54                 raise osv.except_osv(_('No Grid Available!'), _('No grid matching for this carrier!'))
55
56             if not order.state in ('draft', 'sent'):
57                 raise osv.except_osv(_('Order not in Draft State!'), _('The order state have to be draft to add delivery lines.'))
58
59             grid = grid_obj.browse(cr, uid, grid_id, context=context)
60
61             taxes = grid.carrier_id.product_id.taxes_id
62             fpos = order.fiscal_position or False
63             taxes_ids = acc_fp_obj.map_tax(cr, uid, fpos, taxes)
64             #create the sale order line
65             line_obj.create(cr, uid, {
66                 'order_id': order.id,
67                 'name': grid.carrier_id.name,
68                 'product_uom_qty': 1,
69                 'product_uom': grid.carrier_id.product_id.uom_id.id,
70                 'product_id': grid.carrier_id.product_id.id,
71                 'price_unit': grid_obj.get_price(cr, uid, grid.id, order, time.strftime('%Y-%m-%d'), context),
72                 'tax_id': [(6,0,taxes_ids)],
73                 'type': 'make_to_stock'
74             })
75         #remove the value of the carrier_id field on the sale order
76         return self.write(cr, uid, ids, {'carrier_id': False}, context=context)
77         #return {'type': 'ir.actions.act_window_close'} action reload?
78
79 sale_order()
80
81 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
82