12345678910111213141516171819 |
- Ext.define('make.model.make.MakeMaterial', {
- extend: 'saas.model.Base',
- fields: [
- { name: 'id', type: 'int' }, // id
- { name: 'mm_prodid', type: 'int' }, // 物料id
- { name: 'mm_prodcode', type: 'string' }, // 物料编号
- { name: 'pr_brand', type: 'string' }, // 厂家/品牌
- { name: 'pr_detail', type: 'string' }, // 名称
- { name: 'pr_orispeccode', type: 'string' }, // 型号
- { name: 'pr_spec', type: 'string' }, // 规格
- { name: 'mm_oneuseqty', type: 'float' }, // 单位用量
- { name: 'mm_qty', type: 'float' }, // 数量
- { name: 'pr_unit', type: 'string' }, // 单位
- { name: 'mm_remark', type: 'string'}, // 备注
- ],
- //一对一映射
- associations: [{ type: 'hasOne', model: 'saas.model.document.ProductDTO', associationKey: 'ProductDTO'}]
- });
|