~camptocamp/stock-logistic-flows/7.0-stock-obsolete-mdh

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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# -*- coding: utf-8 -*-
##############################################################################
#
#    Copyright (C) 2013 Agile Business Group sagl (<http://www.agilebg.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 openerp.osv import fields, orm


class stock_move(orm.Model):
    _inherit = "stock.move"

    _columns = {
        'invoice_line_id': fields.many2one(
            'account.invoice.line', 'Invoice line', readonly=True),
    }


class stock_picking(orm.Model):
    _inherit = "stock.picking"

    def _get_invoice_view_xmlid(self, cr, uid, ids, name, arg, context=None):
        res = {}
        for pick in self.browse(cr, uid, ids, context=context):
            if pick.invoice_id:
                if pick.invoice_id.type in ('in_invoice', 'in_refund'):
                    res[pick.id] = 'account.invoice_supplier_form'
                else:
                    res[pick.id] = 'account.invoice_form'
            else:
                res[pick.id] = False
        return res

    _columns = {
        'invoice_id': fields.many2one(
            'account.invoice', 'Invoice', readonly=True),
        'invoice_view_xmlid': fields.function(
            _get_invoice_view_xmlid, type='char', string="Invoice View XMLID",
            readonly=True),
    }

    def _invoice_hook(self, cr, uid, picking, invoice_id):
        res = super(stock_picking, self)._invoice_hook(
            cr, uid, picking, invoice_id)
        picking.write({'invoice_id': invoice_id})
        return res

    def _invoice_line_hook(self, cr, uid, move_line, invoice_line_id):
        res = super(stock_picking, self)._invoice_line_hook(
            cr, uid, move_line, invoice_line_id)
        move_line.write({'invoice_line_id': invoice_line_id})
        return res


class stock_picking_out(orm.Model):
    _inherit = "stock.picking.out"

    def _out_get_invoice_view_xmlid(
            self, cr, uid, ids, name, arg, context=None):
        return self.pool['stock.picking']._get_invoice_view_xmlid(
            cr, uid, ids, name, arg, context=context)

    _columns = {
        'invoice_id': fields.many2one(
            'account.invoice', 'Invoice', readonly=True),
        'invoice_view_xmlid': fields.function(
            _out_get_invoice_view_xmlid, type='char',
            string="Invoice View XMLID", readonly=True),
    }


class stock_picking_in(orm.Model):
    _inherit = "stock.picking.in"

    def _in_get_invoice_view_xmlid(
            self, cr, uid, ids, name, arg, context=None):
        return self.pool['stock.picking']._get_invoice_view_xmlid(
            cr, uid, ids, name, arg, context=context)

    _columns = {
        'invoice_id': fields.many2one(
            'account.invoice', 'Invoice', readonly=True),
        'invoice_view_xmlid': fields.function(
            _in_get_invoice_view_xmlid, type='char',
            string="Invoice View XMLID", readonly=True),
    }


class account_invoice(orm.Model):
    _inherit = "account.invoice"

    _columns = {
        'picking_ids': fields.one2many(
            'stock.picking', 'invoice_id', 'Related Pickings', readonly=True,
            help="Related pickings (only when the invoice has been generated from the picking)."),
    }


class account_invoice_line(orm.Model):
    _inherit = "account.invoice.line"

    _columns = {
        'move_line_ids': fields.one2many(
            'stock.move', 'invoice_line_id', 'Related Stock Moves',
            readonly=True,
            help="Related stock moves (only when the invoice has been generated from the picking)."),
        }