Hi,
How to make a view editable for only particular number of days , is it possible to do this using field view get function.....
Hi,
How to make a view editable for only particular number of days , is it possible to do this using field view get function.....
How I achieve something like by using following piece of code:
@api.model
def fields_view_get(self, view_id=None, view_type='form', toolbar=False, submenu=False):
if view_type == 'form':
res['arch'] = self.fields_view_get_address(res['arch'])
record = self.env['crm.lead'].browse(self._context.get('params').get('id'))
# restrict modification and deletion of child ids
if record.parent_id:
res['arch'] = res['arch'][:6] + 'edit="false" delete="false" ' + res['arch'][6:]
elif record.stage_id.id == 4: # restrict edition of Purchased Lead
res['arch'] = res['arch'][:6] + 'edit="false" ' + res['arch'][6:]
return res
สร้างบัญชีวันนี้เพื่อเพลิดเพลินไปกับฟีเจอร์พิเศษและมีส่วนร่วมกับคอมมูนิตี้ที่ยอดเยี่ยมของเรา!
ลงชื่อ| Related Posts | ตอบกลับ | มุมมอง | กิจกรรม | |
|---|---|---|---|---|
|
fields_view_get not being triggered
แก้ไขแล้ว
|
2
พ.ย. 16
|
8458 | ||
|
New API style for fields_view_get?
แก้ไขแล้ว
|
1
ก.ย. 15
|
6543 | ||
|
3
ส.ค. 15
|
11338 | |||
|
1
ก.ค. 15
|
10338 | |||
|
1
มี.ค. 15
|
7413 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.