~unifield-team/unifield-wm/us-826

« back to all changes in this revision

Viewing changes to delivery_mechanism/__openerp__.py

  • Committer: Quentin THEURET
  • Date: 2011-11-30 13:31:37 UTC
  • mto: This revision was merged to the branch mainline in revision 515.
  • Revision ID: qt@tempo-consulting.fr-20111130133137-mdf2fp6hkqmwbppn
UF-647 [ADD] Added a line in Purchase Order to have information about international transport costs

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- coding: utf-8 -*- 
2
 
##############################################################################
3
 
#
4
 
#    OpenERP, Open Source Management Solution
5
 
#    Copyright (C) 2011 TeMPO Consulting, MSF 
6
 
#
7
 
#    This program is free software: you can redistribute it and/or modify
8
 
#    it under the terms of the GNU Affero General Public License as
9
 
#    published by the Free Software Foundation, either version 3 of the
10
 
#    License, or (at your option) any later version.
11
 
#
12
 
#    This program is distributed in the hope that it will be useful,
13
 
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 
#    GNU Affero General Public License for more details.
16
 
#
17
 
#    You should have received a copy of the GNU Affero General Public License
18
 
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
 
#
20
 
##############################################################################
21
 
 
22
 
{
23
 
    "name": "MSF Delivery Mechanism",
24
 
    "version": "1.0",
25
 
    "depends": ["base",
26
 
                "sale",
27
 
                "purchase",
28
 
                "account",
29
 
                "stock_override",
30
 
                "purchase_override",
31
 
                "sale_override",
32
 
                "product_asset", # because of asset_id
33
 
                "msf_outgoing",
34
 
                ],
35
 
    "author": "MSF, TeMPO Consulting",
36
 
    "website": "",
37
 
    "category": "Specific Modules",
38
 
    "description": """
39
 
        Specify business for Incoming shipment.
40
 
    """,
41
 
    "init_xml": [
42
 
    ],
43
 
    'update_xml': ['security/ir.model.access.csv',
44
 
                   'delivery_mechanism_view.xml',
45
 
                   'wizard/stock_partial_move_view.xml',
46
 
                   'wizard/change_product_memory_move_view.xml',
47
 
                   'wizard/enter_reason_view.xml',
48
 
                   ],
49
 
    'demo_xml': [
50
 
    ],
51
 
    'test': ['test/data.yml',
52
 
             'test/product_cost_valuation.yml',
53
 
             'test/delivery_mechanism-process-same-qty.yml', #A
54
 
             'test/delivery_mechanism-process-less.yml', #B
55
 
             'test/delivery_mechanism-process-split-same-qty.yml', #C
56
 
             'test/delivery_mechanism-process-split-less.yml', #D
57
 
             'test/delivery_mechanism-process-split-less-split-more-on-backorder.yml', #E
58
 
             'test/delivery_mechanism-process-change-product-same-qty.yml', #F
59
 
             'test/delivery_mechanism-process-change-product-less-qty.yml', #K
60
 
             'test/delivery_mechanism-process-split-less-split-more-on-backorder-NO-OUT.yml', # in A
61
 
             'test/delivery_mechanism-process-split-less-cancel-backorder-update-out.yml', #G
62
 
             'test/delivery_mechanism-process-split-less-cancel-backorder.yml', #H
63
 
             'test/delivery_mechanism-process-split-less-cancel-backorder-update-out-NO-OUT.yml', # in B
64
 
             'test/delivery_mechanism-process-change-product-same-qty-delete-one-line.yml', #I
65
 
             'test/delivery_mechanism-cancel-update-out.yml', #J
66
 
             'test/internal_request.yml',
67
 
             'test/duplicate-out.yml',
68
 
             ],
69
 
    'installable': True,
70
 
    'active': False,
71
 
}
72