diff --git a/src/views/modules/orderIssure/soIssueNotify/searchIssureNotify.vue b/src/views/modules/orderIssure/soIssueNotify/searchIssureNotify.vue
index e76c56d..0ffa66d 100644
--- a/src/views/modules/orderIssure/soIssueNotify/searchIssureNotify.vue
+++ b/src/views/modules/orderIssure/soIssueNotify/searchIssureNotify.vue
@@ -468,7 +468,7 @@
-
+
{
if (data && data.code === 0) {
- this.categoryList = data.rows || []
+ this.categoryList = (data.rows || []).sort((a, b) => (a.crdcode || '').localeCompare(b.crdcode || ''))
}
})
},
diff --git a/src/views/modules/qc/inboundNotification.vue b/src/views/modules/qc/inboundNotification.vue
index 4dc1231..2f119b2 100644
--- a/src/views/modules/qc/inboundNotification.vue
+++ b/src/views/modules/qc/inboundNotification.vue
@@ -2219,7 +2219,7 @@
loadCategoryList () {
getInboundCategoryList({}).then(({data}) => {
if (data && data.code === 0) {
- this.categoryList = data.rows || []
+ this.categoryList = (data.rows || []).sort((a, b) => (a.crdcode || '').localeCompare(b.crdcode || ''))
}
})
},
diff --git a/src/views/modules/qc/outboundNotification.vue b/src/views/modules/qc/outboundNotification.vue
index c6759bd..5b45e14 100644
--- a/src/views/modules/qc/outboundNotification.vue
+++ b/src/views/modules/qc/outboundNotification.vue
@@ -58,6 +58,18 @@
+
+
+
+
+
+
+
+
{
if (data && data.code === 0) {
- this.categoryList = data.rows || []
+ this.categoryList = (data.rows || []).sort((a, b) => (a.crdcode || '').localeCompare(b.crdcode || ''))
}
})
},
diff --git a/src/views/modules/report/inboundNotificationReport.vue b/src/views/modules/report/inboundNotificationReport.vue
index 9f9c54f..abbf7b8 100644
--- a/src/views/modules/report/inboundNotificationReport.vue
+++ b/src/views/modules/report/inboundNotificationReport.vue
@@ -134,6 +134,18 @@
+
+
+
+
+
+
+
+
@@ -241,6 +253,7 @@