| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033 |
- <template>
- <div class="ele-body">
- <BOMSearch @search="reload" :statusOpt="statusOpt" />
- <!-- :header-cell-style="headerCellStyle" -->
- <ele-pro-table
- ref="table"
- :key="tableKey"
- :columns="columns"
- :pagination="pagination"
- :datasource="datasource"
- class="dict-table"
- tool-class="ele-toolbar-actions"
- >
- <template v-slot:toolbar>
- <div class="toolbar_box">
- <div
- v-if="
- attributeData.status != 1 && attributeData.approvalStatus != 1
- "
- >
- <el-button
- type="primary"
- size="mini"
- @click="handleAdd"
- v-if="!isWt && attributeData.attributeType != 4"
- >新增</el-button
- >
- <el-button
- type="primary"
- size="mini"
- @click="handleSave"
- v-if="!isWt"
- >保存</el-button
- >
- </div>
- <div class="toolbar_box_right"
- ><span>基本数量</span>
- <el-input
- placeholder="请输入"
- v-model.number="attributeData.baseCount"
- disabled
- >
- <template #append>
- {{
- attributeData.category && attributeData.category.measuringUnit
- }}</template
- >
- </el-input>
- </div>
- </div>
- </template>
- <!-- 用量 -->
- <template v-slot:dosageHead="{ column }">
- <div>
- <span class="is-required">{{ column.label }}</span>
- </div>
- </template>
- <template v-slot:dosage="{ row }">
- <el-input
- v-model="row.dosage"
- placeholder="请输入"
- size="mini"
- style="width: 68px"
- >
- </el-input>
- </template>
- <template v-slot:versions="{ row }"> V{{ row.versions }}.0 </template>
- <template v-slot:rootCategoryLevelId="{ row }"
- >{{ rootCategoryLevelIdText(row.rootCategoryLevelId) }}
- </template>
- <template v-slot:produceType="{ row }">
- <el-select
- v-model="row.produceType"
- filterable
- multiple
- disabled
- class="ele-block"
- size="mini"
- >
- <el-option
- v-for="item in produceTypeList"
- :key="item.value"
- :value="item.value"
- :label="item.label"
- ></el-option>
- </el-select>
- </template>
- <template v-slot:attributeType="{ row }">
- <!-- <el-select
- v-model="row.attributeType"
- filterable
- disabled
- class="ele-block"
- size="mini"
- >
- <el-option
- v-for="item in attributeList"
- :key="item.value"
- :value="item.value"
- :label="item.label"
- ></el-option>
- </el-select> -->
- {{ attributeTypeText(row.attributeType) }}
- </template>
- <template v-slot:componentAttribute="{ row }">
- <div>
- <el-select
- v-model="row.componentAttribute"
- filterable
- multiple
- disabled
- class="ele-block"
- size="mini"
- >
- <el-option
- v-for="item in sxtList"
- :key="item.value"
- :value="item.value"
- :label="item.label"
- ></el-option>
- </el-select>
- </div>
- </template>
- <template v-slot:resourceBomVersion="{ row }">
- <div>
- <el-select
- v-model="row.resourceBomVersion"
- class="ele-block"
- size="mini"
- :disabled="row.approvalStatus == 2 || row.approvalStatus == 1"
- @change="resourceBomVersionFn($event, row)"
- >
- <el-option
- v-for="item in row.resourceBomVersionList"
- :key="item.versions"
- :value="item.versions"
- :label="'V' + item.versions + '.0'"
- ></el-option>
- </el-select>
- </div>
- <!-- <div v-if="!row.id">
- <el-select
- v-model="row.resourceBomVersion"
- disabled
- class="ele-block"
- size="mini"
- @change="resourceBomVersionFn($event, row)"
- >
- <el-option
- v-for="item in row.resourceBomVersionList"
- :key="item.versions"
- :value="item.versions"
- :label="'V' + item.versions + '.0'"
- ></el-option>
- </el-select>
- </div>
- <div v-else-if="row.resourceBomVersion">
- {{ 'V' + row.resourceBomVersion + '.0' }}
- </div> -->
- </template>
- <template v-slot:materielDesignation="{ row }">
- <el-input
- v-model="row.materielDesignation"
- placeholder="请输入物料代号"
- size="mini"
- style="width: 120px"
- >
- </el-input>
- </template>
- <template v-slot:supplierId="{ row }">
- <el-select
- v-model="row.supplierId"
- size="mini"
- clearable
- class="ele-block"
- filterable
- placeholder="请选择供应商"
- >
- <el-option
- v-for="(item, index) in gysList"
- :key="item.id + index"
- :value="item.id"
- :label="item.name"
- ></el-option>
- </el-select>
- </template>
- <template v-slot:factories="{ row }">
- <div style="display: flex">
- <el-input
- v-model="row.factories"
- disabled
- :value="row.factories"
- placeholder="请选择生产厂家"
- size="mini"
- style="width: 120px"
- >
- </el-input>
- <!-- -->
- <el-button
- type="primary"
- @click="factoriesFn(row.code)"
- v-if="row.approvalStatus != 2 && row.approvalStatus != 1"
- >选择</el-button
- >
- <!-- <el-select v-model="row.factories" size="mini" clearable class="ele-block" filterable placeholder="请选择生产厂家">
- <el-option v-for="(item, index) in sccjList" :key="item.id + index" :value="item.id"
- :label="item.name"></el-option>
- </el-select> -->
- </div>
- <!-- <el-input v-model="row.factories" placeholder="请输入生产厂家" size="mini" style="width: 120px">
- </el-input> -->
- </template>
- <!-- 表头工具栏 -->
- <template v-slot:action="{ row, $index }">
- <el-link
- v-if="
- attributeData.approvalStatus != 1 &&
- attributeData.approvalStatus != 2 &&
- !isWt
- "
- type="danger"
- :underline="false"
- icon="el-icon-delete"
- @click="handleDel(row, $index)"
- >
- 删除
- </el-link>
- </template>
- </ele-pro-table>
- <bomTreeDialog ref="bomTreeDialogRef" @reload="bomClose" />
- <standardOutput
- ref="standardOutputRefs"
- @selection="chooseStandardList"
- ></standardOutput>
- <clientDialog
- ref="clientSelectionRef"
- @success="confirmSelection"
- ></clientDialog>
- </div>
- </template>
- <script>
- import BOMSearch from './BOM-search.vue';
- import {
- getBomPageCategoryId,
- contactList,
- deleteBomTreeList,
- updateBatchBOM,
- sourceBomVersion
- } from '@/api/material/BOM';
- import clientDialog from './clientDialog.vue';
- import { getByCode } from '@/api/system/dictionary-data';
- import bomTreeDialog from './bomTreeDialog.vue';
- import { produceTypeList } from '@/enum/dict.js';
- import standardOutput from './standardOutput.vue';
- export default {
- name: 'SystemDictionary',
- components: { BOMSearch, bomTreeDialog, standardOutput, clientDialog },
- data() {
- return {
- produceTypeList,
- pagination: {
- tableTotal: 0
- },
- // 表格列配置
- columns: [
- {
- label: '序号',
- columnKey: 'index',
- type: 'index',
- width: 55,
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'code',
- label: 'BOM编码',
- showOverflowTooltip: true,
- width: 120
- },
- {
- prop: 'categoryCode',
- label: '物品编码',
- showOverflowTooltip: true,
- width: 120
- },
- {
- prop: 'name',
- label: '名称',
- width: 150
- },
- {
- prop: 'level',
- label: '层级'
- },
- {
- prop: 'brandNum',
- label: '牌号'
- },
- {
- prop: 'modelType',
- label: '型号',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'specification',
- label: '规格',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'rootCategoryLevelId',
- slot: 'rootCategoryLevelId',
- label: '物品分类',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'dosage',
- slot: 'dosage',
- label: '用量',
- width: 100,
- headerSlot: 'dosageHead'
- },
- {
- prop: 'measuringUnit',
- label: '计量单位',
- showOverflowTooltip: true
- },
- {
- prop: 'produceType',
- slot: 'produceType',
- label: '生产类型',
- width: 260
- },
- {
- prop: 'attributeType',
- slot: 'attributeType',
- label: '存货类型',
- width: 260
- },
- {
- prop: 'componentAttribute',
- slot: 'componentAttribute',
- label: '属性类型',
- width: 260
- },
- {
- prop: 'materielDesignation',
- slot: 'materielDesignation',
- label: '物料代号',
- width: 150
- },
- {
- prop: 'supplierId',
- slot: 'supplierId',
- label: '供应商',
- width: 150
- },
- {
- prop: 'factories',
- slot: 'factories',
- label: '生产厂家',
- width: 180
- },
- {
- prop: 'resourceBomVersion',
- slot: 'resourceBomVersion',
- label: '来源版本',
- width: 180
- },
- {
- prop: 'versions',
- slot: 'versions',
- label: '版本'
- },
- {
- prop: 'status ',
- label: '状态',
- formatter: (row) => {
- return this.statusOpt[+row.status];
- }
- },
- {
- prop: 'createName',
- label: '创建人',
- showOverflowTooltip: true
- },
- {
- prop: 'createTime',
- label: '创建日期',
- width: 160
- },
- {
- action: 'action',
- slot: 'action',
- fixed: 'right',
- label: '操作',
- width: 120
- }
- ],
- statusOpt: {
- '': '全部',
- 0: '草稿',
- 1: '已发布'
- },
- dictList: [
- {
- label: '加工',
- value: 1
- },
- {
- label: '装配',
- value: 3
- }
- ],
- attributeList: [
- // {
- // label: '总装',
- // value: 1
- // },
- // {
- // label: '部件',
- // value: 2
- // },
- // {
- // label: '零件',
- // value: 3
- // },
- // {
- // label: '原材料',
- // value: 4
- // }
- ],
- sxtList: [
- {
- label: '自制件',
- value: 1
- },
- {
- label: '采购件',
- value: 2
- },
- {
- label: '外协件',
- value: 3
- },
- {
- label: '受托件',
- value: 4
- }
- ],
- rootCategoryLevelIdList: [
- {
- label: '产品',
- value: 9
- },
- {
- label: '物料',
- value: 1
- },
- {
- label: '生产设备',
- value: 4
- },
- {
- label: '模具',
- value: 5
- },
- {
- label: '备品备件',
- value: 6
- },
- {
- label: '零部件',
- value: 3
- },
- {
- label: '舟皿',
- value: 8
- },
- {
- label: '消耗材料',
- value: 10
- },
- {
- label: '包装材料',
- value: 13
- },
- {
- label: '生产辅助设备',
- value: 14
- },
- {
- label: '仪表计量设备',
- value: 15
- },
- {
- label: '会计科目',
- value: 23
- },
- {
- label: '周转盘',
- value: 26
- },
- {
- label: '废品',
- value: 28
- },
- {
- label: '周转车',
- value: 7
- }
- ],
- isList: false,
- isId: null,
- tableKey: '',
- list: [], //表格数据
- listTow: [],
- newList: [],
- gysList: [],
- sccjList: [],
- newTreeId: null,
- responsesList: []
- // dictList: []
- };
- },
- created() {
- this.getAttriButeList('inventory_type');
- // this.getDictList('productionType');
- // this.getZeroPartPros('zeroPartPros');
- this.getContactList();
- },
- mounted() {},
- props: {
- attributeData: {
- type: Object,
- default: {}
- },
- isWt: {
- type: Boolean,
- default: false
- },
- treeId: {
- type: String,
- default: ''
- },
- isTemp: {
- type: Number,
- default: 0
- }
- },
- watch: {
- treeId: {
- handler(val) {
- this.newTreeId = val;
- },
- deep: true,
- immediate: true
- },
- 'attributeData.id': {
- handler(val) {
- this.$nextTick(() => {
- console.log(val, '66666666');
- this.reload();
- });
- },
- deep: true,
- immediate: true
- },
- data: {
- handler(val) {
- console.log(val);
- // this.$nextTick(() => {
- // this.reload();
- // });
- },
- deep: true,
- immediate: true
- }
- },
- // computed: {
- // processedItems() {
- // return this.list.map(item => {
- // // 处理逻辑
- // console.log(item);
- // // return processedItem;
- // });
- // }
- // },
- mounted() {},
- methods: {
- attributeTypeText(v) {
- if (v) {
- let a = this.attributeList.find((item) => item.value == v);
- return a.label;
- }
- },
- async getAttriButeList(code) {
- let { data: res } = await getByCode(code);
- this.attributeList = res.map((item) => {
- let values = Object.keys(item);
- return {
- value: Number(values[0]),
- label: item[values[0]]
- };
- });
- },
- rootCategoryLevelIdText(v) {
- console.log(v, '111111');
- console.log(
- this.rootCategoryLevelIdList,
- 'this.rootCategoryLevelIdList'
- );
- if (v) {
- let a = this.rootCategoryLevelIdList.find((item) => item.value == v);
- return a ? a.label : '';
- }
- },
- factoriesFn(code) {
- this.isId = code;
- this.$refs.clientSelectionRef.open();
- },
- // 选择工厂
- confirmSelection(obj) {
- let list = this.$refs.table.getData();
- list.map((v) => {
- if (v.code == this.isId) {
- v.factories = obj.name;
- }
- });
- console.log(list, 'list');
- // arr.factories = obj.name;
- this.$nextTick(() => {
- this.list = [...list];
- this.listTow = JSON.parse(JSON.stringify(this.list));
- this.$refs.table.setData(this.list);
- this.updateFn();
- this.tableKey = Date.now();
- });
- this.$forceUpdate();
- },
- updateFn(list) {
- this.isList = true;
- this.reload();
- setTimeout(() => {
- this.isList = false;
- }, 1000);
- },
- /* 表格数据源 */
- datasource({ where, page, limit }) {
- // let that = this;
- // console.log(getBomPageCategoryId({
- // ...where,
- // pageNum: page,
- // size: limit,
- // id: this.attributeData.id,
- // bomType: this.attributeData.bomType
- // }));
- // return new Promise((resolve, reject) => {
- // getBomPageCategoryId({
- // ...where,
- // pageNum: page,
- // size: limit,
- // id: that.attributeData.id,
- // bomType: that.attributeData.bomType
- // }).then((res) => {
- // console.log(res, '111111111111');
- // if(res.list && res.list.length ){
- // const arrays = []
- // res.list.map((item) => {
- // arrays.push(item.categoryId);
- // });
- // that.getResourceBomVersionListFn(arrays).then(v => {
- // v.map(element => {
- // res.list.map((item2, i) => {
- // if (element.categoryId == item2.id) {
- // item2.resourceBomVersionList.push(element);
- // }
- // item2.resourceBomVersion = item2.resourceBomVersionList[0].versions;
- // item2.resourceBomId = item2.resourceBomVersionList[0].resourceBomId;
- // // item2.id ="";
- // })
- // })
- // this.$nextTick(() => {
- // resolve(res);
- // })
- // })
- // }
- // })
- // .catch((err) => {
- // reject(err);
- // });
- // });
- let data = getBomPageCategoryId({
- ...where,
- pageNum: page,
- size: limit,
- id: this.attributeData.id,
- bomType: this.attributeData.bomType
- });
- if (this.isList) {
- data = this.listTow;
- }
- console.log(data, 'data');
- return data;
- },
- /* 刷新表格 */
- reload(where) {
- this.$refs.table.reload({ where });
- },
- async getDictList(code) {
- let { data: res } = await getByCode(code);
- this.dictList = res.map((item) => {
- let values = Object.keys(item);
- return {
- value: Number(values[0]),
- label: item[values[0]]
- };
- });
- },
- // async getZeroPartPros(code) {
- // let { data: res } = await getByCode(code);
- // let sxtList = res.map((item) => {
- // let values = Object.keys(item);
- // return {
- // value: Number(values[0]),
- // label: item[values[0]]
- // };
- // });
- // this.$nextTick(() => {
- // this.$set(this, 'sxtList', sxtList);
- // });
- // },
- getContactList() {
- let param = {
- pageNum: 1,
- type: 2,
- size: -1,
- status: 1
- };
- contactList(param).then((res) => {
- console.log(res, 'res11111111111');
- this.gysList = res.list;
- });
- },
- handleAdd() {
- // // 打开树形对话框
- // this.$refs.bomTreeDialogRef.open(
- // this.attributeData.bomType,
- // this.attributeData.versions,
- // this.attributeData.categoryId,
- // this.newTreeId,
- // this.isTemp
- // );
- let _list = this.$refs.table.getData() ?? [];
- this.$refs.standardOutputRefs.open(_list);
- },
- // 勾选
- async chooseStandardList(data) {
- const that = this;
- const arrays = [];
- data.map((m) => {
- m.parentId = this.newTreeId;
- m.createTime = '';
- m.bomType = this.attributeData.bomType;
- m.level = Number(this.attributeData.level) + 1;
- m.categoryCode = m.code;
- m.code = '';
- m.versions = this.attributeData.versions;
- m.categoryId = m.id;
- // m.dosage = 1;
- m.componentAttribute = m.componentAttribute;
- m.rootCategoryLevelId = m.categoryLevelPathIdParent;
- m.resourceBomVersionList = [];
- arrays.push(m.id);
- });
- this.getResourceBomVersionListFn(arrays).then((v) => {
- if (v.length) {
- v.map((element) => {
- data.map((item2, i) => {
- if (element.categoryId == item2.id) {
- item2.resourceBomVersionList.push(element);
- }
- if (item2.resourceBomVersionList.length) {
- item2.resourceBomVersion =
- item2.resourceBomVersionList[0].versions;
- item2.resourceBomId =
- item2.resourceBomVersionList[0].resourceBomId;
- }
- setTimeout(() => {
- item2.id = '';
- }, 100);
- });
- });
- }
- this.$nextTick(() => {
- data.map((v) => {
- v.id = '';
- });
- this.list = [...data, ...this.$refs.table.getData()];
- this.$refs.table._data.tableTotal = this.list.length;
- this.$refs.table.setData(this.list);
- });
- });
- // this.$nextTick(() => {
- // this.list = [...data, ...this.$refs.table.getData()];
- // console.log(this.list,'9999999999');
- // // this.$refs.table.setData(this.list);
- // console.log(this.$refs.table._data,'this.$refs.table');
- // // this.$refs.table._data.tableData = [];
- // //
- // // this.$set(this.$refs.table._data,"tableData",this.list);
- // // this.bomClose();
- // });
- },
- resourceBomVersionFn(e, row) {
- let arr = row.resourceBomVersionList.find((item) => item.versions == e);
- row.resourceBomVersion = arr.versions;
- row.resourceBomId = arr.resourceBomId;
- this.$forceUpdate();
- console.log(row);
- },
- async getResourceBomVersionListFn(id) {
- return new Promise((resolve, reject) => {
- sourceBomVersion({
- bomType: this.attributeData.bomType,
- categoryIds: id
- }).then((res) => {
- resolve(res.data);
- });
- });
- },
- bomClose() {
- this.$nextTick(() => {
- this.$refs.table.reload({
- pageNum: 1
- });
- });
- },
- handleDel(row, i) {
- this.$confirm('是否确认删除?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- })
- .then(() => {
- if (row.id) {
- deleteBomTreeList([row.id]).then((msg) => {
- this.$message.success('删除' + msg);
- this.$refs.table.reload({
- pageNum: 1
- });
- });
- } else {
- let _list = this.$refs.table.getData() ?? [];
- _list.splice(i, 1);
- // _list = _list.filter((item) => item.id !== row.id);
- this.$refs.table.setData(_list);
- }
- })
- .catch(() => {});
- },
- handleSave() {
- let _list = this.$refs.table.getData() ?? [];
- if (_list.length == 0) {
- return this.$message.info('明细表最少有一条数据');
- }
- let list = JSON.parse(JSON.stringify(_list));
- console.log(list, 'list');
- const arr = list.every((v) => {
- return v.dosage && v.quantity !== '';
- });
- if (!arr) {
- return this.$message.info('用量不能为空');
- }
- // console.log(list);
- // return
- updateBatchBOM(list).then((res) => {
- if (res) {
- this.$message.success('保存成功');
- this.reload();
- // this.$refs.table.reload({
- // pageNum: 1
- // });
- }
- });
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .ele-body {
- height: 100%;
- ::v-deep .el-card {
- height: 100%;
- .el-card__body {
- height: 100%;
- display: flex;
- flex-direction: column;
- .dict-table {
- flex: 1;
- overflow: hidden;
- display: flex;
- flex-direction: column;
- .el-table {
- flex: 1;
- overflow-y: auto;
- }
- }
- }
- }
- }
- .toolbar_box {
- display: flex;
- justify-content: space-between;
- align-items: center;
- .toolbar_box_right {
- display: flex;
- align-items: center;
- justify-content: center;
- margin-right: 10px;
- > span {
- width: 150px;
- }
- > div {
- margin-left: 10px;
- }
- }
- }
- </style>
|