~vauxoo/addons-vauxoo/7.0-pylint-luist

« back to all changes in this revision

Viewing changes to payment_terms/__openerp__.py

  • Committer: Moises Lopez
  • Date: 2014-10-03 08:22:36 UTC
  • mfrom: (1142.3.1 7.0)
  • Revision ID: moylop260@vauxoo.com-20141003082236-v5l103t231shbfog
[MERGE] Set standard in all __openerp__.py files

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#    along with this program.  If not, see <http://www.gnu.org/licenses/>. #
24
24
############################################################################
25
25
{
26
 
    "name" : "Payments Term",
27
 
    "version" : "0.1",
28
 
    "depends" : ["base","stock","sale",'purchase','account'],
29
 
    "author" : "Vauxoo",
30
 
    "description" : """
 
26
    "name": "Payments Term", 
 
27
    "version": "0.1", 
 
28
    "author": "Vauxoo", 
 
29
    "category": "Generic Modules", 
 
30
    "description": """
31
31
    Add Payments terms by partner, Each payments termn is set in each partner
32
32
    and each partner have a different payment termn by company,
33
33
 
36
36
 
37
37
    The Payment term is in sale, stock,purchase and invoice modules and is send
38
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
 
}
 
39
                    """, 
 
40
    "website": "http://www.vauxoo.com", 
 
41
    "license": "", 
 
42
    "depends": [
 
43
        "base", 
 
44
        "stock", 
 
45
        "sale", 
 
46
        "purchase", 
 
47
        "account"
 
48
    ], 
 
49
    "demo": [], 
 
50
    "data": [
 
51
        "view/account_view.xml", 
 
52
        "view/partner_view.xml", 
 
53
        "view/purchase_view.xml", 
 
54
        "view/sale_view.xml", 
 
55
        "view/stock_view.xml"
 
56
    ], 
 
57
    "test": [], 
 
58
    "js": [], 
 
59
    "css": [], 
 
60
    "qweb": [], 
 
61
    "installable": True, 
 
62
    "auto_install": False, 
 
63
    "active": False
 
64
}
 
 
b'\\ No newline at end of file'