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/Account/Viewsjs/Chfee_recvapplication/ChRecvapplicationModel.js

44 lines
2.0 KiB
JavaScript

2 years ago
Ext.define('MsChRecvapplication', {
extend: 'Ext.data.Model',
idProperty: 'GID',
fields: [
{ name: 'GID', type: 'string' },
{ name: 'BILLNO', type: 'string' },
{ name: 'BILLSTATUS', type: 'string' },
{ name: 'BILLSTATUSREF', type: 'string' },
{ name: 'CUSTOMERNAME', type: 'string' },
{ name: 'INVOICETITLE', type: 'string' },
{ name: 'SETTLETYPE', type: 'number' },
{ name: 'SETTLETYPEREF', type: 'string' },
{ name: 'RECVTIME', type: 'string' },
{ name: 'CURR', type: 'string' },
{ name: 'AMOUNTRMB', type: 'number' },
{ name: 'AMOUNTUSD', type: 'number' },
{ name: 'ACCOUNT', type: 'string' },
{ name: 'ACCOUNTREF', type: 'string' },
{ name: 'RATE', type: 'number' },
{ name: 'SETTLERMB', type: 'number' },
{ name: 'SETTLEUSD', type: 'number' },
{ name: 'SETTLERATE', type: 'number' },
{ name: 'APPLYTIME', type: 'string' },
{ name: 'ENTERTIME', type: 'string' },
{ name: 'SETTLETIME', type: 'string' },
{ name: 'AUDITTIME', type: 'string' },
{ name: 'APPLICANT', type: 'string' },
{ name: 'APPLICANTNAME', type: 'string' },
{ name: 'SETTLEUSER', type: 'string' },
{ name: 'AUDITUSER', type: 'string' },
{ name: 'COMPANYID', type: 'string' },
{ name: 'SALECORP', type: 'string' },
{ name: 'SALECORPID', type: 'string' },
{ name: 'PRINTCOUNT', type: 'number' },
{ name: 'INVOICENUMREMARK', type: 'string' },
{ name: 'PREAMOUNTRMB', type: 'number' },
{ name: 'PREAMOUNTUSD', type: 'number' },
{ name: 'BALAMOUNTRMB', type: 'number' },
{ name: 'BALAMOUNTUSD', type: 'number' },
{ name: 'REMARK', type: 'string' }
]
});