选入阳采,选入阿里

dev_unify
yewj 3 months ago
parent 06366b7bb0
commit c165c4af8c

@ -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

Loading…
Cancel
Save