|
|
|
|
Ext.define('MsContainerSetEntity', {
|
|
|
|
|
extend: 'Ext.data.Model',
|
|
|
|
|
idProperty: 'CTNID',
|
|
|
|
|
fields: [
|
|
|
|
|
{ name: 'CTNID', type: 'string' },
|
|
|
|
|
{ name: 'CTNSIZE', type: 'string' },
|
|
|
|
|
{ name: 'CTNTYPE', type: 'string' },
|
|
|
|
|
{ name: 'CTN', type: 'string' },
|
|
|
|
|
{ name: 'EDICODE', type: 'string' },
|
|
|
|
|
{ name: 'CTNWEIGHT', type: 'string' },
|
|
|
|
|
{ name: 'EEXPLAIN', type: 'string' },
|
|
|
|
|
{ name: 'CEXPLAIN', type: 'string' },
|
|
|
|
|
{ name: 'AFRCODE', type: 'string' },
|
|
|
|
|
{ name: 'TEU', type: 'numeric' },
|
|
|
|
|
{ name: 'DLIKGS', type: 'numeric' }
|
|
|
|
|
]
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
Ext.define('MsCodeCtnEdi', {
|
|
|
|
|
extend: 'Ext.data.Model',
|
|
|
|
|
idProperty: 'GID',
|
|
|
|
|
fields: [
|
|
|
|
|
{ name: 'GID', type: 'string' },
|
|
|
|
|
{ name: 'CTN', type: 'string' },
|
|
|
|
|
{ name: 'EDICODE', type: 'string' },
|
|
|
|
|
{ name: 'EDINAME', type: 'string' },
|
|
|
|
|
{ name: 'EDINAMEREF', type: 'string' },
|
|
|
|
|
{ name: 'REMARK', type: 'string' },
|
|
|
|
|
{ name: 'PORTID', type: 'string' }
|
|
|
|
|
]
|
|
|
|
|
});
|