1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2011 Tiny SPRL (<http://tiny.be>).
# Copyright (C) 2011 Camptocamp Austria (<http://www.camptocamp.com>).
#
# 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/>.
#
##############################################################################
from osv import fields, osv
import netsvc
class purchase_order(osv.osv):
_inherit = "purchase.order"
def action_invoice_create(self, cr, uid, ids, context=None):
res = super(purchase_order, self).action_invoice_create(cr, uid, ids, context)
logger = netsvc.Logger()
logger.notifyChannel('addons.'+self._name, netsvc.LOG_INFO,'PO inv create ids,res:%s %s'%(ids,res))
invoice_ids = res
if not isinstance(invoice_ids,list):
invoice_ids = [invoice_ids]
picking_obj = self.pool.get('stock.picking')
picking_ids = picking_obj.search(cr, uid, [('purchase_id','in',ids)])
logger.notifyChannel('addons.'+self._name, netsvc.LOG_INFO,'PO inv create picking_ids:%s'%(picking_ids))
for picking_id in picking_ids:
picking_obj.write(cr, uid, picking_id, {'invoice_ids' : [(6,0, invoice_ids )]}, context=context)
return res
purchase_order()
|