ProductDetail.js 544 B

123456789101112131415
  1. Ext.define('saas.model.document.ProductDetail', {
  2. extend: 'saas.model.Base',
  3. fields: [
  4. { name: 'id', type: 'int' },
  5. { name: 'pd_prodid', type: 'int' },
  6. { name: 'pd_prodcode', type: 'string' },
  7. { name: 'pd_detno', type: 'int' },
  8. { name: 'pd_whcode', type: 'string' },
  9. { name: 'pd_whname', type: 'string' },
  10. { name: 'pd_whid', type: 'int' },
  11. { name: 'pd_price', type: 'string' },
  12. { name: 'pd_amount', type: 'int' },
  13. { name: 'pd_num', type: 'int' }
  14. ]
  15. });