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.
19 lines
756 B
JavaScript
19 lines
756 B
JavaScript
Ext.define('MsJhSparepart', {
|
|
extend: 'Ext.data.Model',
|
|
idProperty: 'PcNo',
|
|
fields: [
|
|
{ name: 'PcNo', type: 'string' },
|
|
{ name: 'PluCode', type: 'string' },
|
|
{ name: 'PluCode_Ref', type: 'string' },
|
|
{ name: 'PluName', type: 'string' },
|
|
{ name: 'Spec', type: 'string' },
|
|
{ name: 'Unit', type: 'string' },
|
|
{ name: 'TyreType', type: 'string' },
|
|
{ name: 'TyreType_Ref', type: 'string' },
|
|
{ name: 'JhDate', type: 'string' },
|
|
{ name: 'JhBillNo', type: 'string' },
|
|
{ name: 'RealMil', type: 'number' },
|
|
{ name: 'OrgCode', type: 'string' }
|
|
]
|
|
});
|