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.
25 lines
1.2 KiB
JavaScript
25 lines
1.2 KiB
JavaScript
Ext.define('CustomerBalancemb', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'GID',
|
|
fields: [
|
|
{ name: 'GID', type: 'string' },
|
|
{ name: 'CustomerGID', type: 'string' },
|
|
{ name: 'CustomerName', type: 'string' },
|
|
{ name: 'StartTime', type: 'date' },
|
|
{ name: 'Balance_1', type: 'string' }, //开票未收
|
|
{ name: 'Balance_2', type: 'string' }, //未开票未收
|
|
{ name: 'Balance_3', type: 'string' }, //未付
|
|
{ name: 'Balance_4', type: 'string' }, //未付
|
|
{ name: 'Balance_5', type: 'string' },
|
|
{ name: 'C_Balance_1', type: 'string' }, //开票未收
|
|
{ name: 'C_Balance_2', type: 'string' }, //未开票未收
|
|
{ name: 'C_Balance_3', type: 'string' }, //未付
|
|
{ name: 'C_Balance_4', type: 'string' }, //未付
|
|
{ name: 'C_Balance_5', type: 'string' }, //未付
|
|
{ name: 'INSERTED', type: 'string' },
|
|
{ name: 'DeptGID', type: 'string' },
|
|
{ name: 'DeptName', type: 'string' },
|
|
{ name: 'CodeName', type: 'string' }
|
|
]
|
|
});
|