| 12345678910111213141516171819 |
- Ext.define('saas.model.sale.Saledetail', {
- extend: 'saas.model.Base',
- fields: [
- { name: 'sd_detno', type: 'int' },
- { name: 'id', type: 'int' },
- { name: 'sd_prodcode', type: 'string' },
- { name: 'sd_qty', type: 'int' },
- { name: 'sd_yqty', type: 'int' },
- { name: 'sd_price', type: 'float' },
- { name: 'sd_taxrate', type: 'float' },
- { name: 'sd_total', type: 'float' },
- { name: 'sd_delivery', type: 'date' },
- { name: 'sd_taxtotal', type: 'float' },
- { name: 'sd_pucode', type: 'string' }
- ],
- //一对一映射
- associations: [{ type: 'hasOne', model: 'saas.model.document.Product', associationKey: 'productDTO'}]
- });
|