diff --git a/src/views/erp/stock/in/StockInForm.vue b/src/views/erp/stock/in/StockInForm.vue
index 778f1780..cb114824 100644
--- a/src/views/erp/stock/in/StockInForm.vue
+++ b/src/views/erp/stock/in/StockInForm.vue
@@ -131,18 +131,25 @@
-
-
-
-
-
- {{ formatAuditAction(row) }}
+
+
+
-
+
+
+
+
+
+
+
+
+
@@ -257,12 +264,6 @@ const getAuditRecordList = async (id: number) => {
}
}
-const formatAuditAction = (row: StockInApproveRecordVO) => {
- if (row.actionType === 'SUBMIT') return t('ErpStock.In.submitAudit')
- if (row.actionType === 'AUDIT') return t('ErpStock.In.auditApprove')
- return row.actionType || '-'
-}
-
const normalizeUserId = (value: any) => {
if (value === undefined || value === null || value === '') return undefined
return String(value)
diff --git a/src/views/erp/stock/out/StockOutForm.vue b/src/views/erp/stock/out/StockOutForm.vue
index a87d67b8..df30b9d3 100644
--- a/src/views/erp/stock/out/StockOutForm.vue
+++ b/src/views/erp/stock/out/StockOutForm.vue
@@ -131,18 +131,25 @@
-
-
-
-
-
- {{ formatAuditAction(row) }}
+
+
+
-
+
+
+
+
+
+
+
+
+
@@ -248,12 +255,6 @@ const getAuditRecordList = async (id: number) => {
}
}
-const formatAuditAction = (row: StockOutApproveRecordVO) => {
- if (row.actionType === 'SUBMIT') return t('ErpStock.Out.submitAudit')
- if (row.actionType === 'AUDIT') return t('ErpStock.Out.auditApprove')
- return row.actionType || '-'
-}
-
const normalizeUserId = (value: any) => {
if (value === undefined || value === null || value === '') return undefined
return String(value)