diff --git a/fe/PC/src/api/wms-api.js b/fe/PC/src/api/wms-api.js
index 5af8feadb..2427834ab 100644
--- a/fe/PC/src/api/wms-api.js
+++ b/fe/PC/src/api/wms-api.js
@@ -761,6 +761,14 @@ export function getGrabimagePost(data) {
})
}
+// 三方库-关闭任务
+export function postCloseJob(id,url) {
+ return request({
+ url: baseURL + url + '/close-job/' + id,
+ method: 'post'
+ })
+}
+
// 客户退拆任务-完成 todo
// export async function productionRecycleJobComplete(id) {
// return request({
diff --git a/fe/PC/src/utils/detailsTableColumns/index.js b/fe/PC/src/utils/detailsTableColumns/index.js
index d5bd1bf5d..aba3dc8a5 100644
--- a/fe/PC/src/utils/detailsTableColumns/index.js
+++ b/fe/PC/src/utils/detailsTableColumns/index.js
@@ -1739,8 +1739,8 @@ export const materialReturnNote = [
{ label: "配置", prop: "item_configurationFromFE" },
{ label: "领料数量", prop: "qty" },
{ label: "箱码", prop: "packingCode" },
- { label: "调出库位", prop: "locationCode" },
- { label: "调出"+_Names.locationErpCode, prop: 'locationErpCode' },
+ { label: "入库库位", prop: "locationCode" },
+ { label: _Names.locationErpCode, prop: 'locationErpCode' },
{ label: "专案代码", prop: 'caseCode' },
{ label: "项目分类", prop: 'projCapacityCode' },
{ label: "任务编号", prop: 'number' },
@@ -2123,7 +2123,7 @@ export const lineSideWarehousePaymentRequest = [
{ label: "配置", prop: "item_configurationFromFE" },
{ label: "数量", prop: "qty" },
{ label: "目标库位", prop: "locationCode" },
- { label: "目标"+_Names.locationErpCode, prop: "locationErpCode" },
+ { label: _Names.toErpCode, prop: "locationErpCode" },
// { label: "单位", prop: "uom" },
// { label: "返线数量", prop: "returnQty" },
// { label: "调出库区", prop: "rawArea" },
@@ -2152,8 +2152,8 @@ export const lineSideWarehousePaymentNote = [
{ label: "物品描述2", prop: "itemDesc2" },
{ label: "配置", prop: "item_configurationFromFE" },
{ label: "数量", prop: "qty" },
- { label: "目标库位", prop: "handledToLocationCode" },
- { label: _Names.toErpCode, prop: "handledToLocationErpCode" },
+ { label: "目标库位", prop: "locationCode" },
+ { label: _Names.toErpCode, prop: "locationErpCode" },
// todo:底盘号
{ label: "底盘号", prop: "identityNo" },
{ label: "标包数量", prop: 'stdPackQty' },
diff --git a/fe/PC/src/views/ThirdLocationManage/ThirdLocationJob.vue b/fe/PC/src/views/ThirdLocationManage/ThirdLocationJob.vue
index 24a3e67c4..76026b770 100644
--- a/fe/PC/src/views/ThirdLocationManage/ThirdLocationJob.vue
+++ b/fe/PC/src/views/ThirdLocationManage/ThirdLocationJob.vue
@@ -30,9 +30,9 @@
:drawer="displayDialog.detailsDialog"
:propsData="propsData"
:tabsDesTions="tabsDesTions"
- :Butttondata="[]"
+ :Butttondata="DrawerButtonData"
@drawerShut="(val) => (displayDialog.detailsDialog = val)"
- @drawerbutton="drawerbutton"
+ @drawerbutton="drawerbuttonHandle"
@close-value="closeValue"
:currenButtonData="currenButtonData"
:tableColumns="detailsTableColumns"
@@ -44,7 +44,7 @@