0.3.5
by Quentin THEURET
UF-113: [IMP] Added test matching with Work Mandate |
1 |
# -*- coding: utf-8 -*-
|
2 |
##############################################################################
|
|
3 |
#
|
|
4 |
# OpenERP, Open Source Management Solution
|
|
2.5.4
by jf
UF-113: [FIX] Copyright |
5 |
# Copyright (C) 2011 TeMPO Consulting, MSF.
|
0.3.5
by Quentin THEURET
UF-113: [IMP] Added test matching with Work Mandate |
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': 'Compare Purchase RfQ', |
|
24 |
'version': '1.0', |
|
25 |
'category': 'Generic Modules/Sales & Purchases', |
|
26 |
'description': """ |
|
27 |
This module allow you to compare Requests for Quotation
|
|
28 |
for many suppliers and choose the best.
|
|
29 |
Creates automatically Purchase Orders after choosing.
|
|
30 |
""", |
|
31 |
'author': 'TeMPO Consulting, MSF', |
|
32 |
'website': 'http://unifield.msf.org', |
|
1287.14.7
by chloups208
utp-171 when we convert the prices for on change in Po line and for so back update from on order po, we do not round the value, otherwise we loose the computation decimal precision + dependencies correction so the Decimal Precision data is loaded before use within fields objects + cost in in process wizard is moved to wm module so Decimal PRecision data can be loaded before |
33 |
'depends': ['purchase', |
34 |
],
|
|
0.3.5
by Quentin THEURET
UF-113: [IMP] Added test matching with Work Mandate |
35 |
'init_xml': [], |
36 |
'update_xml': [ |
|
37 |
'wizard/compare_rfq_view.xml', |
|
38 |
],
|
|
39 |
'demo_xml': [ |
|
40 |
],
|
|
41 |
'test': [ |
|
42 |
'test/create_rfq.yml', |
|
43 |
'test/compare_rfq.yml', |
|
44 |
],
|
|
45 |
'installable': True, |
|
46 |
'active': False, |
|
47 |
}
|
|
48 |
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
|