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.

23 lines
721 B
JavaScript

Ext.define('Projectmb', {
extend: 'Ext.data.Model',
idProperty: 'GID',
fields: [
{ name: 'GID', type: 'string' },
{ name: 'PROJECTNO', type: 'string' },
{ name: 'BLNO', type: 'string' },
{ name: 'PROTYPE', type: 'string' },
{ name: 'BLNOTYPE', type: 'string' },
{ name: 'ISOVER', type: 'string' },
{ name: 'ISOVER_DEF', type: 'string' },
{ name: 'OVERDATE', type: 'date' },
{ name: 'INSERTED', type: 'string' }
]
});
Ext.define('BLNOmb', {
extend: 'Ext.data.Model',
fields: [
{ name: 'BLNO', type: 'string' }
]
});