import { Prop, Provide, Emit, Model } from 'vue-property-decorator'; import { Subject, Subscription } from 'rxjs'; import { UIActionTool,Util,ViewTool } from '@/utils'; import { Watch, GridControlBase } from '@/studio-core'; import Product_productService from '@/service/product-product/product-product-service'; import MasterService from './master-grid-service'; import Product_productUIService from '@/uiservice/product-product/product-product-ui-service'; import { FormItemModel } from '@/model/form-detail'; /** * grid部件基类 * * @export * @class GridControlBase * @extends {MasterGridBase} */ export class MasterGridBase extends GridControlBase { /** * 获取部件类型 * * @protected * @type {string} * @memberof MasterGridBase */ protected controlType: string = 'GRID'; /** * 建构部件服务对象 * * @type {MasterService} * @memberof MasterGridBase */ public service: MasterService = new MasterService({ $store: this.$store }); /** * 实体服务对象 * * @type {Product_productService} * @memberof MasterGridBase */ public appEntityService: Product_productService = new Product_productService({ $store: this.$store }); /** * 应用实体名称 * * @protected * @type {string} * @memberof MasterGridBase */ protected appDeName: string = 'product_product'; /** * 应用实体中文名称 * * @protected * @type {string} * @memberof MasterGridBase */ protected appDeLogicName: string = '产品'; /** * 界面UI服务对象 * * @type {Product_productUIService} * @memberof MasterBase */ public appUIService:Product_productUIService = new Product_productUIService(this.$store); /** * 界面行为模型 * * @type {*} * @memberof MasterBase */ public ActionModel: any = { }; /** * 主信息表格列 * * @type {string} * @memberof MasterBase */ public majorInfoColName:string = "name"; /** * 本地缓存标识 * * @protected * @type {string} * @memberof MasterBase */ protected localStorageTag: string = 'product_product_master_grid'; /** * 所有列成员 * * @type {any[]} * @memberof MasterGridBase */ public allColumns: any[] = [ { name: 'name', label: '名称', langtag: 'entities.product_product.master_grid.columns.name', show: true, unit: 'PX', isEnableRowEdit: false, enableCond: 3 , }, { name: 'default_code', label: '内部参考', langtag: 'entities.product_product.master_grid.columns.default_code', show: true, unit: 'PX', isEnableRowEdit: false, enableCond: 3 , }, { name: 'attribute_value_ids', label: '属性值', langtag: 'entities.product_product.master_grid.columns.attribute_value_ids', show: true, unit: 'PX', isEnableRowEdit: false, enableCond: 3 , }, { name: 'list_price', label: '销售价格', langtag: 'entities.product_product.master_grid.columns.list_price', show: true, unit: 'PX', isEnableRowEdit: false, enableCond: 3 , }, { name: 'standard_price', label: '成本', langtag: 'entities.product_product.master_grid.columns.standard_price', show: true, unit: 'PX', isEnableRowEdit: false, enableCond: 3 , }, { name: 'qty_available', label: '在手数量', langtag: 'entities.product_product.master_grid.columns.qty_available', show: true, unit: 'PX', isEnableRowEdit: false, enableCond: 3 , }, { name: 'virtual_available', label: '预测数量', langtag: 'entities.product_product.master_grid.columns.virtual_available', show: true, unit: 'PX', isEnableRowEdit: false, enableCond: 3 , }, { name: 'uom_name', label: '单位', langtag: 'entities.product_product.master_grid.columns.uom_name', show: true, unit: 'PX', isEnableRowEdit: false, enableCond: 3 , }, ] /** * 获取表格行模型 * * @type {*} * @memberof MasterGridBase */ public getGridRowModel(){ return { srfkey: new FormItemModel(), } } /** * 属性值规则 * * @type {*} * @memberof MasterGridBase */ public rules: any = { srfkey: [ { required: false, validator: (rule:any, value:any, callback:any) => { return (rule.required && (value === null || value === undefined || value === "")) ? false : true;}, message: 'ID 值不能为空', trigger: 'change' }, { required: false, validator: (rule:any, value:any, callback:any) => { return (rule.required && (value === null || value === undefined || value === "")) ? false : true;}, message: 'ID 值不能为空', trigger: 'blur' }, ], } /** * 属性值规则 * * @type {*} * @memberof MasterBase */ public deRules:any = { }; /** * 获取对应列class * * @type {*} * @memberof MasterBase */ public hasRowEdit: any = { 'name':false, 'default_code':false, 'attribute_value_ids':false, 'list_price':false, 'standard_price':false, 'qty_available':false, 'virtual_available':false, 'uom_name':false, }; /** * 获取对应列class * * @param {*} $args row 行数据,column 列数据,rowIndex 行索引,列索引 * @returns {void} * @memberof MasterBase */ public getCellClassName(args: {row: any, column: any, rowIndex: number, columnIndex: number}): any { return ( this.hasRowEdit[args.column.property] && this.actualIsOpenEdit ) ? "edit-cell" : "info-cell"; } /** * 导出数据格式化 * * @param {*} filterVal * @param {*} jsonData * @param {any[]} [codelistColumns=[]] * @returns {Promise<any>} * @memberof MasterGridBase */ public async formatExcelData(filterVal: any, jsonData: any, codelistColumns?: any[]): Promise<any> { return super.formatExcelData(filterVal, jsonData, [ ]); } /** * 更新默认值 * @param {*} row 行数据 * @memberof MasterBase */ public updateDefault(row: any){ } /** * 计算数据对象类型的默认值 * @param {string} action 行为 * @param {string} param 默认值参数 * @param {*} data 当前行数据 * @memberof MasterBase */ public computeDefaultValueWithParam(action:string,param:string,data:any){ if(Object.is(action,"UPDATE")){ const nativeData:any = this.service.getCopynativeData(); if(nativeData && (nativeData instanceof Array) && nativeData.length >0){ let targetData:any = nativeData.find((item:any) =>{ return item.id === data.srfkey; }) if(targetData){ return targetData[param]?targetData[param]:null; }else{ return null; } }else{ return null; } }else{ return this.service.getRemoteCopyData()[param]?this.service.getRemoteCopyData()[param]:null; } } }