Browse Source

红旗H

branch_ccpg_220107
44673626 3 years ago
parent
commit
e21eb0d87e
  1. 2
      vue/src/views/ux/billManage/claimDemage/index.vue
  2. 2
      vue/src/views/ux/businessdata/deliverGoods/index.vue
  3. 82
      vue/src/views/ux/vw/dataInput/hq_h_checkout/detail.vue

2
vue/src/views/ux/billManage/claimDemage/index.vue

@ -251,7 +251,7 @@ export default {
},
data() {
return {
crmType: "settleAccount",
crmType: "settleAccount-bom",
versionValue: "",
customerInfos: [],
versionList: [], //

2
vue/src/views/ux/businessdata/deliverGoods/index.vue

@ -178,7 +178,7 @@ export default {
},
data() {
return {
crmType: "settleAccount",
crmType: "settleAccount-goods",
versionValue: "",
versionList: [], //
rules: {

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

@ -120,11 +120,12 @@
label-width="120px"
>
<el-form-item label="日期" prop="accountDate">
<el-date-picker
v-model="accountDatelist.accountDate"
type="date"
placeholder="选择日期">
</el-date-picker>
<el-date-picker
v-model="accountDatelist.accountDate"
type="date"
placeholder="选择日期"
>
</el-date-picker>
</el-form-item>
</el-form>
@ -135,9 +136,7 @@
<el-button
v-loading="formLoading"
type="primary"
@click="handleCreateBills()"
>确认</el-button
>
</div>
@ -219,7 +218,7 @@ export default {
version: "",
guids: "",
billNum: "",
accountDate:""
accountDate: "",
},
page: 1,
JobversionValue: "",
@ -231,9 +230,9 @@ export default {
showExcelImport: false,
tableHeight: document.documentElement.clientHeight - 230,
isEdit: false,
accountDatelist:{
accountDate:""
}
accountDatelist: {
accountDate: "",
},
};
},
mounted() {
@ -366,44 +365,43 @@ export default {
});
});
},
print() {
print() {
this.dialogFormVisible = true;
},
//
handleCreateBills(row) {
this.dialogFormVisible = true;
this.listLoading = true;
this.listOutPutQuery.guids = [];
this.listOutPutQuery.version = this.customerInfo.version;
this.listOutPutQuery.billNum = this.customerInfo.parentId;
if (this.accountDatelist != "") {
this.listOutPutQuery.accountDate = this.accountDatelist.accountDate;
}
//this.listOutPutQuery.accountDate = this.accountDatelist;
console.log(
"未选择时全部确认出库条件:" + JSON.stringify(this.listOutPutQuery)
);
this.listLoading = true;
this.listOutPutQuery.guids = [];
this.listOutPutQuery.version = this.customerInfo.version;
this.listOutPutQuery.billNum = this.customerInfo.parentId;
if (this.accountDatelist != "") {
this.listOutPutQuery.accountDate = this.accountDatelist.accountDate;
}
//this.listOutPutQuery.accountDate = this.accountDatelist;
console.log(
"未选择时全部确认出库条件:" + JSON.stringify(this.listOutPutQuery)
);
this.$axios
.posts(
"/api/settleaccount/WmsHQHSharePartoutput/WmsSharePartOutPut-Pass",
this.listOutPutQuery
)
.then((response) => {
const index = this.list.indexOf(row);
this.$notify({
title: "成功",
message: "生成成功",
type: "success",
duration: 2000,
});
this.getList();
this.listLoading = false;
})
.catch(() => {
this.listLoading = false;
this.$axios
.posts(
"/api/settleaccount/wmsjitoutput/WmsJitOutPut-Pass",
this.listOutPutQuery
)
.then((response) => {
const index = this.list.indexOf(row);
this.$notify({
title: "成功",
message: "生成成功",
type: "success",
duration: 2000,
});
this.getList();
this.listLoading = false;
})
.catch(() => {
this.listLoading = false;
});
},
/** 刷新列表 */
handleHandle(data) {

Loading…
Cancel
Save