~acsone-openerp/stock-logistic-warehouse/7.0-inventory-hierarchical-fill2-lga

« back to all changes in this revision

Viewing changes to stock_available_immediately/__openerp__.py

  • Committer: Guewen Baconnier @ Camptocamp
  • Date: 2012-03-14 15:36:38 UTC
  • Revision ID: guewen.baconnier@camptocamp.com-20120314153638-uiy4ni61vzmg9p2z
[IMP] stock_available_immediately: licensed under AGPL-3 instead of GPL-3 with author agreement, improved help messages and pep8
(lp:c2c-addons/6.1  rev 45.1.8)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- encoding: utf-8 -*-
 
1
# -*- coding: utf-8 -*-
2
2
##############################################################################
3
3
#
4
 
#    Author Guewen Baconnier. Copyright Camptocamp SA
 
4
#    Author: Guewen Baconnier
 
5
#    Copyright 2010-2012 Camptocamp SA
 
6
#    Copyright (C) 2011 Akretion Sébastien BEAU <sebastien.beau@akretion.com>
5
7
#
6
8
#    This program is free software: you can redistribute it and/or modify
7
 
#    it under the terms of the GNU General Public License as published by
8
 
#    the Free Software Foundation, either version 3 of the License, or
9
 
#    (at your option) any later version.
 
9
#    it under the terms of the GNU Affero General Public License as
 
10
#    published by the Free Software Foundation, either version 3 of the
 
11
#    License, or (at your option) any later version.
10
12
#
11
13
#    This program is distributed in the hope that it will be useful,
12
14
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
13
15
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
#    GNU General Public License for more details.
 
16
#    GNU Affero General Public License for more details.
15
17
#
16
 
#    You should have received a copy of the GNU General Public License
 
18
#    You should have received a copy of the GNU Affero General Public License
17
19
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
20
#
19
21
##############################################################################
22
24
{
23
25
        "name" : "Immediately Usable Stock Quantity",
24
26
        "version" : "1.0",
25
 
        "depends" : [
26
 
                     "base",
27
 
                     "product",
28
 
                                 "stock",
29
 
                                ],
 
27
        "depends" : ["product", "stock", ],
30
28
        "author" : "Camptocamp",
31
 
        "description": """Compute the immediately usable stock. Immediately usable is computed : Real Stock - Outgoing Stock. """,
 
29
    "license": "AGPL-3",
 
30
        "description": """
 
31
Compute the immediately usable stock.
 
32
Immediately usable is computed : Quantity on Hand - Outgoing Stock.
 
33
""",
32
34
        "website" : "http://tinyerp.com/module_account.html",
33
35
        "category" : "Generic Modules/Stock",
34
36
        "init_xml" : [],
35
37
        "demo_xml" : [],
36
 
        "update_xml" : [
37
 
                        "product_view.xml",
38
 
                       ],
 
38
        "update_xml" : ["product_view.xml", ],
39
39
        "active": False,
40
40
        "installable": True
41
41
}