|
|
@ -883,7 +883,7 @@ |
|
|
|
<MyPrint :html="html" v-model="dialogVisibleF" width="70%"></MyPrint> |
|
|
|
<MyPrint :html="html" v-model="dialogVisibleF" width="70%"></MyPrint> |
|
|
|
|
|
|
|
|
|
|
|
<el-dialog |
|
|
|
<el-dialog |
|
|
|
title="异常装车包件列表" |
|
|
|
title="异常包件列表" |
|
|
|
v-model="abnormalBox" |
|
|
|
v-model="abnormalBox" |
|
|
|
width="67%" |
|
|
|
width="67%" |
|
|
|
append-to-body |
|
|
|
append-to-body |
|
|
@ -922,6 +922,11 @@ |
|
|
|
@click="RejectFn(slotProps.scope.row)" |
|
|
|
@click="RejectFn(slotProps.scope.row)" |
|
|
|
>驳回 |
|
|
|
>驳回 |
|
|
|
</el-text> |
|
|
|
</el-text> |
|
|
|
|
|
|
|
<el-text |
|
|
|
|
|
|
|
v-if="slotProps.scope.row.auditingStatusName == '已驳回'" |
|
|
|
|
|
|
|
@click="abnormalretention(slotProps.scope.row)" |
|
|
|
|
|
|
|
>滞留 |
|
|
|
|
|
|
|
</el-text> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</tablecmt> |
|
|
|
</tablecmt> |
|
|
@ -980,7 +985,6 @@ import { |
|
|
|
$_showInventoryPackgeCode, |
|
|
|
$_showInventoryPackgeCode, |
|
|
|
$_loadingAbnormalPackageListTurnDown, |
|
|
|
$_loadingAbnormalPackageListTurnDown, |
|
|
|
$_retentionScan, |
|
|
|
$_retentionScan, |
|
|
|
$_retentionSave, |
|
|
|
|
|
|
|
} from '@/api/distribution/distributionDeliveryList'; |
|
|
|
} from '@/api/distribution/distributionDeliveryList'; |
|
|
|
import { showOrderPackgeCode } from '@/api/distribution/distributionStockArticle'; |
|
|
|
import { showOrderPackgeCode } from '@/api/distribution/distributionStockArticle'; |
|
|
|
import { exportBlob } from '@/api/common'; |
|
|
|
import { exportBlob } from '@/api/common'; |
|
|
@ -4030,7 +4034,7 @@ export default { |
|
|
|
}); |
|
|
|
}); |
|
|
|
this.AbnormalReviewloading = false; //关闭加载 |
|
|
|
this.AbnormalReviewloading = false; //关闭加载 |
|
|
|
console.log(); |
|
|
|
console.log(); |
|
|
|
this.viewAbnormalLoading(this.toexamineID); //审核完成更新数据 |
|
|
|
this.viewAbnormalLoading(this.toexamineID); //驳回完成更新数据 |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
@ -4647,6 +4651,40 @@ export default { |
|
|
|
}) |
|
|
|
}) |
|
|
|
.catch(() => {}); |
|
|
|
.catch(() => {}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 异常审核滞留 |
|
|
|
|
|
|
|
abnormalretention(row) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ElMessageBox.confirm('是否确认滞留操作?', '提示', { |
|
|
|
|
|
|
|
confirmButtonText: '确定', |
|
|
|
|
|
|
|
cancelButtonText: '取消', |
|
|
|
|
|
|
|
type: 'warning', |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
.then(() => { |
|
|
|
|
|
|
|
let data = { |
|
|
|
|
|
|
|
barcode: row.packageCode, |
|
|
|
|
|
|
|
deliveryId: row.deliveryListId, |
|
|
|
|
|
|
|
retentionType: '1', |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
this.loading = true; |
|
|
|
|
|
|
|
$_retentionScan(data) |
|
|
|
|
|
|
|
.then(res => { |
|
|
|
|
|
|
|
console.log(res, 'res'); |
|
|
|
|
|
|
|
if (res.data.code == 200) { |
|
|
|
|
|
|
|
ElMessage({ |
|
|
|
|
|
|
|
message: '滞留成功', |
|
|
|
|
|
|
|
type: 'success', |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
this.viewAbnormalLoading(this.toexamineID); //驳回完成更新数据 |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
.catch(() => { |
|
|
|
|
|
|
|
this.loading = false; |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
.catch(() => {}); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
// 包件批量签收 |
|
|
|
// 包件批量签收 |
|
|
|
Batchpackages() { |
|
|
|
Batchpackages() { |
|
|
|
if (!this.selectionList.length) { |
|
|
|
if (!this.selectionList.length) { |
|
|
|