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
804 B
JavaScript
25 lines
804 B
JavaScript
Ext.define('WMSDeliverListModel', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'BSNO',
|
|
fields: [
|
|
{ name: 'BSNO', type: 'string' },
|
|
{ name: 'CUSTOMERNAME', type: 'string' },
|
|
{ name: 'BUYCONTRACT', type: 'string' },
|
|
{ name: 'DELIVERNO', type: 'string' },
|
|
{ name: 'BSSTATUS', type: 'string' },
|
|
{ name: 'GOODSNAMETT', type: 'string' },
|
|
{ name: 'DELIVERDATE', type: 'string' },
|
|
{ name: 'DRIVER', type: 'string' },
|
|
{ name: 'TRUCKNO', type: 'string' },
|
|
{ name: 'ENTERDATE', type: 'string' },
|
|
{ name: 'ENTEROPERATER', type: 'string' },
|
|
{ name: 'CORPID', type: 'string' }
|
|
|
|
]
|
|
|
|
|
|
});
|
|
|
|
|
|
|