~vauxoo/addons-vauxoo/7.0-average_stock_valuation_journal_items-dev-yani

« back to all changes in this revision

Viewing changes to stock_shipping_packaging/__openerp__.py

  • Committer: Yanina Aular
  • Date: 2014-04-25 23:42:42 UTC
  • mfrom: (0.1.1005 trunk)
  • Revision ID: yanina.aular@vauxoo.com-20140425234242-k4jkk1gd5t34r4c0

[MERGE] from addons-vauxoo-7.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
# -*- encoding: utf-8 -*-
 
3
###############################################################################
 
4
#    Module Writen to OpenERP, Open Source Management Solution
 
5
#    Copyright (C) OpenERP Venezuela (<http://openerp.com.ve>).
 
6
#    All Rights Reserved
 
7
############# Credits #########################################################
 
8
#    Coded by: Yanina Aular <yanina.aular@vauxoo.com
 
9
#    Planified by: Humberto Arocha <hbto@vauxoo.com>
 
10
#    Audited by: Humberto Arocha <hbto@vauxoo.com>
 
11
###############################################################################
 
12
#    This program is free software: you can redistribute it and/or modify
 
13
#    it under the terms of the GNU Affero General Public License as published
 
14
#    by the Free Software Foundation, either version 3 of the License, or
 
15
#    (at your option) any later version.
 
16
#
 
17
#    This program is distributed in the hope that it will be useful,
 
18
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
19
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
20
#    GNU Affero General Public License for more details.
 
21
#
 
22
#    You should have received a copy of the GNU Affero General Public License
 
23
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
24
###############################################################################
 
25
 
 
26
{
 
27
    'name': 'Stock Shipping Packaging',
 
28
    'version': '1.0',
 
29
    'author': 'Vauxoo C.A.',
 
30
    'website': 'http://vauxoo.com',
 
31
    'category': 'Warehouse',
 
32
    'summary': 'Packaging stock moves for a delivery order',
 
33
    'description': """
 
34
========================
 
35
Stock Shipping Packaging
 
36
========================
 
37
 
 
38
This module allows to have best control on packaging of stock moves that belong to 
 
39
a delivery order.
 
40
 
 
41
=============
 
42
Configuration
 
43
=============
 
44
 
 
45
Activate permissions:
 
46
 
 
47
Settings > Configuration > Warehouse > Manage multiple locations and warehouses.
 
48
 
 
49
Settings > Configuration > Warehouse > Allow to define several packaging methods on products.
 
50
 
 
51
==========
 
52
How to use
 
53
==========
 
54
 
 
55
In an Order Delivery can add línes of stock.moves, to each stock.move you can add a Packs
 
56
(stock.tracking) filtered by the partner of the delivery order.
 
57
 
 
58
 
 
59
""",
 
60
    'depends': ['base', 'mail', 'stock'],
 
61
    'data': [
 
62
        'view/stock_shipping_packaging_view.xml',
 
63
        ],
 
64
    'demo': [],
 
65
    'test': [],
 
66
    'active': False,
 
67
    'installable': True,
 
68
    'js': [],                                                                                       
 
69
    'qweb': [],                                                                                     
 
70
    'css': [],                                                                                      
 
71
    'images': [],
 
72
}