~oscarolar/addons-vauxoo/addons-vauxoo

« back to all changes in this revision

Viewing changes to payment_terms/__openerp__.py

  • Committer: Jose Morales
  • Date: 2013-05-22 05:53:36 UTC
  • mfrom: (553.1.1 addons-vauxoo)
  • Revision ID: jose@vauxoo.com-20130522055336-62012wrb5e7ttabm
 
[MERGE]  Add Payments terms by partner, Each payments termn is set in each partner   
    and each partner have a different payment termn by company,                    
                                                                                   
    These fields are located in the Accounting tab, above Others terms added by 
    accounting module.                                                             
                                                                                                                                                                                                     
    The Payment term is in sale, stock,purchase and invoice modules and is send 
    through are models                                                       

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
############################################################################
 
3
#    Module Writen to OpenERP, Open Source Management Solution             #
 
4
#    Copyright (C) OpenERP Venezuela (<http://openerp.com.ve>).            #
 
5
#    All Rights Reserved                                                   #
 
6
###############Credits######################################################
 
7
#    Coded by: author NAME LASTNAME <email@openerp.com.ve>                 #
 
8
#    Planified by: Nhomar Hernandez                                        #
 
9
#    Finance by: COMPANY NAME <EMAIL-COMPANY>                              #
 
10
#    Audited by: Humberto Arocha humberto@openerp.com.ve                   #
 
11
############################################################################
 
12
#    This program is free software: you can redistribute it and/or modify  #
 
13
#    it under the terms of the GNU General Public License as published by  #
 
14
#    the Free Software Foundation, either version 3 of the License, or     #
 
15
#    (at your option) any later version.                                   #
 
16
#                                                                          #
 
17
#    This program is distributed in the hope that it will be useful,       #
 
18
#    but WITHOUT ANY WARRANTY; without even the implied warranty of        #
 
19
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         #
 
20
#    GNU General Public License for more details.                          #
 
21
#                                                                          #
 
22
#    You should have received a copy of the GNU General Public License     #
 
23
#    along with this program.  If not, see <http://www.gnu.org/licenses/>. #
 
24
############################################################################
 
25
{
 
26
    "name" : "Payments Term",
 
27
    "version" : "0.1",
 
28
    "depends" : ["base","stock","sale",'purchase','account'],
 
29
    "author" : "Vauxoo",
 
30
    "description" : """
 
31
    Add Payments terms by partner, Each payments termn is set in each partner
 
32
    and each partner have a different payment termn by company,
 
33
 
 
34
    These fields are located in the Accounting tab, above Others terms added by
 
35
    accounting module.
 
36
 
 
37
    The Payment term is in sale, stock,purchase and invoice modules and is send 
 
38
    through are models
 
39
                    """,
 
40
    "website" : "http://www.vauxoo.com",
 
41
    "category" : "Generic Modules",
 
42
    "init_xml" : [    ],
 
43
    "demo_xml" : [    ],
 
44
    "update_xml" : [
 
45
        
 
46
        'view/account_view.xml',
 
47
        'view/partner_view.xml',
 
48
        'view/purchase_view.xml',
 
49
        'view/sale_view.xml',
 
50
        'view/stock_view.xml',
 
51
        
 
52
    
 
53
    ],
 
54
    "active": False,
 
55
    "installable": True,
 
56
}