clinic/netforce_clinic/models/import_data_uc.py

27 lines
844 B
Python
Raw Normal View History

2014-10-22 03:45:23 +00:00
from netforce.model import Model, fields
2014-11-25 10:26:10 +00:00
class ImportDataUC(Model):
_name="clinic.data.uc"
2014-10-22 03:45:23 +00:00
_transient=True
_fields={
'name': fields.Char("Name"),
2014-10-24 08:08:56 +00:00
'type': fields.Selection([['success','Succes'],['fail','Fail']],'Type'),
2014-10-24 04:24:33 +00:00
'epostat': fields.Char("Epostat"),
'hdrate': fields.Char("Hdrate"),
'hdflag': fields.Char("Hdflag"),
'amount': fields.Float("Amount"),
'paid': fields.Float("Paid"),
'paychk': fields.Char("Paychk"),
'dttran': fields.Char("Dttran"),
'hreg': fields.Char("Hreg"),
'station': fields.Char("Station"),
'hn': fields.Char("HN"),
'invno': fields.Char("InvNo"),
'rid': fields.Char("RID"),
'cstat': fields.Char("Cstat"),
'reimbpay': fields.Char("Reimbpay"),
2014-10-22 03:45:23 +00:00
}
2014-10-24 08:08:56 +00:00
2014-11-25 10:26:10 +00:00
ImportDataUC.register()