| 123456789101112131415161718192021 |
- Ext.define('saas.model.stock.Makematerial', {
- extend: 'saas.model.Base',
- fields: [
- { name: 'id', type: 'int' },
- { name: 'mm_maid', type: 'int' },
- { name: 'mm_detno', type: 'int' },
- { name: 'mm_prodid', type: 'int' },
- { name: 'mm_prodcode', type: 'string' },
- { name: 'mm_whid', type: 'int' },
- { name: 'mm_whcode', type: 'string' },
- { name: 'mm_whname', type: 'string' },
- { name: 'mm_price', type: 'float' },
- { name: 'mm_oneuseqty', type: 'float' },
- { name: 'mm_qty', type: 'float' },
- { name: 'mm_amount', type: 'float' },
- { name: 'mm_repprodcode', type: 'string' },
- { name: 'mm_remark', type: 'string' }],
- associations: [{ type: 'hasOne', model: 'saas.model.document.ProductDTO', associationKey: 'ProductDTO'}]
- });
|