You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
617 B
JavaScript
16 lines
617 B
JavaScript
Ext.define('WlBsCardFixed', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'BillNo,CreditDebit,SerialNo',
|
|
fields: [
|
|
{ name: 'BillNo', type: 'string' },
|
|
{name: 'SerialNo', type:'float'},
|
|
{ name: 'CreditDebit', type: 'string' },
|
|
{ name: 'FeeTypeCode', type: 'string' },
|
|
{ name: 'DistCount', type: 'float' },
|
|
{ name: 'Price', type: 'float' },
|
|
{ name: 'FsTotal', type: 'float' },
|
|
{ name: 'JsTotal', type: 'float' },
|
|
{ name: 'Remark', type: 'string' }
|
|
]
|
|
});
|