~openerp-commiter/openobject-addons/extra-6.0

« back to all changes in this revision

Viewing changes to sales_server_action/__terp__.py

  • Committer: mga (Tiny/Axelor)
  • Date: 2008-12-23 04:57:09 UTC
  • mto: This revision was merged to the branch mainline in revision 3385.
  • Revision ID: mga@tinyerp.com-20081223045709-43pjdvqagr5jrjdi
adding new module server action,
add new server action, for the sales order

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{
 
2
        "name" : "Sales Server Action",
 
3
        "version" : "5.0",
 
4
        "author" : "Tiny",
 
5
        "website" : "http://www.openerp.com",
 
6
        "category" : "Vertical Modules/Parametrization",
 
7
        "description": """Server Action for Sales Management
 
8
You will get 2 actions, for the demonstration for the Server Action
 
9
that will helps you to customize the Business process
 
10
* One Invoice / Each Sales Order Line
 
11
* Two Invoice for One Sales Order
 
12
** Invoice for the Stokable products
 
13
** Invoice for the Service product
 
14
""",
 
15
        "depends" : ["sale"],
 
16
        "init_xml" : [ ],
 
17
        "demo_xml" : [ ],
 
18
        "update_xml" : [
 
19
            "sale_server_action_data.xml",
 
20
            "sale_server_action_condition.xml"
 
21
        ],
 
22
        "installable": True
 
23