Browse Source

111

branch_ccpg_220107
xunyu.guo 3 years ago
parent
commit
2cb84a27ce
  1. 13
      vue/src/views/ux/vw/dataInput/hq_h_checkout/detail.vue

13
vue/src/views/ux/vw/dataInput/hq_h_checkout/detail.vue

@ -193,6 +193,7 @@ import permission from "@/directive/permission/index.js";
import CRMTableHead from "../../../components/CRMTableHead";
import { downloadFile } from "@/utils/crmindex.js";
import JobSelectVerson from "@/components/CreateCom/Job-Select.vue";
import moment from "moment";
export default {
name: "sendUnsettledDiffReport",
@ -264,8 +265,8 @@ export default {
guids: "",
billNum: "",
accountDate: "",
branchId: "",
outPutQty: "",
// branchId: "",
// outPutQty: "",
},
listDeleteQuery: {
billNum: "",
@ -450,6 +451,14 @@ export default {
this.listOutPutQuery.version = this.customerInfo.version;
this.listOutPutQuery.guids = params;
this.listOutPutQuery.billNum = this.customerInfo.parentId;
let date = new Date();
let min = date.getMinutes();
date.setMinutes(min + 1); //1
let nowDate = moment(date).format("HH:mm:ss");
this.listOutPutQuery.accountDate = date;
console.log("取消出库条件:" + JSON.stringify(this.listOutPutQuery));
this.$confirm("是否确认取消出库" + myalert + "?", "提示", {

Loading…
Cancel
Save