From c92ae409bf43eed30d0b9ad5ac4090b137e2b022 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=AE=89=E8=99=B9=E7=9D=BF?= <297504645@qq.com>
Date: Tue, 3 Dec 2024 14:59:24 +0800
Subject: [PATCH] =?UTF-8?q?=E3=80=90nev-pc=E3=80=91=E5=B7=A5=E4=BD=9C?=
=?UTF-8?q?=E7=AB=99=E5=BA=93=E4=BD=8D=E5=85=B3=E7=B3=BB?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
fe/PC/src/utils/index.js | 6 +
fe/PC/src/utils/tableColumns/index.js | 16 ++
fe/PC/src/utils/tabsDesTions/index.js | 16 ++
.../WarehouseManage/PostionLocation.vue | 186 ++++++++++++++++++
4 files changed, 224 insertions(+)
create mode 100644 fe/PC/src/views/basicData/WarehouseManage/PostionLocation.vue
diff --git a/fe/PC/src/utils/index.js b/fe/PC/src/utils/index.js
index 781813c50..c8fc7d57c 100644
--- a/fe/PC/src/utils/index.js
+++ b/fe/PC/src/utils/index.js
@@ -593,6 +593,12 @@ export function initInterfaceType(res){
_item.interfaceType = '【TYRP】-【储位、线边仓调拨单 和 客户储位调拨单】'
} else if (item.transType == 31 && item.transSubType == 3105) {
_item.interfaceType = '【TYRP】-【储位、线边仓调拨单 和 客户储位调拨单】'
+ } else if (item.transType == 31 && item.transSubType == 3106) {
+ _item.interfaceType = '【TYRP】-【线边仓调拨单】'
+ } else if (item.transType == 31 && item.transSubType == 3107) {
+ _item.interfaceType = '【TYRP】-【线边仓调拨单】'
+ } else if (item.transType == 31 && item.transSubType == 3108) {
+ _item.interfaceType = '【TYRP】-【线边仓调拨单】'
} else if (item.transType == 21) {
_item.interfaceType = '【TYRP】-【缴库单】'
} else if (item.transType == 23 && item.transSubType == 2301) {
diff --git a/fe/PC/src/utils/tableColumns/index.js b/fe/PC/src/utils/tableColumns/index.js
index 1587b0a29..8fe8800ab 100644
--- a/fe/PC/src/utils/tableColumns/index.js
+++ b/fe/PC/src/utils/tableColumns/index.js
@@ -479,6 +479,7 @@ export const Location = [
{ label: "列号", prop: "columnCode" },
{ label: "拣料优先级", prop: "pickPriority" },
{ label: "拣料顺序", prop: "pickOrder" },
+ // { label: "是否AGV配送", prop: "enableAgv", type: "filter", filters: "whetherOrNot" },
{ label: "是否混物品", prop: "enableMixItem", type: "filter", filters: "whetherOrNot" },
{ label: "是否混批次", prop: "enableMixLot", type: "filter", filters: "whetherOrNot" },
{ label: "是否混状态", prop: "enableMixStatus", type: "filter", filters: "whetherOrNot" },
@@ -527,6 +528,21 @@ export const ItemStoreRelation = [
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
]
+// 工作站库位零件关系
+export const PostionLocation = [
+ {
+ label: "工作站编号",
+ prop: "code",
+ fixed: "left",
+ type: "name"
+ },
+ { label: "工作站名称", prop: "name" },
+ { label: "库位", prop: "locationCode" },
+ { label: "备注", prop: "remark" },
+ { label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
+ { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
+]
+
// 库位可用容量信息
export const InventoryLocationCapacity = [
{
diff --git a/fe/PC/src/utils/tabsDesTions/index.js b/fe/PC/src/utils/tabsDesTions/index.js
index f27c4da2e..5f0c6558d 100644
--- a/fe/PC/src/utils/tabsDesTions/index.js
+++ b/fe/PC/src/utils/tabsDesTions/index.js
@@ -332,6 +332,7 @@ export const Location = [
{ label: "列号", prop: "columnCode" },
{ label: "拣料优先级", prop: "pickPriority" },
{ label: "拣料顺序", prop: "pickOrder" },
+ // { label: "是否AGV配送", prop: "enableAgv", type: "filter", filters: "whetherOrNot" },
{ label: "是否混物品", prop: "enableMixItem", type: "filter", filters: "whetherOrNot" },
{ label: "是否混批次", prop: "enableMixLot", type: "filter", filters: "whetherOrNot" },
{ label: "是否混状态", prop: "enableMixStatus", type: "filter", filters: "whetherOrNot" },
@@ -373,6 +374,21 @@ export const ItemStoreRelation = [
{ label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
]
+// 工作站库位零件关系
+export const PostionLocation = [
+ {
+ label: "工作站编号",
+ prop: "code",
+ fixed: "left",
+ type: "name"
+ },
+ { label: "工作站名称", prop: "name" },
+ { label: "库位", prop: "locationCode" },
+ { label: "备注", prop: "remark" },
+ { label: _Public.creationTime, prop: "creationTime", type: "dateTime" },
+ { label: _Public.lastModificationTime, prop: "lastModificationTime", type: "dateTime" },
+]
+
// 库位可用容量信息
export const InventoryLocationCapacity = [
{ label: _Names.locationCode, prop: "locationCode" },
diff --git a/fe/PC/src/views/basicData/WarehouseManage/PostionLocation.vue b/fe/PC/src/views/basicData/WarehouseManage/PostionLocation.vue
new file mode 100644
index 000000000..44a27122a
--- /dev/null
+++ b/fe/PC/src/views/basicData/WarehouseManage/PostionLocation.vue
@@ -0,0 +1,186 @@
+
+
+
+
+
+
+
+
+
+
+
+
(displayDialog.detailsDialog = val)"
+ @drawerbutton="drawerbutton"
+ @handleCommand="drawerHandle"
+ @close-value="closeValue"
+ :firstTabs="firstTabs"
+ >
+
+
+
+
\ No newline at end of file