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.
DS7/DSWeb/Areas/TruckMng/Viewsjs/WlBsCardModels/WlPcFeeModel.js

15 lines
613 B
JavaScript

Ext.define('WlPcFee', {
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' }
]
});