~acsone-openerp/stock-logistic-warehouse/7.0-inventory-hierarchical-location-fix-subinventory-locations

« back to all changes in this revision

Viewing changes to stock_inventory_location/__openerp__.py

  • Committer: Lionel Sausin
  • Date: 2014-06-11 15:22:49 UTC
  • mfrom: (36.1.29 7.0)
  • Revision ID: ls@numerigraphe.com-20140611152249-sx2a4c2kcpw5y93r
[MERGE] code & views cleanup and fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#
19
19
##############################################################################
20
20
 
21
 
 
22
21
{
23
22
    "name": "Exhaustive Stock Inventories",
24
 
    "version": "1.0",
 
23
    "version": "1.1",
25
24
    "depends": ["stock"],
26
25
    "author": u"Numérigraphe",
27
 
    "category": "Inventory",
 
26
    "category": "Warehouse Management",
28
27
    "description": """
29
 
Let users choose between standard and exhaustive Inventories
30
 
============================================================
 
28
Let users make exhaustive Inventories
 
29
=====================================
31
30
 
32
 
Standard Physical Inventories in OpenERP only contain a generic list of products by locations,
33
 
which is well suited to partial Inventories and simple warehouses.
34
 
When the a standard Inventory is confirmed, only the products in the inventory are checked.
35
 
If a Product is present in the computed stock and not in the recorded Inventory, OpenERP will
36
 
consider that it remains unchanged.
 
31
Standard Physical Inventories in OpenERP only contain a generic list of
 
32
products by locations, which is well suited to partial Inventories and simple
 
33
warehouses. When the a standard Inventory is confirmed, only the products in
 
34
the inventory are checked. If a Product is present in the computed stock and
 
35
not in the recorded Inventory, OpenERP will consider that it remains unchanged.
37
36
 
38
37
But for exhaustive inventories in complex warehouses, it is not practical:
39
 
 - you want to avoid Stock Moves in/out of these Locations while you count the goods
 
38
 - you want to avoid Stock Moves to/from these Locations while counting goods
40
39
 - you must make sure all the locations you want have been counted
41
40
 - you must make sure no other location has been counted by mistake
42
 
 - you want the computed stock to perfectly match the inventory when you confirm it.
 
41
 - you want the computed stock to perfectly match the inventory when you
 
42
   confirm it.
43
43
 
44
 
This module lets choose whether an Physical Inventory is exhaustive or standard.
45
 
For an exhaustive Inventory, in the state "Draft" you define the list of Locations where goods must be counted.
46
 
 - a new Inventory status ("Open") lets you indicate that the list of Locations is definitive and you are now counting the goods.
47
 
    In that status, no Stock Moves can be recorded in/out of the Inventory's Locations.
48
 
 - if some of the Inventory's Locations have not been entered in the Inventory Lines, OpenERP warns you when you confirm the Inventory.
49
 
 - only the Inventory's Locations can be entered in the Inventory Lines.
50
 
 - every good that is not in the Inventory Lines is considered lost, and gets moved out of the stock when you confirm the Inventory.avec openerp
 
44
This module lets choose whether an Physical Inventory is exhaustive or
 
45
standard.
 
46
For an exhaustive Inventory:
 
47
 - in the state "Draft" you define the Location where goods must be counted.
 
48
 - the new Inventory status "Open" lets you indicate that the list of Locations
 
49
   is final and you are now counting the goods.
 
50
   In that status, no Stock Moves can be recorded in/out of the Inventory's
 
51
   Locations.
 
52
 - if the Location or some of it's children have not been entered in the
 
53
   Inventory Lines, OpenERP warns you when you confirm the Inventory.
 
54
 - only the Inventory's Location or its children can be entered in the
 
55
   Inventory Lines.
 
56
 - every good that is not in the Inventory Lines is considered lost, and gets
 
57
   moved out of the stock when you confirm the Inventory.
51
58
""",
52
 
    "update_xml": [
53
 
                   "wizard/stock_confirm_uninventoried_location.xml",
54
 
                   "stock_inventory_location_view.xml",
55
 
                   "wizard/stock_fill_location_inventory_view.xml",
56
 
                   ],
57
 
     "test": ["test/location_inventory_test.yml",
58
 
              "test/location_exhaustive_inventory_test.yml",
59
 
              ],
60
 
     "demo": ["stock_inventory_location_demo.xml"]
61
 
 
 
59
    "data": [
 
60
        "wizard/stock_confirm_uninventoried_location.xml",
 
61
        "stock_inventory_location_view.xml",
 
62
        "wizard/stock_fill_location_inventory_view.xml",
 
63
    ],
 
64
    "test": [
 
65
        "test/inventory_standard_test.yml",
 
66
        "test/inventory_exhaustive_test.yml",
 
67
        "test/inventory_future_test.yml",
 
68
    ],
 
69
    "images": [
 
70
        "images/inventory_form.png",
 
71
        "inventory_empty_locations.png",
 
72
        "images/move_error.png",
 
73
        "images/location_locked.png",
 
74
        "images/future_inventory.png",
 
75
    ],
 
76
    "demo": ["stock_inventory_location_demo.xml"]
62
77
}