Skip to content

Commit 0ac8e74

Browse files
committed
rename purchase_extended -> purchase_rfq_bid_workflow
1 parent 493ffd7 commit 0ac8e74

21 files changed

+3
-3
lines changed
File renamed without changes.

β€Žpurchase_extended/__openerp__.py β€Žpurchase_rfq_bid_workflow/__openerp__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#
1919
##############################################################################
2020

21-
{"name": "Purchase Extended",
21+
{"name": "Purchase RFQ Bid workflow",
2222
"version": "0.2",
2323
"author": "Camptocamp",
2424
"category": "Purchase Management",

β€Žpurchase_extended/model/purchase_order.py β€Žpurchase_rfq_bid_workflow/model/purchase_order.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def action_cancel(self):
145145
model_obj = self.env['ir.model.data']
146146
view_id = (model_obj
147147
.sudo()
148-
.get_object_reference('purchase_extended',
148+
.get_object_reference('purchase_rfq_bid_workflow',
149149
'action_modal_cancel_reason'))[1]
150150
ctx = self._context.copy()
151151
ctx['action'] = 'action_cancel_ok'
@@ -191,7 +191,7 @@ def bid_received(self):
191191
'default_datetime': (self.bid_date
192192
or fields.Date.context_today(self)),
193193
})
194-
view = self.env.ref('purchase_extended.action_modal_bid_date')
194+
view = self.env.ref('purchase_rfq_bid_workflow.action_modal_bid_date')
195195

196196
# those will be set by the web layer unless they are already defined
197197
for e in ('active_model', 'active_ids', 'active_id'):

0 commit comments

Comments
Β (0)