|
|
|
@ -6,17 +6,17 @@
|
|
|
|
|
<el-button-group
|
|
|
|
|
style="display: flex; margin: 0px 0 15px 75%; height: 35px">
|
|
|
|
|
<el-button size="mini" type="primary" @click="triggerFileUpload2"
|
|
|
|
|
>
|
|
|
|
|
>
|
|
|
|
|
同步阳采单据
|
|
|
|
|
</el-button>
|
|
|
|
|
<!-- 隐藏的文件输入元素 -->
|
|
|
|
|
<input type="file" ref="fileInput2" accept=".xlsx,.xls" style="display: none;" @change="handleFileUpload2" />
|
|
|
|
|
<input type="file" ref="fileInput2" accept=".xlsx,.xls" style="display: none;" @change="handleFileUpload2"/>
|
|
|
|
|
<el-button size="mini" type="primary" @click="triggerFileUpload"
|
|
|
|
|
v-if="(curAction.checkWebNew !== 2 || viewType !== 1) && orderFormData.billNo">
|
|
|
|
|
同步阳采追溯码
|
|
|
|
|
</el-button>
|
|
|
|
|
<!-- 隐藏的文件输入元素 -->
|
|
|
|
|
<input type="file" ref="fileInput" accept=".xlsx,.xls" style="display: none;" @change="handleFileUpload" />
|
|
|
|
|
<input type="file" ref="fileInput" accept=".xlsx,.xls" style="display: none;" @change="handleFileUpload"/>
|
|
|
|
|
|
|
|
|
|
<el-button size="mini" type="primary" @click.native="selectOrder()"
|
|
|
|
|
v-if="curAction.checkWebNew != 2 || viewType !=1"
|
|
|
|
@ -33,15 +33,15 @@
|
|
|
|
|
v-if="curAction.checkWebNew != 2 || viewType !=1"
|
|
|
|
|
>立即提交
|
|
|
|
|
</el-button>
|
|
|
|
|
<!-- <el-button size="mini" type="primary" @click.native="submit(1)"-->
|
|
|
|
|
<!-- v-if="curAction.checkWebNew > 1 && viewType == 1"-->
|
|
|
|
|
<!-- >待配货提交-->
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
<!-- <el-button size="mini" type="primary" @click.native="submit(1)"-->
|
|
|
|
|
<!-- v-if="curAction.checkWebNew > 1 && viewType == 1"-->
|
|
|
|
|
<!-- >待配货提交-->
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
|
|
|
|
|
<!-- <el-button size="mini" type="primary" @click.native="submit(1)"-->
|
|
|
|
|
<!-- v-if="curAction.checkWebNew == 3"-->
|
|
|
|
|
<!-- >未配货提交-->
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
<!-- <el-button size="mini" type="primary" @click.native="submit(1)"-->
|
|
|
|
|
<!-- v-if="curAction.checkWebNew == 3"-->
|
|
|
|
|
<!-- >未配货提交-->
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
|
|
|
|
|
</el-button-group>
|
|
|
|
|
<el-row>
|
|
|
|
@ -262,8 +262,8 @@
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
v-if="selectOrderVisible">
|
|
|
|
|
<selectMsfxOrderDialog
|
|
|
|
|
:orderFormData = this.orderFormData
|
|
|
|
|
:closeDialog = this.orderFormDataClose
|
|
|
|
|
:orderFormData=this.orderFormData
|
|
|
|
|
:closeDialog=this.orderFormDataClose
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
</selectMsfxOrderDialog>
|
|
|
|
@ -291,6 +291,7 @@ import selectMsfxOrderDialog from "./selectMsfxOrderDialog"
|
|
|
|
|
import A from "@/plugins/KeyScaner"
|
|
|
|
|
import {findByInvUser, getLocalJoinByUser, getBusTypeList} from '@/api/basic/busType'
|
|
|
|
|
import {deleteRe} from "@/api/auth/register";
|
|
|
|
|
import store from "@/store";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "ioCreateOrder",
|
|
|
|
@ -350,7 +351,7 @@ export default {
|
|
|
|
|
remark: null,
|
|
|
|
|
fromType: 2,
|
|
|
|
|
errMsg: null,
|
|
|
|
|
orderEntity: { }
|
|
|
|
|
orderEntity: {}
|
|
|
|
|
},
|
|
|
|
|
errView: 0,
|
|
|
|
|
|
|
|
|
@ -382,7 +383,7 @@ export default {
|
|
|
|
|
editCodeVisible: false,
|
|
|
|
|
actionEnable: false,
|
|
|
|
|
editOriginCodeVisible: false,
|
|
|
|
|
selectOrderVisible:false,
|
|
|
|
|
selectOrderVisible: false,
|
|
|
|
|
curId: null,
|
|
|
|
|
storageList: [],
|
|
|
|
|
|
|
|
|
@ -430,7 +431,7 @@ export default {
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
|
codesPanel, codeDetailPanel, bizDetailPanel, editCodeDialog,selectMsfxOrderDialog
|
|
|
|
|
codesPanel, codeDetailPanel, bizDetailPanel, editCodeDialog, selectMsfxOrderDialog
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
triggerFileUpload() {
|
|
|
|
@ -441,12 +442,14 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
handleFileUpload(event) {
|
|
|
|
|
const file = event.target.files[0];
|
|
|
|
|
const billNo = this.orderFormData.billNo; // 这里应该是你实际的UUID,可以从其他地方获取
|
|
|
|
|
const uploadUrl = process.env.VUE_APP_BASE_API + '/udiwms/inout/order/yc/fileUpload'; // 后端接收文件的URL
|
|
|
|
|
if (this.$isBlank(this.orderFormData.billNo)){
|
|
|
|
|
const billNo = this.orderFormData.billNo;
|
|
|
|
|
const uploadUrl = process.env.VUE_APP_BASE_API + '/udiwms/inout/order/yc/fileUpload';
|
|
|
|
|
|
|
|
|
|
if (this.$isBlank(this.orderFormData.billNo)) {
|
|
|
|
|
this.$message.error("单据编号不可以为空!");
|
|
|
|
|
return
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (file) {
|
|
|
|
|
const formData = new FormData();
|
|
|
|
|
formData.append('billNo', billNo);
|
|
|
|
@ -454,73 +457,109 @@ export default {
|
|
|
|
|
|
|
|
|
|
fetch(uploadUrl, {
|
|
|
|
|
method: 'POST',
|
|
|
|
|
headers: {
|
|
|
|
|
ADMIN_ID: store.getters.adminId,
|
|
|
|
|
ADMIN_TOKEN: store.getters.token,
|
|
|
|
|
},
|
|
|
|
|
body: formData,
|
|
|
|
|
})
|
|
|
|
|
.then(response => {
|
|
|
|
|
if (!response.ok) {
|
|
|
|
|
throw new Error(`HTTP error! Status: ${response.status}`);
|
|
|
|
|
}
|
|
|
|
|
return response.json(); // 假设后端返回JSON格式的数据
|
|
|
|
|
})
|
|
|
|
|
.then(data => {
|
|
|
|
|
// 处理后端返回的数据
|
|
|
|
|
if (data.code === 20000) {
|
|
|
|
|
this.$message.success("上传成功!")
|
|
|
|
|
}else {
|
|
|
|
|
this.$message.error(data.message);
|
|
|
|
|
.then(response => {
|
|
|
|
|
if (!response.ok) {
|
|
|
|
|
throw new Error(`HTTP error! Status: ${response.status}`);
|
|
|
|
|
}
|
|
|
|
|
return response.json();
|
|
|
|
|
})
|
|
|
|
|
.then(data => {
|
|
|
|
|
if (data.code === 20000) {
|
|
|
|
|
// 更新单据号
|
|
|
|
|
if (data.data && data.data.billNo) {
|
|
|
|
|
this.orderFormData.billNo = data.data.billNo;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(error => {
|
|
|
|
|
// 处理错误
|
|
|
|
|
console.error('File upload failed:', error);
|
|
|
|
|
// 你可以在这里添加代码来显示错误消息或进行其他操作
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
// 如果没有选择文件,则显示错误消息或进行其他操作
|
|
|
|
|
console.error('No file selected for upload!');
|
|
|
|
|
|
|
|
|
|
// 强制刷新组件
|
|
|
|
|
this.isCodeAlive = false;
|
|
|
|
|
this.isBizDetailAlive = false;
|
|
|
|
|
this.isCodeDetailAlive = false;
|
|
|
|
|
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
this.isCodeAlive = true;
|
|
|
|
|
this.isBizDetailAlive = true;
|
|
|
|
|
this.isCodeDetailAlive = true;
|
|
|
|
|
this.$refs.inputRef.focus();
|
|
|
|
|
this.$refs.inputRef.select();
|
|
|
|
|
this.$message.success("上传成功!");
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(data.message);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(error => {
|
|
|
|
|
console.error('File upload failed:', error);
|
|
|
|
|
this.$message.error('文件上传失败:' + error.message);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 清空文件输入框的值
|
|
|
|
|
event.target.value = '';
|
|
|
|
|
},
|
|
|
|
|
handleFileUpload2(event) {
|
|
|
|
|
const file = event.target.files[0];
|
|
|
|
|
const billNo = this.orderFormData.billNo; // 这里应该是你实际的UUID,可以从其他地方获取
|
|
|
|
|
const uploadUrl = process.env.VUE_APP_BASE_API + '/udiwms/inout/order/yc/orderFileUpload'; // 后端接收文件的URL
|
|
|
|
|
// if (this.$isBlank(this.orderFormData.billNo)){
|
|
|
|
|
// this.$message.error("单据编号不可以为空!");
|
|
|
|
|
// return
|
|
|
|
|
// }
|
|
|
|
|
const uploadUrl = process.env.VUE_APP_BASE_API + '/udiwms/inout/order/yc/orderFileUpload';
|
|
|
|
|
|
|
|
|
|
if (file) {
|
|
|
|
|
const formData = new FormData()
|
|
|
|
|
const formData = new FormData();
|
|
|
|
|
this.orderFormData.orderEntity = Object.assign(JSON.parse(JSON.stringify(this.orderFormData)));
|
|
|
|
|
formData.append('billNoJson', JSON.stringify(this.orderFormData));
|
|
|
|
|
formData.append('file', file);
|
|
|
|
|
|
|
|
|
|
fetch(uploadUrl, {
|
|
|
|
|
method: 'POST',
|
|
|
|
|
headers: {
|
|
|
|
|
ADMIN_ID: store.getters.adminId,
|
|
|
|
|
ADMIN_TOKEN: store.getters.token,
|
|
|
|
|
},
|
|
|
|
|
body: formData
|
|
|
|
|
})
|
|
|
|
|
.then(response => {
|
|
|
|
|
if (!response.ok) {
|
|
|
|
|
throw new Error(`HTTP error! Status: ${response.status}`)
|
|
|
|
|
}
|
|
|
|
|
return response.json() // 假设后端返回JSON格式的数据
|
|
|
|
|
})
|
|
|
|
|
.then(data => {
|
|
|
|
|
// 处理后端返回的数据
|
|
|
|
|
if (data.code === 20000) {
|
|
|
|
|
console.log(data.data)
|
|
|
|
|
this.$message.success("上传成功!")
|
|
|
|
|
}else {
|
|
|
|
|
this.$message.error(data.message);
|
|
|
|
|
.then(response => {
|
|
|
|
|
if (!response.ok) {
|
|
|
|
|
throw new Error(`HTTP error! Status: ${response.status}`);
|
|
|
|
|
}
|
|
|
|
|
return response.json();
|
|
|
|
|
})
|
|
|
|
|
.then(data => {
|
|
|
|
|
if (data.code === 20000) {
|
|
|
|
|
// 更新单据号
|
|
|
|
|
if (data.data && data.data.billNo) {
|
|
|
|
|
this.orderFormData.billNo = data.data.billNo;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(error => {
|
|
|
|
|
// 处理错误
|
|
|
|
|
console.error('File upload failed:', error);
|
|
|
|
|
// 你可以在这里添加代码来显示错误消息或进行其他操作
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// 强制刷新组件
|
|
|
|
|
this.isCodeAlive = false;
|
|
|
|
|
this.isBizDetailAlive = false;
|
|
|
|
|
this.isCodeDetailAlive = false;
|
|
|
|
|
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
this.isCodeAlive = true;
|
|
|
|
|
this.isBizDetailAlive = true;
|
|
|
|
|
this.isCodeDetailAlive = true;
|
|
|
|
|
this.$refs.inputRef.focus();
|
|
|
|
|
this.$refs.inputRef.select();
|
|
|
|
|
this.$message.success("上传成功!");
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(data.message);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(error => {
|
|
|
|
|
console.error('File upload failed:', error);
|
|
|
|
|
this.$message.error('文件上传失败:' + error.message);
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
// 如果没有选择文件,则显示错误消息或进行其他操作
|
|
|
|
|
console.error('No file selected for upload!');
|
|
|
|
|
this.$message.warning('请选择要上传的文件');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 清空文件输入框的值
|
|
|
|
|
event.target.value = '';
|
|
|
|
|
},
|
|
|
|
|
//获取查看帮助url
|
|
|
|
|
selectAuthMenuByMenuKeys() {
|
|
|
|
@ -577,14 +616,14 @@ export default {
|
|
|
|
|
spUse: 2,
|
|
|
|
|
vueType: "supDelivery",
|
|
|
|
|
enable: true,
|
|
|
|
|
productType:2,
|
|
|
|
|
productType: 2,
|
|
|
|
|
};
|
|
|
|
|
getLocalJoinByUser(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.busTypeOptions = response.data.list || [];
|
|
|
|
|
if (this.busTypeOptions.length == 1 && this.orderFormData.action == null) {
|
|
|
|
|
this.orderFormData.action = this.busTypeOptions[0].action;
|
|
|
|
|
this.actionChange(this.orderFormData.action )
|
|
|
|
|
this.actionChange(this.orderFormData.action)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
@ -643,7 +682,7 @@ export default {
|
|
|
|
|
actionChange(item) {
|
|
|
|
|
this.curAction = this.getActionItem(item);
|
|
|
|
|
if ((this.curAction.checkEnable && this.curAction.checkWebNew != 0) || this.viewType == 1) {
|
|
|
|
|
//单据类型需要一次校验 或 单据类型为1,显示业务单据页面
|
|
|
|
|
//单据类型需要一次校验 或 单据类型1,显示业务单据页面
|
|
|
|
|
this.bizShow = true;
|
|
|
|
|
} else
|
|
|
|
|
this.bizShow = false;
|
|
|
|
@ -978,14 +1017,14 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
//查询msfx单据
|
|
|
|
|
selectOrder(){
|
|
|
|
|
selectOrder() {
|
|
|
|
|
if (this.orderFormData.action == null) {
|
|
|
|
|
this.$message.error('请选择单据类型!')
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
this.selectOrderVisible = true
|
|
|
|
|
},
|
|
|
|
|
orderFormDataClose(data){
|
|
|
|
|
orderFormDataClose(data) {
|
|
|
|
|
this.orderFormData = data
|
|
|
|
|
this.refreshCodesPanel();
|
|
|
|
|
this.selectOrderVisible = false
|
|
|
|
|