| | |
| | | :otherOptions="otherOptions" |
| | | :show-action-btn="false" |
| | | :placeholder="'请输入订单编号'" |
| | | @searchClick="onFilterSearch" |
| | | @searchClick="searchClick" |
| | | /> |
| | | </div> |
| | | </div> |
| | |
| | | <el-table-column label="操作" width="160" fixed="right"> |
| | | <template slot-scope="scope"> |
| | | <template v-if="scope.row.status == 1"> |
| | | <el-button type="text" size="small">确认</el-button> |
| | | <el-button type="text" size="small">取消</el-button> |
| | | <el-button type="text" size="small" @click.stop="changeStatusClick(scope.row, '确认')" |
| | | >确认</el-button |
| | | > |
| | | <el-button type="text" size="small" @click.stop="changeStatusClick(scope.row, '取消')" |
| | | >取消</el-button |
| | | > |
| | | </template> |
| | | <el-button |
| | | v-else-if="scope.row.status == 2 || scope.row.status == 4" |
| | |
| | | >申请物料</el-button |
| | | > |
| | | <template v-else-if="scope.row.status == 5"> |
| | | <el-button type="text" size="small">生产完成</el-button> |
| | | <el-button type="text" size="small" @click.stop="changeStatusClick(scope.row, '生产完成')" |
| | | >生产完成</el-button |
| | | > |
| | | <el-button type="text" size="small" @click.stop="deliveryClick(scope.row)">发货</el-button> |
| | | </template> |
| | | <template v-else-if="scope.row.status == 6"> |
| | | <el-button type="text" size="small" @click.stop="deliveryClick(scope.row)">发货</el-button> |
| | | <el-button type="text" size="small">关闭</el-button> |
| | | <el-button type="text" size="small" @click.stop="changeStatusClick(scope.row, '发货完成')" |
| | | >发货完成</el-button |
| | | > |
| | | </template> |
| | | <span v-else>--</span> |
| | | </template> |
| | |
| | | outsourceOrderList, |
| | | outsourceOrderOverview, |
| | | outsourceOrderProductList, |
| | | getMaterialApplyList |
| | | // changeOutsourceOrderStatus |
| | | getMaterialApplyList, |
| | | getDeliveryList, |
| | | changeOutsourceOrderStatus |
| | | } from "@/api/orderManageModule/orderManage" |
| | | import pageMixin from "@/components/makepager/pager/mixin/pageMixin" |
| | | import ApplyMaterialsDialog from "@/views/orderManageModule/orderManage/components/ApplyMaterialsDialog" |
| | |
| | | { label: "产品名称", prop: "productName", default: true }, |
| | | { label: "产品编号", prop: "productId" }, |
| | | { label: "订单数量", prop: "amount" }, |
| | | { label: "发货数量", prop: "validity_date" }, |
| | | { label: "发货数量", prop: "sendAmount" }, |
| | | { label: "产品规格", prop: "specs" }, |
| | | { label: "产品型号", prop: "model" }, |
| | | { label: "产品型号", prop: "type" }, |
| | | { label: "单位", prop: "unit" }, |
| | | { label: "运单号", prop: "validity_date" }, |
| | | { label: "承运商", prop: "validity_date" }, |
| | | { label: "创建时间", prop: "client_name", min: 100 } |
| | | { label: "运单号", prop: "waybillNumber" }, |
| | | { label: "承运商", prop: "carrier" }, |
| | | { label: "创建时间", prop: "createdAt", min: 100 } |
| | | ], |
| | | showDeliveryRquestCol: [ |
| | | "发货单号", |
| | |
| | | }, |
| | | // 获取物料申请单 |
| | | getMaterialApplyList(number) { |
| | | getMaterialApplyList({ number: number, page: 1, pageSize: 15 }).then((res) => { |
| | | getMaterialApplyList({ number: number }).then((res) => { |
| | | console.log(res) |
| | | if (res.code == 200) { |
| | | this.bottomTwoTableList2.tableInfomation = res.data |
| | | } |
| | | }) |
| | | }, |
| | | // 获取发货列表 |
| | | getDeliveryList(id) { |
| | | getDeliveryList({ outsourcingOrderID: id }).then((res) => { |
| | | console.log(res) |
| | | if (res.code == 200) { |
| | | let list = res.data.map((item) => { |
| | | return { |
| | | number: item.outsourcingOrderDelivery.number, |
| | | productName: item.outsourcingOrderProduct.productName, |
| | | productId: item.outsourcingOrderProduct.productId, |
| | | amount: item.outsourcingOrderProduct.amount, |
| | | sendAmount: item.sendAmount, |
| | | type: item.outsourcingOrderProduct.type, |
| | | unit: item.outsourcingOrderProduct.unit, |
| | | waybillNumber: item.outsourcingOrderDelivery.waybillNumber, |
| | | carrier: item.outsourcingOrderDelivery.carrier, |
| | | createdAt: item.createdAt |
| | | } |
| | | }) |
| | | this.bottomTwoTableList3.tableInfomation = list |
| | | } |
| | | }) |
| | | }, |
| | |
| | | addCommonClick() { |
| | | alert("露西666") |
| | | }, |
| | | searchClick() {}, |
| | | onFilterSearch() {}, |
| | | searchClick(val) { |
| | | this.searchParam.keyword = val |
| | | this.pagerOptions.currPage = 1 |
| | | this.getData() |
| | | }, |
| | | tableRowClick(row, column, event) { |
| | | console.log(row, column, event) |
| | | this.selectRow = row |
| | | if (this.activeNameBottom == 1) { |
| | | this.getProductListMethod(this.selectRow.id) |
| | | } else { |
| | | } else if (this.activeNameBottom == 2) { |
| | | this.getMaterialApplyList(this.selectRow.number) |
| | | } else { |
| | | this.getDeliveryList(this.selectRow.id) |
| | | } |
| | | }, |
| | | tableRowClassName({ row }) { |
| | |
| | | } |
| | | }, |
| | | getSelectArray() {}, |
| | | // 状态修改 |
| | | changeStatusClick(row, val) { |
| | | if (val == "确认") { |
| | | this.changeOutsourceOrderStatus(row.number, 2, "确认成功") |
| | | } else if (val == "取消") { |
| | | this.changeOutsourceOrderStatus(row.number, 0, "取消成功") |
| | | } else if (val == "生产完成") { |
| | | this.$confirm("是否确认生产完成?", "提示", { |
| | | confirmButtonText: "确定", |
| | | cancelButtonText: "取消", |
| | | type: "warning" |
| | | }).then(() => { |
| | | this.changeOutsourceOrderStatus(row.number, 6, "生产完成成功") |
| | | }) |
| | | } else if (val == "发货完成") { |
| | | this.$confirm("是否确认全部发货完成?", "提示", { |
| | | confirmButtonText: "确定", |
| | | cancelButtonText: "取消", |
| | | type: "warning" |
| | | }).then(() => { |
| | | this.changeOutsourceOrderStatus(row.number, 7, "全部发货完成成功") |
| | | }) |
| | | } |
| | | }, |
| | | changeOutsourceOrderStatus(number, status, str) { |
| | | changeOutsourceOrderStatus({ |
| | | outsourcingOrderNumber: number, |
| | | status: status |
| | | }) |
| | | .then((reply) => { |
| | | if (reply.code == 200) { |
| | | this.getData() |
| | | this.$message.success(str) |
| | | } |
| | | }) |
| | | .catch(() => {}) |
| | | }, |
| | | // 申请物料 |
| | | applyClick(row) { |
| | | this.editApplyConfig.visible = true |
| | |
| | | this.deliveryConfig.visible = true |
| | | this.deliveryConfig.title = "发货" |
| | | this.deliveryConfig.infomation = { |
| | | outsourcingOrderNumber: row.number |
| | | id: row.id, |
| | | number: row.number |
| | | } |
| | | }, |
| | | tabClickBottom(activeNameBottom) { |
| | | this.activeNameBottom = activeNameBottom |
| | | if (activeNameBottom == 1) { |
| | | this.getProductListMethod(this.selectRow.id) |
| | | } else { |
| | | } else if (activeNameBottom == 2) { |
| | | this.getMaterialApplyList(this.selectRow.number) |
| | | } else { |
| | | this.getDeliveryList(this.selectRow.id) |
| | | } |
| | | }, |
| | | setTable() { |
| | |
| | | ? "生产中" |
| | | : val === 6 |
| | | ? "生产完成" |
| | | : val === 7 |
| | | ? "发货完成" |
| | | : "--" |
| | | } |
| | | } |