howie před 2 roky
rodič
revize
4fe3574259

+ 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;
             }