forked from OCA/stock-logistics-workflow
-
Notifications
You must be signed in to change notification settings - Fork 1
/
__openerp__.py
64 lines (58 loc) · 2.65 KB
/
__openerp__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# -*- encoding: utf-8 -*-
##############################################################################
#
# Copyright (C) 2008 Raphaël Valyi
# Copyright (C) 2013 Akretion (http://www.akretion.com/)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
{
"name": "Product Serial",
"summary": "Enhance Serial Number management",
"version": "1.0",
"author": "Akretion, NaN·tic,Odoo Community Association (OCA)",
"website": "http://www.akretion.com",
"depends": ["stock"],
"category": "Generic Modules/Inventory Control",
"license": "AGPL-3",
"description": """Enhance the management of Production Lots (Serial Numbers) in OpenERP.
Here are the additional features proposed by this module:
1. Add a new selection field 'Lot split type' on the product form
under the 'Inventory' tab to specify how the Production Lots should be
split on the Pickings (you should also enable 'Track Incoming/Outgoing
Lots', and the new 'Track internal lots' field).
2. If the option 'Active auto split' is active for the Company,
OpenERP will automagically split up picking list movements into one
movement per product instance or logistical unit packing quantity (in
that case, only the first logistical unit is taken into account at the
present time. Improvement to take them all to be done!).
3. Turn Incoming Pickings into an editable grid where you can
directly type the codes of a new production lot and/or tracking number
to create and associate to the move (it also checks it doesn't exist
yet).
4. If the option 'Group invoice lines' is active for the Company,
OpenERP will group the invoice lines to make it look like the
Sale/Purchase Order when generating an Invoice from a Picking.
""",
"demo": ["product_demo.xml"],
"data": [
"product_view.xml",
"company_view.xml",
"stock_view.xml",
"wizard/prodlot_wizard_view.xml",
],
"active": False,
'installable': False
}