howie 2 سال پیش
والد
کامیت
4fe3574259
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      src/views/supply/policy/components/retail_detail.vue

+ 2 - 2
src/views/supply/policy/components/retail_detail.vue

@@ -972,8 +972,8 @@ export default {
       this.$refs.deliverForm.validate((valid) => {
         if (valid) {
           for(let i=0; i<this.goodsList.length; i++) {
-            console.log(this.goodsList[i].adjustNum == '' , this.goodsList[i].isDirectTransfer);
-            if(this.goodsList[i].isDirectTransfer  && (this.goodsList[i].adjustNum == '' || Number(this.goodsList[i].adjustNum)<0)) {
+
+            if(this.goodsList[i].isDirectTransfer  && this.goodsList[i].adjustNum === '') {
               this.$errorMsg('请输入直调数量');
               return;
             }