~camptocamp/stock-logistic-warehouse/add-stock_ownership_nbi

« back to all changes in this revision

Viewing changes to stock_location_ownership/__openerp__.py

  • Committer: Guewen Baconnier
  • Date: 2013-08-06 15:07:18 UTC
  • Revision ID: guewen.baconnier@camptocamp.com-20130806150718-cc2weyzk844wi23v
[CHG] extract the sourcing part from stock_location_ownership in a module sale_sourced_by_line
  (/tmp/trunk-generic/ rev 27)
(/tmp/7.0-add-sale_sourced_and_stock_ownership rev 25)

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 'images': [],
29
29
 'website': "http://www.camptocamp.com",
30
30
 'description': """
31
 
 Stock Location Ownership
32
 
=========================
33
 
 
34
 
* Adds an ownership on a location
35
 
 
36
 
* (To move/create in module: sale_sourced_by_line) Adds the possibility to source a line of sale order from a specific location instead of 
37
 
using the location of the warehouse of the selected shop
38
 
 
39
 
 * Further on (to move/create in module: sale_ownership) will trigger under certain circonstances the creation of a PO:
40
 
a) if customer != stock.location owner (Dispatch VCI, Dispatch PNS)
41
 
then generate also PO and link it with picking (delivery order)
42
 
b) if customer == stock.location owner (Dispatch PNS to NS)
43
 
then SO should be with prices at 0 + add manually line for handling fee"
44
 
 
 
31
Stock Location Ownership
 
32
========================
 
33
 
 
34
Adds an ownership on the stock locations
45
35
""",
46
 
 'depends': ['sale_dropshipping',
47
 
             'sale_stock',
 
36
 'depends': ['stock',
48
37
             ],
49
38
 'demo': [],
50
39
 'data': ['view/stock_view.xml',
51
 
          'view/sale_view.xml',
52
40
          ],
 
41
 'test': [],
53
42
 'auto_install': False,
54
 
 'test': ['test/sale_order_source.yml',
55
 
          'test/sale_order_not_sourced.yml',
56
 
          ],
57
43
 'installable': True,
58
44
 }