Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
3 ตอบกลับ
6856 มุมมอง

My concept is small, I have a many2one field, if i select one value means sequence number is created automatically based on Many2One value. Ex. many2one field like this ABC, BCD, if i select ABC and save it, its sequence is ABC001 it is correct, but again i can edit this Many2One like BCD, It is a Wrong record. Once user select ABC means and save it, again he wont change the value. how to do it.

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

Hi,

You can create one boolean field:test and then set that field as True on record creation. Then apply readonly attrs(boolean=True) for your many2one field. e.g. <field name="m2o_field" attrs="{'readonly': [('test','=',True)]}"/>

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

I have a other solution, not tested but in theory work fine.

In your object columns add

'id': fields.integer('ID',  readonly=True),

That will force openerp to add ID field in the object column property

After in your view, add

<field name="id" invisible="1"/>

That will but the ID field invisible on your form, and allow the next change to work

<field name="m2o_field" attrs="{'readonly': [('id','!=',False)]}"/>

That will put the field on readonly when the record will be create. So dont forget to put required=true for the m2o_field, because if you forget to select a value, after creation you cant change it.

I prefer this solution, because no need to create a new field, no need to manage field to set it when record create.

Give me a feedback if you do it, please

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

You can block the value change of any many2one fields with widget attribute like, widget="many2one_list" example : <field name="id" widget="many2one_list"/> its gives a list formate and you cant change it

like this you can set other fields :one2many_list : many2one_list

อวตาร
ละทิ้ง

read again, he wanna can SET a value at record creation, but disable change after, so edit record CANT change de value. He dont wanna have a list not modifiable, he wanna CANT change the selected.

Related Posts ตอบกลับ มุมมอง กิจกรรม
1
ต.ค. 15
16062
2
ม.ค. 19
20159
2
มี.ค. 15
10227
1
พ.ค. 25
1163
2
พ.ค. 25
1268