| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874 |
- <template>
- <div>
- <!-- <el-card shadow="never" v-loading="loading"> -->
- <!-- <search @search="reload" ref="searchRef"> </search> -->
- <div>
- <el-tabs type="card" v-model="activeName" @tab-click="handleClick">
- <el-tab-pane label="委外" name="1"></el-tab-pane>
- <el-tab-pane label="请托" name="2"></el-tab-pane>
- </el-tabs>
- </div>
- <!-- 数据表格 -->
- <ele-pro-table
- ref="table"
- :columns="columns"
- :datasource="dataList"
- cache-key="workOrderTable"
- max-height="61vh"
- :need-page="false"
- v-if="activeName == '1'"
- >
- <template v-slot:toolbar>
- <div class="rx-sc">
- <div class="c_title">委外记录 </div>
- <el-button
- type="primary"
- size="mini"
- style="margin: 0 5px"
- @click="handleAdd"
- >新增</el-button
- >
- </div>
- </template>
- <!-- <template v-slot:code="{ row }">
- <el-link
- type="primary"
- :underline="false"
- @click="handleDetails(row)"
- >{{ row.code }}</el-link
- >
- </template> -->
- <template v-slot:totalWeight="{ row }">
- <div v-if="row.totalWeight">{{ row.totalWeight }}</div>
- <div v-else>无</div>
- </template>
- <template v-slot:requireDeliveryTime="{ row }">
- <span v-if="row.deliveryMethod == 1">{{
- row.requireDeliveryTime
- }}</span>
- <el-link
- v-if="row.deliveryMethod == 2"
- type="primary"
- :underline="false"
- @click.native="handleMethod(row)"
- >分批时间</el-link
- >
- </template>
- <template v-slot:type="{ row }">
- <div v-if="row.type == 1">采购委外</div>
- <div v-if="row.type == 2">直接发货委外</div>
- <div v-if="row.type == 3">无采购委外</div>
- <div v-if="row.type == 4">带料委外</div>
- <div v-if="row.type == 5">不带料委外</div>
- </template>
- <template v-slot:status="{ row }">
- <el-tag>{{
- row.status == 0 ? '未提交' : row.status == 1 ? '已提交' : '已发布'
- }}</el-tag>
- </template>
- <template v-slot:approvalStatus="{ row }">
- <el-tag v-if="row.approvalStatus == 0">未提交</el-tag>
- <el-tag v-if="row.approvalStatus == 1" type="warning">审核中</el-tag>
- <el-tag v-if="row.approvalStatus == 2" type="success">审核通过</el-tag>
- <el-tag v-if="row.approvalStatus == 3" type="danger">审核不通过</el-tag>
- </template>
- <!-- <template v-slot:status="{ row }">
- <el-tag>{{
- row.status == 0 ? '未提交' : row.status == 1 ? '已提交' : '已发布'
- }}</el-tag>
- </template> -->
- <template v-slot:outsourceScene="{ row }">
- <span>{{ row.outsourceScene | outsourceSceneText }}</span>
- </template>
- <template v-slot:technicalDrawings="{ row }">
- <div v-if="row.technicalDrawings && row.technicalDrawings?.length">
- <el-link
- v-for="link in row.technicalDrawings"
- :key="link.id"
- type="primary"
- :underline="false"
- @click="downloadFile(link)"
- >
- {{ link.name }}</el-link
- >
- </div>
- </template>
- <template v-slot:files="{ row }">
- <div v-if="row.files && row.files?.length">
- <el-link
- v-for="link in row.files"
- :key="link.id"
- type="primary"
- :underline="false"
- @click="downloadFile(link)"
- >
- {{ link.name }}</el-link
- >
- </div>
- </template>
- <template v-slot:action="{ row }">
- <el-link type="primary" :underline="false" @click="handleDetails(row)">
- 详情
- </el-link>
- <!-- <el-link
- type="primary"
- v-if="row.status == 1"
- :underline="false"
- @click="handleFlow(row)"
- >
- 流程
- </el-link> -->
- <!--
- <el-link
- type="primary"
- v-if="row.status != 1"
- :underline="false"
- @click="handleRelease(row)"
- >
- 提交
- </el-link> -->
- </template>
- </ele-pro-table>
- <!-- </el-card> -->
- <ele-pro-table
- ref="tableTwo"
- :columns="colunms1"
- :datasource="pleaseData"
- cache-key="workOrderTable"
- max-height="61vh"
- :need-page="false"
- v-if="activeName == '2'"
- >
- <template v-slot:toolbar>
- <div class="rx-sc">
- <div class="c_title">请托记录 </div>
- <el-button
- type="primary"
- size="mini"
- style="margin: 0 5px"
- @click="handleAdd"
- >新增</el-button
- >
- </div>
- </template>
- <template v-slot:type="{ row }">
- <span> {{ getDictValue('请托类型', row.type + '') }}</span>
- </template>
- <template v-slot:status="{ row }">
- <el-tag>{{
- row.status == 0 ? '未提交' : row.status == 1 ? '已提交' : '已发布'
- }}</el-tag>
- </template>
- <template v-slot:sendStatus="{ row }">
- <el-tag v-if="row.sendStatus == 0">{{ '未发货' }}</el-tag>
- <el-tag v-else-if="row.sendStatus == 1">{{ '已发货' }}</el-tag>
- <el-tag v-else-if="row.sendStatus == 2">{{ '已收货' }}</el-tag>
- <span v-else>无</span>
- </template>
- <template v-slot:approvalStatus="{ row }">
- <el-tag v-if="row.approvalStatus == 0">未提交</el-tag>
- <el-tag v-if="row.approvalStatus == 1" type="warning">审核中</el-tag>
- <el-tag v-if="row.approvalStatus == 2" type="success">审核通过</el-tag>
- <el-tag v-if="row.approvalStatus == 3" type="danger">审核不通过</el-tag>
- </template>
- <template v-slot:code="{ row }">
- <el-link type="primary" :underline="false" @click="open('detail', row)">
- {{ row.code }}
- </el-link>
- </template>
- <template v-slot:action="{ row }">
- <el-link
- type="primary"
- v-if="
- row.status == 0 &&
- row.approvalStatus != 1 &&
- row.approvalStatus != 2
- "
- :underline="false"
- @click="open('edit', row)"
- >
- 编辑
- </el-link>
- <el-popconfirm
- class="ele-action"
- v-if="
- row.status == 0 &&
- row.approvalStatus != 1 &&
- row.approvalStatus != 2
- "
- title="确定要删除吗?"
- @confirm="remove([row.id])"
- >
- <template v-slot:reference>
- <el-link type="danger" :underline="false"> 删除 </el-link>
- </template>
- </el-popconfirm>
- <el-link
- type="primary"
- :underline="false"
- @click="submit(row)"
- v-if="
- row.status == 0 &&
- row.approvalStatus != 1 &&
- row.approvalStatus != 2
- "
- >
- 提交
- </el-link>
- <el-link
- type="primary"
- :underline="false"
- @click="sendGoods(row)"
- v-if="
- row.approvalStatus == 2 && (row.sendStatus == 0 || !row.sendStatus)
- "
- >
- 发货
- </el-link>
- <el-link
- type="primary"
- :underline="false"
- @click="handleFlow(row)"
- v-if="row.approvalStatus == 1 || row.approvalStatus == 2"
- >
- 流程
- </el-link>
- </template>
- </ele-pro-table>
- <flow ref="flowRef"></flow>
- <release ref="releaseRef" @refreshs="releaseRefresh"></release>
- <detail ref="detailsRef"></detail>
- <timeDialog ref="timeDialogRef"></timeDialog>
- </div>
- </template>
- <script>
- import { getList } from '@/api/outsourcing/index.js';
- import flow from '../../../outsourcing/components/flow.vue';
- import search from '../../../outsourcing/components/search.vue';
- import release from '../../../outsourcing/components/release.vue';
- import Detail from '../../../outsourcing/components/details.vue';
- import dictMixins from '@/mixins/dictMixins';
- import timeDialog from '../../../outsourcing/components/timeDialog.vue';
- import { getFile } from '@/api/system/file';
- import { getList as getPleaseListData } from '@/api/entrust/index';
- import { getByCode } from '@/api/system/dictionary-data';
- export default {
- components: {
- search,
- flow,
- release,
- Detail,
- timeDialog
- },
- props: {
- chooseType: {
- type: String,
- default: '1'
- }
- },
- mixins: [dictMixins],
- data() {
- return {
- loading: false,
- code: '',
- dataList: [],
- workOrderCode: '',
- activeName: this.chooseType,
- pleaseData: [],
- pleaseTypeList: []
- };
- },
- filters: {
- outsourceSceneText(text) {
- switch (text) {
- case 1:
- return '首工序委外';
- case 2:
- return '单工序';
- case 3:
- return '多工序';
- case 4:
- return '首工序及多工序';
- default:
- return '';
- }
- }
- },
- computed: {
- // 表格列配置
- columns() {
- return [
- {
- columnKey: 'index',
- label: '序号',
- type: 'index',
- width: 55,
- align: 'center',
- showOverflowTooltip: true,
- fixed: 'left',
- showOverflowTooltip: true
- },
- {
- prop: 'batchNo',
- label: '批次号',
- align: 'center',
- minWidth: 100,
- showOverflowTooltip: true
- },
- {
- slot: 'code',
- prop: 'code',
- label: '委外单编码',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'name',
- label: '委外单名称',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'workOrderCode',
- label: '工单编码',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'taskName',
- label: '委外发起工序',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'taskNames',
- label: '委外工序',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'totalCount',
- label: '委外数量',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'totalWeight',
- slot: 'totalWeight',
- label: '委外重量',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- slot: 'type',
- label: '委外类型',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'outsourceScene',
- slot: 'outsourceScene',
- label: '委外场景',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'supplierName',
- label: '委外单位',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- slot: 'requireDeliveryTime',
- label: '预计到货日期',
- align: 'center',
- width: 100,
- showOverflowTooltip: true
- },
- // {
- // prop: 'produceRoutingName',
- // label: '工艺路线',
- // align: 'center'
- // },
- {
- prop: 'warehouseName',
- label: '仓库',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'createTime',
- label: '创建时间',
- align: 'center',
- width: 100,
- showOverflowTooltip: true
- },
- {
- slot: 'status',
- label: '单据状态',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- slot: 'approvalStatus',
- label: '审核状态',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- label: '图片附件',
- slot: 'technicalDrawings',
- action: 'technicalDrawings',
- minWidth: 100,
- showOverflowTooltip: true
- },
- {
- label: '附件',
- slot: 'files',
- action: 'files',
- minWidth: 100,
- showOverflowTooltip: true
- },
- {
- prop: 'remark',
- label: '备注',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- columnKey: 'action',
- label: '操作',
- width: 140,
- align: 'center',
- resizable: false,
- fixed: 'right',
- slot: 'action',
- showOverflowTooltip: true
- }
- ];
- },
- colunms1() {
- return [
- {
- columnKey: 'selection',
- type: 'selection',
- width: 45,
- align: 'center',
- fixed: 'left'
- },
- {
- columnKey: 'index',
- label: '序号',
- type: 'index',
- width: 55,
- align: 'center',
- showOverflowTooltip: true,
- fixed: 'left'
- },
- {
- prop: 'type',
- label: '类型',
- width: 55,
- align: 'center',
- showOverflowTooltip: true,
- slot: 'type'
- },
- {
- prop: 'priority',
- label: '紧急程度',
- width: 90,
- align: 'center',
- showOverflowTooltip: true,
- formatter: (row, column, cellValue) => {
- return cellValue == 1 ? '一般' : cellValue == 2 ? '紧急' : '';
- }
- },
- {
- prop: 'name',
- label: '名称',
- width: 130,
- showOverflowTooltip: true,
- align: 'center'
- },
- {
- prop: 'code',
- slot: 'code',
- label: '编码',
- width: 160,
- showOverflowTooltip: true,
- align: 'center'
- },
- {
- prop: 'applyFactoriesName',
- label: '所属工厂',
- align: 'center',
- width: 130,
- showOverflowTooltip: true
- },
- {
- prop: 'applyDeptName',
- label: '请托部门',
- align: 'center',
- width: 120,
- showOverflowTooltip: true
- },
- {
- prop: 'createUserName',
- label: '请托人',
- align: 'center',
- width: 80,
- showOverflowTooltip: true
- },
- {
- prop: 'totalCount',
- label: '请托数量',
- align: 'center',
- width: 130,
- showOverflowTooltip: true
- },
- {
- prop: 'beEntrustedFactoriesName',
- label: '受托工厂',
- align: 'center',
- width: 130,
- showOverflowTooltip: true
- },
- {
- prop: 'beEntrustedDeptName',
- label: '受托部门',
- align: 'center',
- width: 120,
- showOverflowTooltip: true
- },
- {
- prop: 'productionPlanCode',
- label: '计划编号',
- align: 'center',
- minWidth: 110,
- showOverflowTooltip: true
- },
- {
- prop: 'produceRoutingName',
- label: '工艺路线',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'bomType',
- label: 'BOM分类',
- align: 'center',
- width: 100,
- showOverflowTooltip: true,
- formatter: (row) => {
- if (row.bomType == 1) {
- return '产品(PBOM)';
- }
- if (row.bomType == 2) {
- return '加工(MBOM)';
- }
- if (row.bomType == 3) {
- return '装配(ABOM)';
- }
- return '';
- }
- },
- {
- prop: 'bomCategoryVersions',
- label: 'BOM版本',
- align: 'center',
- width: 100,
- showOverflowTooltip: true,
- formatter: (row) => {
- if (row.bomCategoryName) {
- return `${row.bomCategoryName} (V${row.bomCategoryVersions}.0)`;
- }
- return '';
- }
- },
- {
- prop: 'brandNum',
- label: '牌号',
- align: 'center',
- minWidth: 110,
- showOverflowTooltip: true
- },
- {
- prop: 'batchNo',
- label: '批次号',
- align: 'center',
- minWidth: 110,
- showOverflowTooltip: true
- },
- {
- prop: 'planStartTime',
- label: '计划开始时间',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 130,
- sortable: true
- },
- {
- prop: 'planCompleteTime',
- label: '计划结束时间',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 130,
- sortable: true
- },
- {
- prop: 'specification',
- label: '规格',
- align: 'center',
- minWidth: 110,
- showOverflowTooltip: true
- },
- {
- prop: 'modelType',
- label: '型号',
- align: 'center',
- minWidth: 110,
- showOverflowTooltip: true
- },
- {
- prop: 'sendStatus',
- slot: 'sendStatus',
- label: '发货状态',
- align: 'center',
- minWidth: 110,
- showOverflowTooltip: true
- },
- {
- prop: 'workOrderCode',
- label: '生产工单号',
- slot: 'workOrderCode',
- align: 'center',
- minWidth: 110,
- showOverflowTooltip: true
- },
- {
- prop: 'planDeliveryTime',
- label: '完成时间',
- align: 'center',
- width: 150,
- showOverflowTooltip: true
- },
- {
- prop: 'createTime',
- label: '创建时间',
- align: 'center',
- width: 150,
- showOverflowTooltip: true
- },
- {
- prop: 'describes',
- label: '需求描述',
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'status',
- label: '状态',
- align: 'center',
- slot: 'status',
- width: 100
- },
- {
- prop: 'approvalStatus',
- label: '审批状态',
- align: 'center',
- slot: 'approvalStatus',
- width: 100
- },
- {
- columnKey: 'action',
- label: '操作',
- width: 180,
- align: 'center',
- resizable: false,
- fixed: 'right',
- slot: 'action',
- showOverflowTooltip: true
- }
- ];
- },
- clientEnvironmentId() {
- return this.$store.state.user.info.clientEnvironmentId;
- }
- },
- created() {
- this.requestDict('请托类型');
- },
- mounted() {
- this.getPleaseTypeList();
- },
- methods: {
- statusFormatter(status) {
- const obj = this.statusOpt.find((i) => i.value == status);
- return obj && obj.label;
- },
- /* 表格数据源 */
- // datasource() {
- // return getList({
- // pageNum: 1,
- // size: -1,
- // workOrderCode: this.code
- // });
- // },
- async getPleaseTypeList() {
- let res = await getByCode('entrust_type');
- if (res?.code == 0) {
- let list = res.data.map((item) => {
- let key = Object.keys(item)[0];
- return { value: key, label: item[key] };
- });
- this.pleaseTypeList = list;
- }
- },
- getPleaseType(item) {
- const data = this.pleaseTypeList.filter((it) => it.value == item.type);
- return data.length != 0 ? data[0].label : '';
- },
- async getDataList(code) {
- this.workOrderCode = code;
- await getList({
- pageNum: 1,
- size: -1,
- workOrderCode: this.workOrderCode
- }).then((res) => {
- console.log(res);
- this.dataList = res.list || [];
- // this.$forceUpdate();
- });
- },
- async getPleaseData(code) {
- console.log(code, '22000');
- this.workOrderCode = code;
- await getPleaseListData({
- pageNum: 1,
- size: -1,
- workOrderCode: this.workOrderCode
- }).then((res) => {
- this.pleaseData = res.list || [];
- });
- },
- downloadFile(file) {
- getFile({ objectName: file.storePath }, file.name);
- },
- handleFlow(row) {
- if (!row.processInstanceId) {
- return this.$message.warning('暂无流程图');
- }
- this.$refs.flowRef.open(row.processInstanceId);
- },
- handleDetails(row) {
- this.$refs.detailsRef.open(row);
- },
- handleMethod(row) {
- this.$refs.timeDialogRef.open(row, 'details');
- },
- handleRelease(row) {
- this.$refs.releaseRef.open(row);
- },
- handleClick(tab) {
- this.activeName = tab._props.name;
- if (this.activeName == '1') {
- this.getDataList(this.workOrderCode);
- } else if (this.activeName == '2') {
- this.getPleaseData(this.workOrderCode);
- }
- },
- openPleaseDetail() {},
- /* 刷新表格 */
- reload() {
- this.$nextTick(() => {
- console.log('88');
- // this.getList(this.workListIds);
- });
- },
- refresh() {
- this.$nextTick(() => {
- console.log('88');
- // this.getList(this.workListIds);
- });
- // this.getList(this.workListIds);
- },
- handleAdd() {
- // this.$refs.releaseRef.open();
- this.$emit('outsourcingAdd', 'pick', this.activeName);
- },
- releaseRefresh() {
- this.$refs.table.reload();
- }
- }
- };
- </script>
- <style lang="scss" scoped></style>
|