| | |
| | | } |
| | | } |
| | | }, |
| | | { label: '抵达的采购数量', prop: 'qtyArrived' }, |
| | | { label: '抵达的采购数量', prop: 'purQtyInStore' }, |
| | | { label: '单位', prop: 'buyUnitMeas' }, |
| | | { label: '订单号', prop: 'orderNo' }, |
| | | { label: '接收时间', prop: 'receiverDate' }, |
| | |
| | | } |
| | | } |
| | | }, |
| | | { label: '抵达的采购数量', prop: 'qtyArrived' }, |
| | | { label: '抵达的采购数量', prop: 'purQtyInStore' }, |
| | | { label: '单位', prop: 'buyUnitMeas' }, |
| | | { label: '订单号', prop: 'orderNo' }, |
| | | { label: '接收时间', prop: 'receiverDate' }, |
| | |
| | | } |
| | | }, |
| | | { label: '订单号', prop: 'orderNo' }, |
| | | { label: '抵达的采购数量', prop: 'qtyArrived' }, |
| | | { label: '抵达的采购数量', prop: 'purQtyInStore' }, |
| | | { label: '下发时间', prop: 'sendTime' }, |
| | | { label: '批号', prop: 'updateBatchNo' }, |
| | | { label: '零件号', prop: 'partNo' }, |
| | |
| | | } |
| | | }, |
| | | { label: '订单号', prop: 'orderNo' }, |
| | | { label: '抵达的采购数量', prop: 'qtyArrived' }, |
| | | { label: '抵达的采购数量', prop: 'purQtyInStore' }, |
| | | { label: '下发时间', prop: 'sendTime' }, |
| | | { label: '批号', prop: 'updateBatchNo' }, |
| | | { label: '零件号', prop: 'partNo' }, |
| | |
| | | } |
| | | }, |
| | | { label: '订单号', prop: 'orderNo' }, |
| | | { label: '抵达的采购数量', prop: 'qtyArrived' }, |
| | | { label: '抵达的采购数量', prop: 'purQtyInStore' }, |
| | | { label: '下发时间', prop: 'sendTime' }, |
| | | { label: '批号', prop: 'updateBatchNo' }, |
| | | { label: '零件号', prop: 'partNo' }, |
| | |
| | | }, |
| | | // 下单 |
| | | playOrder(row) { |
| | | this.$router.push({ path: "/materialOrder/customsInspectionOrder", query: { orderType: 0, customsInspection: row, active: 1 } }); |
| | | this.$router.push({ path: "/materialOrder/customsInspectionOrder", query: {isOutsourcing:'f', orderType: 0, customsInspection: row, active: 1 } }); |
| | | }, |
| | | // 季度检验下单 |
| | | playOrderSec(row) { |
| | | this.$router.push({ path: "/materialOrder/customsInspectionOrder", query: { orderType: 1, customsInspection: row, active: 1 } }); |
| | | this.$router.push({ path: "/materialOrder/customsInspectionOrder", query: {isOutsourcing:'f', orderType: 1, customsInspection: row, active: 1 } }); |
| | | }, |
| | | // 点击样品名称查看详情 |
| | | selectAllByOne(row) { |
| | |
| | | // 导出 |
| | | handleOut() { |
| | | this.outLoading = true |
| | | rawAllExport({ ...this.entity }).then(res => { |
| | | let params = {} |
| | | if (this.multipleSelection.length > 0) { |
| | | params.ids = this.multipleSelection.map(item => item.id).join(','); |
| | | } else { |
| | | params = {...this.entity} |
| | | } |
| | | rawAllExport(params).then(res => { |
| | | this.outLoading = false |
| | | const blob = new Blob([res], { type: 'application/octet-stream' }); |
| | | this.$download.saveAs(blob, '原材料检测信息导出.xlsx'); |
| | |
| | | // 切换下单tab表格 |
| | | handleTab(m) { |
| | | this.tabIndex = m; |
| | | this.multipleSelection = [] |
| | | this.refreshTable() |
| | | }, |
| | | // 表格选择方法 |