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.
61 lines
2.3 KiB
JavaScript
61 lines
2.3 KiB
JavaScript
Ext.define('MsChFeeAgentDC', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' },
|
|
{ name: 'BSNO', type: 'string' },
|
|
{ name: 'DCNO', type: 'string' },
|
|
{ name: 'AGENT', type: 'string' },
|
|
{ name: 'FEENAME', type: 'string' },
|
|
{ name: 'CURRENCY', type: 'string' },
|
|
{ name: 'AMOUNTDR', type: 'string' },
|
|
{ name: 'AMOUNTCR', type: 'string' },
|
|
{ name: 'AMOUNTBAL', type: 'string' },
|
|
{ name: 'ISCREATEFEE', type: 'string' },
|
|
{ name: 'ISCREATEFEEREF', type: 'string' },
|
|
{ name: 'FEEAGENT', type: 'string' },
|
|
{ name: 'CREATEUSER', type: 'string' },
|
|
{ name: 'CREATEUSERREF', type: 'string' },
|
|
{ name: 'CREATETIME', type: 'string' },
|
|
{ name: 'DCTYPE', type: 'string' },
|
|
{ name: 'AMOUNTTOTALSTR', type: 'string' },
|
|
{ name: 'EXCHANGERATE', type: 'string' },
|
|
{ name: 'REMARK', type: 'string' }
|
|
]
|
|
});
|
|
|
|
|
|
Ext.define('MsChFeeAgentDCDetail', {
|
|
extend: 'Ext.data.Model',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' },
|
|
{ name: 'DCGID', type: 'string' },
|
|
{ name: 'FEENAME', type: 'string' },
|
|
{ name: 'FEEENAME', type: 'string' },
|
|
{ name: 'CURRENCY', type: 'string' },
|
|
{ name: 'EXCHANGERATE', type: 'number' },
|
|
{ name: 'DRPP', type: 'number' },
|
|
{ name: 'DRCC', type: 'number' },
|
|
{ name: 'CRPP', type: 'number' },
|
|
{ name: 'CRCC', type: 'number' },
|
|
{ name: 'FZPR', type: 'string' },
|
|
{ name: 'AMOUNTDR', type: 'number' },
|
|
{ name: 'AMOUNTCR', type: 'number' },
|
|
{ name: 'UNIT', type: 'string' },
|
|
{ name: 'UNITPRICE', type: 'number' },
|
|
{ name: 'QUANTITY', type: 'number' },
|
|
{ name: 'FEEDESCRIPTION', type: 'string' },
|
|
{ name: 'SORT', type: 'number' },
|
|
{ name: 'REMARK', type: 'string' }
|
|
]
|
|
});
|
|
|
|
Ext.define('MsFeeCurr', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'CURR',
|
|
fields: [
|
|
{ name: 'CURR', type: 'string' },
|
|
{ name: 'DEFRATE', type: 'number' },
|
|
{ name: 'CRDEFRATE', type: 'number' }
|
|
]
|
|
}); |