Merge lp:~camptocamp/openerp-humanitarian-ngo/purchase-wkfl-add-tooltips-rde into lp:~camptocamp/openerp-humanitarian-ngo/add-bid_selected_state_on_po-nbi

Proposed by Romain Deheele - Camptocamp
Status: Merged
Merged at revision: 78
Proposed branch: lp:~camptocamp/openerp-humanitarian-ngo/purchase-wkfl-add-tooltips-rde
Merge into: lp:~camptocamp/openerp-humanitarian-ngo/add-bid_selected_state_on_po-nbi
Diff against target: 49 lines (+23/-2)
1 file modified
purchase_requisition_extended/model/purchase_requisition.py (+23/-2)
To merge this branch: bzr merge lp:~camptocamp/openerp-humanitarian-ngo/purchase-wkfl-add-tooltips-rde
Reviewer Review Type Date Requested Status
Nicolas Bessi - Camptocamp (community) Approve
Review via email: mp+205097@code.launchpad.net

Description of the change

Hello,

This branch add tooltips on purchase requisition fields.

To post a comment you must log in.
Revision history for this message
Nicolas Bessi - Camptocamp (nbessi-c2c-deactivatedaccount) wrote :

LGTM

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'purchase_requisition_extended/model/purchase_requisition.py'
2--- purchase_requisition_extended/model/purchase_requisition.py 2014-01-28 12:41:15 +0000
3+++ purchase_requisition_extended/model/purchase_requisition.py 2014-02-06 09:15:05 +0000
4@@ -25,15 +25,33 @@
5 domain=[('type', 'in', ('rfq', 'bid'))]),
6 # new
7 'req_validity': fields.date("Requested Bid's End of Validity",
8- help="Default value requested to "
9- "the supplier."),
10+ help="Requested validity period requested to the bidder, "
11+ "i.e. please send bids that stay valid until that "
12+ "date.\n The bidder is allowed to send a bid with "
13+ "another validity end date that gets encoded in the "
14+ "bid."),
15 'bid_tendering_mode': fields.selection([('open', 'Open'),
16 ('restricted', 'Restricted')],
17 'Call for Bids Mode'),
18+ help="- Restricted : you select yourself the "
19+ "bidders and generate a RFQ for each of "
20+ "those. \n"
21+ "- Open : anybody can bid (you have to "
22+ "advertise the call for bids) and you "
23+ "directly encode the bids you received. "
24+ "You are still able to generate RFQ if "
25+ "you want to contact usual bidders."),
26 'bid_receipt_mode': fields.selection([('open', 'Open'),
27 ('sealed', 'Sealed')],
28 'Bid Receipt Mode',
29 required=True),
30+ help="- Open : The bids can be opened when "
31+ "received and encoded. \n"
32+ "- Closed : The bids can be marked as "
33+ "received but they have to be opened \n"
34+ "all at the same time after an opening "
35+ "ceremony (probably specific to public "
36+ "sector)."),
37 'consignee_id': fields.many2one('res.partner',
38 'Consignee',
39 help="Person responsible of delivery"),
40@@ -59,6 +77,9 @@
41 'Pricelist',
42 help="If set that pricelist will be used to generate the RFQ."
43 "Mostely used to ask a requisition in a given currency."),
44+ 'date_end': fields.datetime('Bid Submission Deadline',
45+ help="All bids received after that date won't be valid "
46+ " (probably specific to public sector)."),
47 }
48 _defaults = {
49 'bid_receipt_mode': 'open',

Subscribers

People subscribed via source and target branches

to all changes: