| 123456789101112131415161718 |
- Ext.define('saas.model.document.stocking', {
- extend: 'saas.model.Base',
- fields: [
- { name: 'id', type: 'int' },
- { name: 'st_prodid', type: 'int' },
- { name: 'st_prodcode', type: 'string' },
- { name: 'st_proddetail', type: 'string' },
- { name: 'st_prodorispeccode', type: 'string' },
- { name: 'st_prodkind', type: 'string' },
- { name: 'st_produnit', type: 'string' },
- { name: 'st_whid', type: 'int' },
- { name: 'st_whcode', type: 'string' },
- { name: 'st_whname', type: 'string' },
- { name: 'st_batchqty', type: 'float' },
- { name: 'st_actqty', type: 'float' },
- { name: 'st_num', type: 'float' }
- ]
- });
|