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/WMSDeliver/WMSDeliverModel.js

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' }
]
});