| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428 |
- <template>
- <div v-if="visible" class="right-page">
- <!-- 内容区 -->
- <div class="page-body">
- <ele-pro-table
- height="calc(80vh - 160px)"
- ref="fileTable"
- :columns="jobColumns1"
- :datasource="workList"
- v-show="rightMode == 'list'"
- >
- <template v-slot:action="{ row }">
- <el-link type="primary" @click="fileDetails(row)">详情</el-link>
- </template>
- </ele-pro-table>
- <fileBrowse
- ref="browseRef"
- v-if="rightMode == 'detail'"
- @close="closeDetail"
- />
- </div>
- <pickingList
- isType="pick"
- ref="pickingListRef"
- @allSelection="allSelection"
- />
- </div>
- </template>
- <script>
- import pickingList from './pickingList.vue';
- import fileBrowse from './newFileBrowse.vue';
- import {
- workorderList,
- getCode,
- craftFiles,
- filePageAPI,
- fileReleaseAPI
- } from '@/api/produce/workOrder';
- import { typeName } from '../common.js';
- import { batchSave } from '@/api/produce/picking';
- export default {
- components: {
- pickingList,
- fileBrowse
- },
- props: {
- workListIds: {
- type: Array,
- default() {
- return [];
- }
- },
- taskId: {
- type: String,
- default() {
- return null;
- }
- }
- },
- data() {
- return {
- visible: false,
- workList: [],
- rules: {},
- pickCode: null,
- pickName: null,
- jobColumns1: [
- {
- label: '编码',
- prop: 'code',
- width: 180,
- align: 'center',
- showOverflowTooltip: true
- },
- {
- prop: 'name',
- label: '文档名称',
- align: 'center',
- slot: 'name',
- showOverflowTooltip: true,
- minWidth: 200
- },
- {
- prop: 'storagePath',
- label: '文件名称',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 200,
- formatter: (_row, _column, cellValue) => {
- return cellValue[0]?.name;
- }
- },
- {
- prop: 'version',
- label: '版本',
- align: 'center',
- showOverflowTooltip: true,
- minWidth: 100
- },
- {
- prop: 'createTime',
- label: '创建时间',
- showOverflowTooltip: true,
- align: 'center',
- minWidth: 110
- },
- {
- columnKey: 'action',
- label: '操作',
- width: 100,
- align: 'center',
- resizable: false,
- slot: 'action',
- fixed: 'right',
- showOverflowTooltip: true
- }
- ],
- typeName,
- tableRules: {},
- rightMode: 'list',
- currentRow: null,
- itemData: null,
- type: 1
- };
- },
- computed: {
- taskObj() {
- return this.$store.state.user.taskObj;
- }
- },
- watch: {},
- methods: {
- // datasource({ page, where, limit }) {
- // let req = {
- // "taskId": this.taskId,
- // "workOrderId": this.workListIds[0]
- // }
- // return craftFiles({
- // ...req,
- // pageNum: page,
- // size: limit,
- // });
- // },
- open(req) {
- this.rightMode = 'list';
- this.currentRow = null;
- this.itemData = req;
- this.type = 1;
- this.workList = [];
- craftFiles(req).then((res) => {
- let _ids = [];
- if (res.length != 0) {
- res.forEach((e) => {
- _ids.push(e.id);
- });
- const ids = _ids.join(',');
- this.getFilepProcess(ids);
- }
- });
- this.visible = true;
- },
- openTwo(req) {
- this.rightMode = 'list';
- this.currentRow = null;
- this.itemData = req;
- this.type = 2;
- this.workList = [];
- fileReleaseAPI({
- fileType: 0,
- isQueryAll: 1,
- jobNumber: '',
- lcyStatus: '3',
- loginName: '',
- name: req.productCode,
- pageNum: 1,
- size: 10
- }).then((res) => {
- this.workList = res.list;
- });
- this.visible = true;
- },
- async getFilepProcess(ids) {
- await filePageAPI({
- ids: "'" + ids + "'"
- }).then((res) => {
- this.workList = res;
- });
- },
- fileDetails(row) {
- this.currentRow = row;
- this.rightMode = 'detail';
- this.$nextTick(() => {
- this.$refs.browseRef.setFileUrl(row);
- });
- },
- closeDetail() {
- this.rightMode = 'list';
- if (this.type == 1) {
- this.open(this.itemData);
- } else if (this.type == 2) {
- this.openTwo(this.itemData);
- }
- },
- async getOrderCode() {
- this.pickCode = await getCode('pick_order_code');
- },
- removeItem(idx, index) {
- this.workList[idx].pickList.splice(index, 1);
- },
- handleClose() {
- this.visible = false;
- this.$emit('close', false);
- },
- getList() {
- console.log(123);
- },
- openPicking(id, item) {
- this.$refs.pickingListRef.open(id, item);
- },
- allSelection(id, list) {
- this.workList.forEach((e) => {
- if (e.id == id) {
- e.pickList = list;
- this.$forceUpdate();
- }
- });
- },
- save() {
- console.log(this.workList);
- if (this.workList.length > 0) {
- let bol;
- let _i;
- bol = this.workList.every((e, i) => {
- _i = i;
- return (
- Object.prototype.hasOwnProperty.call(e, 'pickList') &&
- e.pickList.length > 0
- );
- });
- if (!bol) {
- this.$message.warning(
- `生成工单${this.workList[_i].code}领料不能为空`
- );
- return false;
- }
- }
- if (this.workList.length > 0) {
- let name;
- let bol2;
- let _i;
- this.workList.forEach((e, i) => {
- _i = i;
- console.log(e.pickList);
- bol2 = e.pickList.every((y) => {
- name = y.name;
- return (
- Object.prototype.hasOwnProperty.call(y, 'demandQuantity') &&
- Number(y.demandQuantity) > 0
- );
- });
- });
- if (!bol2) {
- this.$message.warning(
- `${this.workList[_i].code}的${name}数量不能为空`
- );
- return false;
- }
- }
- let _arr = [];
- _arr = this.workList.map((m) => {
- m.instanceList = [];
- m.bomDetailDTOSList = [];
- m.pickList.forEach((e) => {
- if (
- Object.prototype.hasOwnProperty.call(e, 'isBom') &&
- e.isBom == 1
- ) {
- m.bomDetailDTOSList.push(e);
- } else {
- m.instanceList.push(e);
- }
- });
- m.workOrderId = m.id;
- delete m.id;
- return {
- ...m
- };
- });
- let param = {
- allPickList: _arr,
- pickName: this.pickName,
- pickCode: this.pickCode
- };
- batchSave(param).then((res) => {
- this.$message.success('领料成功');
- this.$emit('close', true);
- });
- }
- },
- created() {
- this.getList();
- }
- };
- </script>
- <style lang="scss" scoped>
- .table_content {
- margin-bottom: 10px;
- }
- .tableZ_box {
- border: 1px solid #e3e5e5;
- margin: 6px 0;
- &:last-child {
- border-bottom: none;
- }
- .row {
- width: 100%;
- display: flex;
- }
- .col {
- width: calc(100% / 5);
- display: flex;
- align-items: center;
- min-width: 200px;
- min-height: 32px;
- border-bottom: 1px solid #e3e5e5;
- border-right: 1px solid #e3e5e5;
- &:last-child {
- border-right: none;
- }
- .name {
- display: flex;
- align-items: center;
- padding: 4px;
- width: 80px;
- height: 100%;
- background-color: #d0e4d5;
- color: #000;
- }
- .content {
- padding: 4px 6px;
- color: #000;
- }
- }
- .pd6 {
- padding: 0 6px;
- }
- }
- .right-page {
- height: 100%;
- display: flex;
- flex-direction: column;
- min-height: 0;
- }
- .page-body {
- flex: 1;
- min-height: 0;
- overflow: hidden;
- }
- .page-body .pro-table {
- height: 100%;
- }
- .page-footer {
- flex-shrink: 0;
- padding: 10px 0;
- border-top: 1px solid #ebeef5;
- text-align: right;
- background: #fff;
- }
- </style>
- <style>
- :v-deep .el-form-item__error {
- bottom: -6px !important;
- }
- </style>
|