~openerp-dev/openobject-addons/6.0-opw-5629-jvo

« back to all changes in this revision

Viewing changes to stock_back_order/__terp__.py

  • Committer: Fabien Pinckaers
  • Date: 2008-08-24 14:45:43 UTC
  • Revision ID: fp@tinyerp.com-20080824144543-33o2j8ddmvaxx4ce
added from extra-addons

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
{
 
3
    "name" : "Stock Back Order",
 
4
    "version" : "1.0",
 
5
    "author" : "Tiny",
 
6
    "depends" : ["base", "stock",],
 
7
    "category" : "Generic Modules/Inventory Control",
 
8
    "description":"""
 
9
    To manage all back-orders (means partial pickings):
 
10
    When products coming from suppliers arrive but some are missing, we have to make a partial picking.
 
11
    The remaining products are called "back-orders" and have to be separated from normal waiting picking (in a predefined list called "Back-Orders").
 
12
    The same process has to be done for sending goods.
 
13
 
 
14
    """,
 
15
    "init_xml" : [],
 
16
    "demo_xml" : [],
 
17
    "update_xml" : ["stock_view.xml","stock_wizard.xml"],
 
18
    "active": False,
 
19
    "installable": True
 
20
}
 
21
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
22