ผลต่างระหว่างรุ่นของ "Openerp/histest"
ไปยังการนำทาง
ไปยังการค้นหา
Chaiporn (คุย | มีส่วนร่วม) |
Chaiporn (คุย | มีส่วนร่วม) |
||
| แถว 1: | แถว 1: | ||
== การสร้าง OTP เพื่อผนวกเข้ากับ workflow ของโมเดล HISAppointment == | == การสร้าง OTP เพื่อผนวกเข้ากับ workflow ของโมเดล HISAppointment == | ||
| + | |||
| + | === ไฟล์ histest.py === | ||
| + | เพิ่มฟิลด์ phone_number สำหรับผู้รับ OTP ผ่าน SMS | ||
| + | <syntaxhighlight lang="python"> | ||
| + | class HISPatient(osv.Model): | ||
| + | : | ||
| + | _columns={ | ||
| + | : | ||
| + | 'phone_number': fields.char(size=20, string=u'โทรศัพท์'), | ||
| + | : | ||
| + | } | ||
| + | </syntaxhighlight> | ||
== การสร้าง Scheduled Action == | == การสร้าง Scheduled Action == | ||
รุ่นแก้ไขเมื่อ 16:44, 2 พฤษภาคม 2557
การสร้าง OTP เพื่อผนวกเข้ากับ workflow ของโมเดล HISAppointment
ไฟล์ histest.py
เพิ่มฟิลด์ phone_number สำหรับผู้รับ OTP ผ่าน SMS
class HISPatient(osv.Model):
:
_columns={
:
'phone_number': fields.char(size=20, string=u'โทรศัพท์'),
:
}