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/MvcShipping/Viewsjs/MsCwVouchersGlInvoice/MsCwVouchersGlInvoiceModel.js

67 lines
2.8 KiB
JavaScript

2 years ago
Ext.define('MsCwVouchersGlInvoiceModel', {
extend: 'Ext.data.Model',
idProperty: 'GID',
fields: [
{ name: 'GID', type: 'string' },
{ name: 'BILLNO', type: 'string' },
{ name: 'CUSTOMERNAME', type: 'string' },
{ name: 'ACTUALCUSTOMERNAME', type: 'string' },
{ name: 'CURRENCY', type: 'string' },
{ name: 'INVOICENO', type: 'string' },
{ name: 'INVOICECUSTNAME', type: 'string' },
{ name: 'INVOICETYPE', type: 'number' },
{ name: 'INVOICETYPEREF', type: 'string' },
{ name: 'BILLSTATUS', type: 'number' },
{ name: 'BILLSTATUSREF', type: 'string' },
{ name: 'INVOICECATEGORY', type: 'string' },
{ name: 'INVOICECATEGORYREF', type: 'string' },
{ name: 'AMOUNT', type: 'number' },
{ name: 'INVAMOUNT', type: 'number' },
{ name: 'OTCURRAMOUNT', type: 'number' },
{ name: 'EXCHANGERATE', type: 'number' },
{ name: 'AMOUNTCAPITAL', type: 'string' },
{ name: 'APPLICANT', type: 'string' },
{ name: 'APPLICANTNAME', type: 'string' },
{ name: 'APPLYTIME', type: 'string' },
{ name: 'OPERATOR', type: 'string' },
{ name: 'OPERATORNAME', type: 'string' },
{ name: 'OPERATETIME', type: 'string' },
{ name: 'INVOICEMAKETIME', type: 'string' },
{ name: 'COMPANYID', type: 'string' },
{ name: 'BSNO', type: 'string' },
{ name: 'MBLNO', type: 'string' },
{ name: 'VESSELVOYAGE', type: 'string' },
{ name: 'ETD', type: 'string' },
{ name: 'POL', type: 'string' },
{ name: 'POD', type: 'string' },
{ name: 'CUSTRATENO', type: 'string' },
{ name: 'CUSTADDRTEL', type: 'string' },
{ name: 'CUSTBANK', type: 'string' },
{ name: 'BANK', type: 'string' },
{ name: 'ACCOUNT', type: 'string' },
{ name: 'LICENSECODE', type: 'string' },
{ name: 'TAXCODE', type: 'string' },
{ name: 'VOUCHERNO', type: 'string' },
{ name: 'ISNEEDPRINT', type: 'string' },
{ name: 'ISNEEDFEE', type: 'string' },
{ name: 'ISDELETE', type: 'string' },
{ name: 'DELETEOPERATOR', type: 'string' },
{ name: 'DELOPERATORNAME', type: 'string' },
{ name: 'DELETETIME', type: 'string' },
{ name: 'PTORRED', type: 'string' },
{ name: 'NOSTL', type: 'string' },
{ name: 'FEEAMOUNT', type: 'string' },
{ name: 'REMARK', type: 'string' },
{ name: 'VOUNO', type: 'string' },
{ name: 'SETRED', type: 'string' }
]
});
Ext.define('MsCodeCurrencyList', {
extend: 'Ext.data.Model',
idProperty: 'CURR',
fields: [
{ name: 'CURR', type: 'string' },
{ name: 'FCYEXRATE', type: 'string' }
]
});