~stock-logistic-core-editors/stock-logistic-warehouse/7.0

« back to all changes in this revision

Viewing changes to stock_available_immediately/__openerp__.py

  • Committer: alexandre.fayolle at camptocamp
  • Author(s): laurent.mignon at acsone
  • Date: 2014-02-19 11:56:06 UTC
  • mfrom: (32.2.5 addons-stock-logistic-warehouse)
  • Revision ID: alexandre.fayolle@camptocamp.com-20140219115606-dxz6hsg0vbvmv1e8
[MRG] port stock_available_immediately to 7.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# -*- coding: utf-8 -*-
2
 
##############################################################################
 
2
#
3
3
#
4
4
#    Author: Guewen Baconnier
5
5
#    Copyright 2010-2012 Camptocamp SA
18
18
#    You should have received a copy of the GNU Affero General Public License
19
19
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
20
#
21
 
##############################################################################
 
21
#
22
22
 
23
23
 
24
24
{
25
 
        "name" : "Immediately Usable Stock Quantity",
26
 
        "version" : "1.0",
27
 
        "depends" : ["product", "stock", ],
28
 
        "author" : "Camptocamp",
 
25
    "name": "Immediately Usable Stock Quantity",
 
26
    "version": "1.0",
 
27
    "depends": ["product", "stock", ],
 
28
    "author": "Camptocamp",
29
29
    "license": "AGPL-3",
30
 
        "description": """
 
30
    "description": """
31
31
Compute the immediately usable stock.
32
32
Immediately usable is computed : Quantity on Hand - Outgoing Stock.
33
33
""",
34
 
        "website" : "http://tinyerp.com/module_account.html",
35
 
        "category" : "Generic Modules/Stock",
36
 
        "init_xml" : [],
37
 
        "demo_xml" : [],
38
 
        "update_xml" : ["product_view.xml", ],
39
 
        "active": False,
40
 
        "installable": False
 
34
    "website": "http://tinyerp.com/module_account.html",
 
35
    "category": "Generic Modules/Stock",
 
36
    "data": ["product_view.xml", 
 
37
             ],
 
38
    "active": False,
 
39
    "installable": True
41
40
}