Browse Source

no message

linwenxin 1 năm trước cách đây
mục cha
commit
21f61b48f0

+ 1 - 1
src/views/auxiliaryFittings/purchasingManagement/components/inStorage.vue

@@ -138,7 +138,7 @@ export default {
     passExamination() {
       this.$refs.formRef.validate((valid, invalidFields, errLabels) => {
         if (valid) {
-          websitPurchaseInConfirm({ purchaseId: this.formData.purchaseId, flag: "OK" }).then(res => {
+          websitPurchaseInConfirm({ purchaseId: this.formData.purchaseId, flag: "OK", storageId: this?.formData?.storageId  }).then(res => {
             this.$message({ type: 'success', message: `审核通过!` })
             this.formCancel()
             this.$refs.pageRef.refreshList()

+ 1 - 1
src/views/auxiliaryFittings/purchasingManagement/components/retStorage.vue

@@ -142,7 +142,7 @@ export default {
     passExamination(flag) {
       this.$refs.formRef.validate((valid, invalidFields, errLabels) => {
         if (valid) {
-          websitPurchaseRetConfirm({ purchaseRetId: this.formData.purchaseRetId, flag: flag }).then(res => {
+          websitPurchaseRetConfirm({ purchaseRetId: this.formData.purchaseRetId, flag: flag, storageId: this?.formData?.storageId }).then(res => {
             this.$message({ type: 'success', message: flag=='OK'?`审核通过!`:'驳回通过' })
             this.formCancel()
             this.$refs.pageRef.refreshList()