Improved Security
[odoo/odoo.git] / addons / sale_journal / __terp__.py
1 # -*- encoding: utf-8 -*-
2 #
3 # Use the custom module to put your specific code in a separate module.
4 #
5 {
6     "name" : "Managing sales and deliveries by journal",
7     "version" : "1.0",
8     "author" : "Tiny",
9     "category" : "Generic Modules/Sales & Purchases",
10     "website": "http://www.tinyerp.com",
11     "depends" : ["stock","sale"],
12     "demo_xml" : ['sale_journal_demo.xml'],
13     "init_xml" : ['sale_journal_data.xml'],
14     "update_xml" : [
15         "security/ir.model.access.csv",
16         "sale_journal_view.xml",
17         "picking_journal_view.xml",
18         "picking_journal_view_report.xml"
19     ],
20     "description" : """
21     The sale journal modules allows you to categorize your
22     sales and deliveries (packing lists) between different journals.
23     This module is very helpfull for bigger companies that
24     works by departments.
25
26     You can use journal for different purposes, some examples:
27     * isolate sales of different departments
28     * journals for deliveries by truck or by UPS
29
30     Journals have a responsible and evolves between different status:
31     * draft, open, cancel, done.
32
33     Batch operations can be processed on the different journals to
34     confirm all sales at once, to validate or invoice packings, ...
35
36     It also supports batch invoicing methods that can be configured by
37     partners and sales orders, examples:
38     * daily invoicing,
39     * monthly invoicing, ...
40
41     Some statistics by journals are provided.
42     """,
43     "active": False,
44     "installable": True
45 }
46 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
47