stocking.js 707 B

123456789101112131415161718
  1. Ext.define('saas.model.document.stocking', {
  2. extend: 'saas.model.Base',
  3. fields: [
  4. { name: 'id', type: 'int' },
  5. { name: 'st_prodid', type: 'int' },
  6. { name: 'st_prodcode', type: 'string' },
  7. { name: 'st_proddetail', type: 'string' },
  8. { name: 'st_prodorispeccode', type: 'string' },
  9. { name: 'st_prodkind', type: 'string' },
  10. { name: 'st_produnit', type: 'string' },
  11. { name: 'st_whid', type: 'int' },
  12. { name: 'st_whcode', type: 'string' },
  13. { name: 'st_whname', type: 'string' },
  14. { name: 'st_batchqty', type: 'float' },
  15. { name: 'st_actqty', type: 'float' },
  16. { name: 'st_num', type: 'float' }
  17. ]
  18. });