~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to payment_terms/model/partner.py

  • Committer: Openerp User
  • Author(s): Vauxoo
  • Date: 2012-07-26 20:13:13 UTC
  • Revision ID: openerp@ingelub-erp-20120726201313-cgffyvd3zmqhn2w4

[FIX] bug a la hora de confirmar una orden de venta cuando el producto es de tipo servicio 
tomaba dicho porducto como si este fuera almacenable y tuviera stock cosa que no es asi 

Show diffs side-by-side

added added

removed removed

Lines of Context:
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 operator import itemgetter
23
 
import time
24
 
 
25
 
from openerp.osv import fields, osv
26
 
 
27
 
 
28
 
class res_partner(osv.Model):
29
 
 
30
 
    _inherit = 'res.partner'
31
 
 
32
 
    _columns = {
33
 
        'property_payment_term_p_suppliers': fields.property(
34
 
            'payment.terms.partner',
35
 
             type='many2one',
36
 
             relation='payment.terms.partner',
37
 
             string ='Payment Term Supplier',
38
 
            view_load=True,
39
 
             help="This payment term will be used instead of the default one "
40
 
                  "for purchase orders and supplier invoices"),
41
 
        'property_payment_term_p_customer': fields.property(
42
 
            'payment.terms.partner',
43
 
             type='many2one',
44
 
             relation='payment.terms.partner',
45
 
            view_load=True,
46
 
             string ='Payment Term Customer',
47
 
             help="This payment term will be used instead of the default one "
48
 
                  "for sale orders and customer invoices"),
49
 
    }
50