diff --git a/src/api/distribution/distributionDeliveryList.js b/src/api/distribution/distributionDeliveryList.js
index 3c49a662..3b35852e 100644
--- a/src/api/distribution/distributionDeliveryList.js
+++ b/src/api/distribution/distributionDeliveryList.js
@@ -369,4 +369,13 @@ export const $_showInventoryPackgeCode = params => {
method: 'get',
params,
});
+};
+
+// 驳回
+export const $_loadingAbnormalPackageListTurnDown = params => {
+ return request({
+ url: '/api/logpm-distribution/signfor/loadingAbnormalPackageListTurnDown',
+ method: 'get',
+ params,
+ });
};
\ No newline at end of file
diff --git a/src/page/login/aiqa.vue b/src/page/login/aiqa.vue
index f30ec66e..5dee13c0 100644
--- a/src/page/login/aiqa.vue
+++ b/src/page/login/aiqa.vue
@@ -380,7 +380,7 @@ AiData(); //初始化AI机器人
background-color: #fbfbfd;
padding: 10px;
overflow-y: scroll;
-
+ box-shadow: inset 3px -1px 4px #c9c0c0;
.chat-history,
.chat-history-user {
margin-bottom: 2%;
diff --git a/src/views/basic/coderule/basicTenantCode.vue b/src/views/basic/coderule/basicTenantCode.vue
index 4cd0958d..df66fa8d 100644
--- a/src/views/basic/coderule/basicTenantCode.vue
+++ b/src/views/basic/coderule/basicTenantCode.vue
@@ -147,6 +147,10 @@
+
+
+
+
diff --git a/src/views/distribution/deliverylist/distributionDeliveryListedt.vue b/src/views/distribution/deliverylist/distributionDeliveryListedt.vue
index 1c3f7d07..aa962fe8 100644
--- a/src/views/distribution/deliverylist/distributionDeliveryListedt.vue
+++ b/src/views/distribution/deliverylist/distributionDeliveryListedt.vue
@@ -173,7 +173,6 @@
v-if="slotProps.scope.row.isHaveAbnormalPackage == '2'"
>异常审核
-
审 核
+ 驳回
+
@@ -894,6 +901,38 @@
一键审批
+
+
+
+
+
+ 货物是否在库:
+
+
+
+
+
+
+
+
@@ -918,6 +957,7 @@ import {
printBatch,
$_deliveryZeroPackage,
$_showInventoryPackgeCode,
+ $_loadingAbnormalPackageListTurnDown,
} from '@/api/distribution/distributionDeliveryList';
import { showOrderPackgeCode } from '@/api/distribution/distributionStockArticle';
import { exportBlob } from '@/api/common';
@@ -954,6 +994,20 @@ import { useStore } from 'vuex';
export default {
data() {
return {
+ ViRejectselect: [
+ {
+ value: true,
+ label: '是',
+ },
+ {
+ value: false,
+ label: '否',
+ },
+
+ ],
+ dialogViReject:false,//驳回弹窗
+ RejectRow:{},//驳回点击当前单子
+ yesOrNo:null,
accessControl:'',
html: '',
reservationActiveName: 'reservationPackage',
@@ -3888,6 +3942,35 @@ if($useStore.getters && $useStore.getters.permission){
this.AbnormalReviewloading = false; //关闭加载
});
},
+ RejectFn(row){
+ console.log(row);
+ this.RejectRow=row;
+ this.dialogViReject=true;
+ },
+ // 确定驳回
+ ViReject(){
+ if(this.yesOrNo==null){
+ ElMessage({
+ message: '请选择货物是否在库',
+ type: 'warning',
+ })
+ return
+ }
+ console.log(this.RejectRow,'this.RejectRow');
+ let data={
+ ids:this.RejectRow.id,
+ yesOrNo:this.yesOrNo,
+ }
+ this.AbnormalReviewloading =true; //开启加载
+ this.dialogViReject=false;
+ $_loadingAbnormalPackageListTurnDown(data).then(res=>{
+ if(res.data.code ==200){
+ console.log(res,'驳回成功返回值');
+ this.viewAbnormalLoading(this.toexamineID); //驳回完成更新数据
+ }
+
+ })
+ },
//审批异常装车包件
auditing(row) {
this.AbnormalReviewloading = true; //开启加载
diff --git a/src/views/warehouse/parcelList/distributionParcelList.vue b/src/views/warehouse/parcelList/distributionParcelList.vue
index f4aeab20..aed384ba 100644
--- a/src/views/warehouse/parcelList/distributionParcelList.vue
+++ b/src/views/warehouse/parcelList/distributionParcelList.vue
@@ -7,7 +7,7 @@