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

I would like to create a from with fields which are not saved to the database.
The data should be sent to an webservices to check availabillity.

Can someone give me an example... ?

 

Thnx !

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

Hi Look at how to do a wizard?

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

For this you could use the new orm.transientmodel class. This will create a record in database like the regular orm/osv models but it will auto-remove itself after a certain period of time (I believe the default is 5 or 10 minutes).

You can create forms and such like you normally would with any other object/view.

--- EDIT ---

I meant osv.AbstractModel.

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

Hello Tom,

You can try out overriding "fields_view_get" method where you can create fields which are not there in the database, and then you can use those fields values for sending to a webservice, so actually, as the fields don't belongs to any of the model they will not get save in the database. This way actaully you are creating a dynamic view.

 

Regards

อวตาร
ละทิ้ง