Browse Source

新分支

28169 1 year ago
parent
commit
06e9ad32b9

+ 10 - 0
src/api/his/his.js View File

836
 }
836
 }
837
 
837
 
838
 
838
 
839
+export function getfapiaonumber(){
840
+  return request({
841
+    url:"/api/getfapiaonumber",
842
+    method:"get",
843
+  })
844
+}
845
+
846
+
847
+
848
+
839
 
849
 
840
 
850
 
841
 
851
 

+ 2 - 2
src/api/stock.js View File

273
   })
273
   })
274
 }
274
 }
275
 
275
 
276
-export function postWarehouseOut(params, warehousing_time, dealer_id, manufacturer_id, type, storehouse_id) {
276
+export function postWarehouseOut(params, warehousing_time, dealer_id, manufacturer_id, type, storehouse_id,warehouseOut_id) {
277
   return request({
277
   return request({
278
-    url: '/api/warehouseout/create?warehousing_out_time=' + warehousing_time + '&dealer_id=' + dealer_id + '&manufacturer_id=' + manufacturer_id + '&type=' + type + '&storehouse_id=' + storehouse_id,
278
+    url: '/api/warehouseout/create?warehousing_out_time=' + warehousing_time + '&dealer_id=' + dealer_id + '&manufacturer_id=' + manufacturer_id + '&type=' + type + '&storehouse_id=' + storehouse_id+"&warehouseOut_id="+warehouseOut_id,
279
     method: 'post',
279
     method: 'post',
280
     data: params
280
     data: params
281
   })
281
   })

+ 13 - 2
src/xt_pages/dialysis/batch_print/batch_print_order_six.vue View File

1489
                             }}
1489
                             }}
1490
                           </td>
1490
                           </td>
1491
                           <td>
1491
                           <td>
1492
-                            {{
1492
+                            <span v-if="org_id ==10551">
1493
+                              {{
1493
                               monitor_record.venous_pressure
1494
                               monitor_record.venous_pressure
1494
                                 ? monitor_record.venous_pressure
1495
                                 ? monitor_record.venous_pressure
1495
                                 : "/"
1496
                                 : "/"
1496
-                            }}
1497
+                              }}
1498
+                            </span>
1499
+
1500
+                            <span v-if="org_id !=10551">
1501
+                              {{
1502
+                              monitor_record.venous_pressure
1503
+                                ? monitor_record.venous_pressure
1504
+                                : ""
1505
+                              }}
1506
+                            </span>
1507
+                           
1497
                           </td>
1508
                           </td>
1498
                           <td>
1509
                           <td>
1499
                             {{
1510
                             {{

+ 12 - 2
src/xt_pages/dialysis/template/DialysisPrintOrderSix.vue View File

1498
                           }}
1498
                           }}
1499
                         </td>
1499
                         </td>
1500
                         <td>
1500
                         <td>
1501
-                          {{
1501
+                          <span v-if="org_id ==10551">
1502
+                            {{
1502
                             monitor.venous_pressure
1503
                             monitor.venous_pressure
1503
                               ? monitor.venous_pressure
1504
                               ? monitor.venous_pressure
1504
                               : "/"
1505
                               : "/"
1505
-                          }}
1506
+                            }}
1507
+                          </span>
1508
+                          <span v-if="org_id!=10551">
1509
+                            {{
1510
+                            monitor.venous_pressure
1511
+                              ? monitor.venous_pressure
1512
+                              : ""
1513
+                            }}
1514
+                          </span>
1515
+                          
1506
                         </td>
1516
                         </td>
1507
                         <td>
1517
                         <td>
1508
                           <span
1518
                           <span

+ 16 - 3
src/xt_pages/outpatientCharges/components/chargeDialog.vue View File

137
 
137
 
138
       <el-form-item label="发票编码:">
138
       <el-form-item label="发票编码:">
139
         <div style="display:flex;">
139
         <div style="display:flex;">
140
-          <el-input v-model.number="form.fapiao_code"></el-input>
140
+          <el-input v-model="form.fapiao_code"></el-input>
141
         </div>
141
         </div>
142
       </el-form-item>
142
       </el-form-item>
143
 
143
 
144
 
144
 
145
       <el-form-item label="发票号码:">
145
       <el-form-item label="发票号码:">
146
-        <div style="display:flex;">
147
-          <el-input v-model.number="form.fapiao_number"></el-input>
146
+        <div style=" display:flex;">
147
+          <el-input v-model="form.fapiao_number"></el-input>
148
         </div>
148
         </div>
149
       </el-form-item>
149
       </el-form-item>
150
 
150
 
165
     idtobalance
165
     idtobalance
166
   }from "@/api/deposit";
166
   }from "@/api/deposit";
167
 
167
 
168
+  import {
169
+    getfapiaonumber
170
+  }from "@/api/his/his";
171
+
172
+
173
+
168
   export default {
174
   export default {
169
     name: 'chargeDialog',
175
     name: 'chargeDialog',
170
 
176
 
324
           this.tmp_pay = this.form.pay_price
330
           this.tmp_pay = this.form.pay_price
325
           this.form.pay_price = ((parseFloat(this.form.private_price)*10000 - parseFloat(this.form.tmp_decimal)*10000)/10000).toFixed(2)
331
           this.form.pay_price = ((parseFloat(this.form.private_price)*10000 - parseFloat(this.form.tmp_decimal)*10000)/10000).toFixed(2)
326
         }
332
         }
333
+      },getfapiaonumber(){
334
+        getfapiaonumber().then((res) => {
335
+          if (res.data.state == 1) {
336
+            this.form.fapiao_number = res.data.data.fapiao_number;
337
+          }
338
+        })
327
       },
339
       },
328
       //查询用户当前的余额
340
       //查询用户当前的余额
329
       updateconfig(){
341
       updateconfig(){
352
         this.id =id
364
         this.id =id
353
         this.form.dec_way = false
365
         this.form.dec_way = false
354
         this.updateconfig()
366
         this.updateconfig()
367
+        this.getfapiaonumber()
355
         this.form.total = total
368
         this.form.total = total
356
         this.form.private_price = total
369
         this.form.private_price = total
357
         this.form.pay_price = total
370
         this.form.pay_price = total

+ 2 - 2
src/xt_pages/outpatientCharges/invoicePrint.vue View File

18
           </div>
18
           </div>
19
           <printTwo v-if="org_id == 10106" :paramsObj="invoiceParams"></printTwo>
19
           <printTwo v-if="org_id == 10106" :paramsObj="invoiceParams"></printTwo>
20
           <printFour v-if="org_id == 10215 || org_id == 4 " :paramsObj="invoiceParams"></printFour>
20
           <printFour v-if="org_id == 10215 || org_id == 4 " :paramsObj="invoiceParams"></printFour>
21
-          <!-- <printFive v-if="org_id == 10188 " :paramsObj="invoiceParams"></printFive> -->
22
-          <printthirteen v-if="org_id == 10188 || org_id == 0 " :paramsObj="invoiceParams"></printthirteen>
21
+          <printFive v-if="org_id == 10188 " :paramsObj="invoiceParams"></printFive>
22
+          <!-- <printthirteen v-if="org_id == 10188 || org_id == 0 " :paramsObj="invoiceParams"></printthirteen> -->
23
 <!--          <printEight v-if="org_id == 10387 || org_id == 0" :paramsObj="invoiceParams"></printEight>-->
23
 <!--          <printEight v-if="org_id == 10387 || org_id == 0" :paramsObj="invoiceParams"></printEight>-->
24
           <print-eight v-if="org_id == 10387" :paramsObj="invoiceParams"></print-eight>
24
           <print-eight v-if="org_id == 10387" :paramsObj="invoiceParams"></print-eight>
25
           <PrintNight v-if="org_id == 10210" :paramsObj="invoiceParams"></PrintNight>
25
           <PrintNight v-if="org_id == 10210" :paramsObj="invoiceParams"></PrintNight>

+ 4 - 4
src/xt_pages/outpatientCharges/invoiceTemplate/printtwelve.vue View File

96
         </div>
96
         </div>
97
       </div>
97
       </div>
98
       <div style="display: flex;">
98
       <div style="display: flex;">
99
-        <div :style="{position: 'absolute',top:(170+(index * 450))+'px',left:'75px'}">{{list.westernMedicineCostTotal?list.westernMedicineCostTotal:""}}</div>
100
-        <div :style="{position: 'absolute',top:(170+(index * 450))+'px',left:'121px'}"></div>
101
-        <div :style="{position: 'absolute',top:(170+(index * 450))+'px',left:'270px'}">{{ list.operationCostTotal?list.operationCostTotal:""}}</div>
102
-        <div :style="{position: 'absolute',top:(170+(index * 450))+'px',left:'310px'}"></div>
99
+        <div :style="{position: 'absolute',top:(155+(index * 450))+'px',left:'75px'}">{{list.westernMedicineCostTotal?list.westernMedicineCostTotal:""}}</div>
100
+        <div :style="{position: 'absolute',top:(155+(index * 450))+'px',left:'121px'}"></div>
101
+        <div :style="{position: 'absolute',top:(155+(index * 450))+'px',left:'270px'}">{{ list.operationCostTotal?list.operationCostTotal:""}}</div>
102
+        <div :style="{position: 'absolute',top:(155+(index * 450))+'px',left:'310px'}"></div>
103
       </div>
103
       </div>
104
       <div style="display: flex;">
104
       <div style="display: flex;">
105
         <div :style="{position: 'absolute',top:(190+(index * 450))+'px',left:'75px'}">{{list.chineseTraditionalMedicineCostTotal?list.chineseTraditionalMedicineCostTotal:""}}</div>
105
         <div :style="{position: 'absolute',top:(190+(index * 450))+'px',left:'75px'}">{{list.chineseTraditionalMedicineCostTotal?list.chineseTraditionalMedicineCostTotal:""}}</div>

+ 2 - 2
src/xt_pages/outpatientDoctorStation/print.vue View File

99
   getAllDoctorList,
99
   getAllDoctorList,
100
   getAllHisPatientList,
100
   getAllHisPatientList,
101
 } from "@/api/project/project";
101
 } from "@/api/project/project";
102
-import PrintTen from '../outpatientCharges/invoiceTemplate/printTen.vue'
102
+import PrintTen from '../outpatientCharges/invoiceTemplate/printTen'
103
 import PrintTenOne from './template/printTenOne.vue'
103
 import PrintTenOne from './template/printTenOne.vue'
104
 export default {
104
 export default {
105
   name: "dialysisPrintOrder",
105
   name: "dialysisPrintOrder",
159
       }
159
       }
160
        else {
160
        else {
161
         const style =
161
         const style =
162
-          "@media print {#prescription-print{font-size:14px;}.prescription-print:last-child {page-break-after: auto;}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}.infoTitle{display: flex;border-bottom: 2px solid #000;margin-top:10px;line-height: 1px; padding:0 10px;}.infoTitle p{width: 200px;font-size:14px;}.infoMain{display: flex;flex-wrap: wrap;border-bottom: 2px solid #000;padding:0 10px;}.infoMain div{width: 50%;line-height: 24px;}.prescriptionBox{padding:0 10px;min-height:450px;}.Rp{font-size: 22px;font-weight: bold;}.drugsBox{padding-left: 40px;margin-bottom: 10px;position: relative;}.drugsBox div{line-height: 20px;width:80%} .drugsOne{line-height: 1px;} .drugsOne span{margin-right: 20px;} .doctorBoxxxx{display: flex; justify-content: space-between; padding:0 10px; line-height: 1px; border-bottom: 2px solid #000;} .actionBar{display: flex; justify-content: space-between; line-height: 1px; padding:0 10px;} .doctorBoxxxx p {margin-left: auto} .actionBar p{width:150px;}}";
162
+          "@media print {#prescription-print{font-size:14px;}.prescription-print:last-child {page-break-after: auto;}.printTitle{font-size: 22px;text-align: center;font-weight: bold;}.infoTitle{display: flex;border-bottom: 2px solid #000;margin-top:10px;line-height: 1px; padding:0 10px;}.infoTitle p{width: 200px;font-size:14px;}.infoMain{display: flex;flex-wrap: wrap;border-bottom: 2px solid #000;padding:0 10px;}.infoMain div{width: 50%;line-height: 24px;}.prescriptionBox{padding:0 10px;min-height:300px;}.Rp{font-size: 22px;font-weight: bold;}.drugsBox{padding-left: 40px;margin-bottom: 10px;position: relative;}.drugsBox div{line-height: 20px;width:80%} .drugsOne{line-height: 1px;} .drugsOne span{margin-right: 20px;} .doctorBoxxxx{display: flex; justify-content: space-between; padding:0 10px; line-height: 1px; border-bottom: 2px solid #000;} .actionBar{display: flex; justify-content: space-between; line-height: 1px; padding:0 10px;} .doctorBoxxxx p {margin-left: auto} .actionBar p{width:150px;}}";
163
         printJS({
163
         printJS({
164
           printable: "prescriptionPrint",
164
           printable: "prescriptionPrint",
165
           type: "html",
165
           type: "html",

+ 9 - 0
src/xt_pages/sign/signIn.vue View File

45
                         <div :class="Object.keys(queueInfo).length>0 ? 'signInMainLeft' : 'signInMainLeft100'">
45
                         <div :class="Object.keys(queueInfo).length>0 ? 'signInMainLeft' : 'signInMainLeft100'">
46
                             <div class="signInMainLeftTitle">
46
                             <div class="signInMainLeftTitle">
47
                                 <p>排队号</p>
47
                                 <p>排队号</p>
48
+                                <p v-if="$store.getters.xt_user.org.id==3877 || $store.getters.xt_user.org.id==10485">床位号</p>
48
                                 <p>姓名</p>
49
                                 <p>姓名</p>
49
                                 <p>病历号</p>
50
                                 <p>病历号</p>
50
                                 <p>签到时间</p>
51
                                 <p>签到时间</p>
57
                                         <span v-if="item.schedule_type == 3">晚上</span>
58
                                         <span v-if="item.schedule_type == 3">晚上</span>
58
                                         {{ item.queue_no }}号
59
                                         {{ item.queue_no }}号
59
                                     </p>
60
                                     </p>
61
+                                    <p v-if="$store.getters.xt_user.org.id==3877 || $store.getters.xt_user.org.id==10485">{{ item.partition_name + item.bed_name }}</p>
60
                                     <p>{{ item.patient_name }}</p>
62
                                     <p>{{ item.patient_name }}</p>
61
                                     <p>{{ item.dialysis_no }}</p>
63
                                     <p>{{ item.dialysis_no }}</p>
62
                                     <p>{{ item.create_time }}</p>
64
                                     <p>{{ item.create_time }}</p>
138
                         <div :class="Object.keys(queueInfo).length>0 ? 'signInMainLeft' : 'signInMainLeft100'">
140
                         <div :class="Object.keys(queueInfo).length>0 ? 'signInMainLeft' : 'signInMainLeft100'">
139
                             <div class="signInMainLeftTitle">
141
                             <div class="signInMainLeftTitle">
140
                                 <p>排队号</p>
142
                                 <p>排队号</p>
143
+                                <p v-if="$store.getters.xt_user.org.id==3877 || $store.getters.xt_user.org.id==10485">床位号</p>
141
                                 <p>姓名</p>
144
                                 <p>姓名</p>
142
                                 <p>病历号</p>
145
                                 <p>病历号</p>
146
+                                
143
                                 <p>签到时间</p>
147
                                 <p>签到时间</p>
144
                             </div>
148
                             </div>
145
                             <div class="signInList">
149
                             <div class="signInList">
150
                                         <span v-if="item.schedule_type == 3">晚上</span>
154
                                         <span v-if="item.schedule_type == 3">晚上</span>
151
                                         {{ item.queue_no }}号
155
                                         {{ item.queue_no }}号
152
                                     </p>
156
                                     </p>
157
+                                    <p v-if="$store.getters.xt_user.org.id==3877 || $store.getters.xt_user.org.id==10485">{{ item.partition_name + item.bed_name }}</p>
153
                                     <p>{{ item.patient_name }}</p>
158
                                     <p>{{ item.patient_name }}</p>
154
                                     <p>{{ item.dialysis_no }}</p>
159
                                     <p>{{ item.dialysis_no }}</p>
155
                                     <p>{{ item.create_time }}</p>
160
                                     <p>{{ item.create_time }}</p>
257
         },
262
         },
258
     },
263
     },
259
     created(){
264
     created(){
265
+        
260
         if(sessionStorage.getItem('signInKey') != null){
266
         if(sessionStorage.getItem('signInKey') != null){
261
             if(sessionStorage.getItem('signInKey') == 1){
267
             if(sessionStorage.getItem('signInKey') == 1){
262
                 this.dialogTableVisible = true
268
                 this.dialogTableVisible = true
340
                     if(res.channel == 'queue/join'){
346
                     if(res.channel == 'queue/join'){
341
                         if(res.data.type == 1){
347
                         if(res.data.type == 1){
342
                             this.signInList = res.data.patientQueueList.data
348
                             this.signInList = res.data.patientQueueList.data
349
+                            console.log("signInListWOOWOWOWOWOWOW",this.signInList)
343
                             this.count = res.data.patientQueueList.count
350
                             this.count = res.data.patientQueueList.count
344
                             this.signInList.map(item => {
351
                             this.signInList.map(item => {
345
                                 item.create_time = moment(item.create_time * 1000).format('HH:mm:ss')
352
                                 item.create_time = moment(item.create_time * 1000).format('HH:mm:ss')
363
                     }else if(res.channel == 'queue/queuelist'){
370
                     }else if(res.channel == 'queue/queuelist'){
364
                         console.log(11111111111,res.data)
371
                         console.log(11111111111,res.data)
365
                         this.signInList = res.data.patientQueueList.data
372
                         this.signInList = res.data.patientQueueList.data
373
+                        console.log("signInListWOOWOWOWOWOWOW",this.signInList)
366
                         this.count = res.data.patientQueueList.count
374
                         this.count = res.data.patientQueueList.count
367
                         this.signInList.map(item => {
375
                         this.signInList.map(item => {
368
                             item.create_time = moment(item.create_time * 1000).format('HH:mm:ss')
376
                             item.create_time = moment(item.create_time * 1000).format('HH:mm:ss')
370
                     }else if(res.channel == 'queue/queuelistbyq'){
378
                     }else if(res.channel == 'queue/queuelistbyq'){
371
                         console.log(11111111111,res.data)
379
                         console.log(11111111111,res.data)
372
                         this.signInList = res.data.patientQueueList.data
380
                         this.signInList = res.data.patientQueueList.data
381
+                        console.log("signInListWOOWOWOWOWOWOW",this.signInList)
373
                         this.count = res.data.patientQueueList.count
382
                         this.count = res.data.patientQueueList.count
374
                         this.signInList.map(item => {
383
                         this.signInList.map(item => {
375
                             item.create_time = moment(item.create_time * 1000).format('HH:mm:ss')
384
                             item.create_time = moment(item.create_time * 1000).format('HH:mm:ss')

+ 3 - 0
src/xt_pages/stock/drugs/drugStockInOrderAdd.vue View File

821
           const array = this.recordInfo.recordData;
821
           const array = this.recordInfo.recordData;
822
           if (this.storehouse_id == 0) {
822
           if (this.storehouse_id == 0) {
823
             this.$message.error("仓库不能为空!");
823
             this.$message.error("仓库不能为空!");
824
+            this.loading = false;
824
             return false;
825
             return false;
825
           }
826
           }
826
           for (let i = 0; i < array.length; i++) {
827
           for (let i = 0; i < array.length; i++) {
827
             if (array[i].drug_id == 0) {
828
             if (array[i].drug_id == 0) {
828
               this.$message.error("药品名称或者药品规格名称不能为空");
829
               this.$message.error("药品名称或者药品规格名称不能为空");
830
+              this.loading = false;
829
               return;
831
               return;
830
             }
832
             }
831
           }
833
           }
832
 
834
 
833
           if (this.recordInfo.recordData.length <= 0) {
835
           if (this.recordInfo.recordData.length <= 0) {
834
             this.$message.success("请添加入库商品");
836
             this.$message.success("请添加入库商品");
837
+            this.loading = false;
835
             return;
838
             return;
836
           }
839
           }
837
 
840
 

+ 3 - 0
src/xt_pages/stock/query/purchaseNewStockQuery.vue View File

813
         count_two +=val3[i].count
813
         count_two +=val3[i].count
814
       }
814
       }
815
      }
815
      }
816
+     console.log("countwowowoowow3333",count)
817
+     console.log("count_one222222",count_one)
818
+     console.log("count_two222222",count_two)
816
      all_count = count +count_one - count_two
819
      all_count = count +count_one - count_two
817
      if(all_count >0){
820
      if(all_count >0){
818
        return all_count
821
        return all_count

+ 14 - 2
src/xt_pages/stock/stockOutOrderAdd.vue View File

661
           for (let i = 0; i < array.length; i++) {
661
           for (let i = 0; i < array.length; i++) {
662
             if (array[i].good_type_id == 0) {
662
             if (array[i].good_type_id == 0) {
663
               this.$message.error("商品类型不能为空");
663
               this.$message.error("商品类型不能为空");
664
+              this.loading = false
664
               return;
665
               return;
665
             }
666
             }
666
             if (array[i].good_id == 0) {
667
             if (array[i].good_id == 0) {
667
               this.$message.error("规格名称不能为空");
668
               this.$message.error("规格名称不能为空");
669
+              this.loading = false
668
               return;
670
               return;
669
             }
671
             }
670
             total = total + array[i].price * array[i].return_count;
672
             total = total + array[i].price * array[i].return_count;
671
           }
673
           }
672
           if (this.recordInfo.recordData.length <= 0) {
674
           if (this.recordInfo.recordData.length <= 0) {
673
             this.$message.success("请添加出库商品");
675
             this.$message.success("请添加出库商品");
676
+            this.loading = false
674
             return;
677
             return;
675
           }
678
           }
676
 
679
 
696
           }
699
           }
697
 
700
 
698
           for(let i=0;i<this.recordInfo.recordData.length;i++){
701
           for(let i=0;i<this.recordInfo.recordData.length;i++){
702
+             
703
+            if(parseInt(this.recordInfo.recordData[i].count) > parseInt(this.recordInfo.recordData[i].stock_count) ){
704
+               this.$message.error(this.recordInfo.recordData[i].good_name+"/"+this.recordInfo.recordData[i].specification_name+"库存不足!")
705
+               this.loading = false
706
+               return
707
+            }
708
+
699
             for(let j=0;j<this.manufacturerList.length;j++){
709
             for(let j=0;j<this.manufacturerList.length;j++){
700
               if(this.recordInfo.recordData[i].manufacturer == this.manufacturerList[j].manufacturer_name){
710
               if(this.recordInfo.recordData[i].manufacturer == this.manufacturerList[j].manufacturer_name){
701
                  this.recordInfo.recordData[i].manufacturer = this.manufacturerList[j].id
711
                  this.recordInfo.recordData[i].manufacturer = this.manufacturerList[j].id
720
               }
730
               }
721
 
731
 
722
             }
732
             }
733
+            
723
           }
734
           }
724
           const params = {
735
           const params = {
725
             stockOut: this.recordInfo.recordData
736
             stockOut: this.recordInfo.recordData
726
           };
737
           };
727
-
738
+          console.log("pramsswoowowowoow",params)
739
+          console.log(" this.warehouseOut_id", this.warehouseOut_id)
728
           const loading = this.$loading({
740
           const loading = this.$loading({
729
             lock: true,
741
             lock: true,
730
             text: 'Loading',
742
             text: 'Loading',
921
 
933
 
922
     },
934
     },
923
     getSupplyCount(count,sum_count,index){
935
     getSupplyCount(count,sum_count,index){
924
-
936
+       
925
       if(sum_count < count){
937
       if(sum_count < count){
926
         this.$message.error("出库数量不能大于剩余库存")
938
         this.$message.error("出库数量不能大于剩余库存")
927
         for(let i=0;i<this.recordInfo.recordData.length;i++){
939
         for(let i=0;i<this.recordInfo.recordData.length;i++){

+ 8 - 0
src/xt_pages/stock/stockOutOrderEdit.vue View File

648
             for (let i = 0; i < array.length; i++) {
648
             for (let i = 0; i < array.length; i++) {
649
               if (array[i].good_type_id == 0) {
649
               if (array[i].good_type_id == 0) {
650
                 this.$message.error('商品类型不能为空')
650
                 this.$message.error('商品类型不能为空')
651
+                this.loading = false
651
                 return
652
                 return
652
               }
653
               }
653
               if (array[i].good_id == 0) {
654
               if (array[i].good_id == 0) {
654
                 this.$message.error('规格名称不能为空')
655
                 this.$message.error('规格名称不能为空')
656
+                this.loading = false
655
                 return
657
                 return
656
               }
658
               }
657
             }
659
             }
658
             for(let i=0;i<this.recordInfo.recordData.length;i++){
660
             for(let i=0;i<this.recordInfo.recordData.length;i++){
661
+
662
+              if(parseInt(this.recordInfo.recordData[i].count) > parseInt(this.recordInfo.recordData[i].stock_count) ){
663
+                this.$message.error(this.recordInfo.recordData[i].good_name+"/"+this.recordInfo.recordData[i].specification_name+"库存不足!")
664
+                this.loading = false
665
+                return
666
+               }
659
                if(this.recordInfo.recordData[i].dealer == ""){
667
                if(this.recordInfo.recordData[i].dealer == ""){
660
                 this.recordInfo.recordData[i].dealer = 0
668
                 this.recordInfo.recordData[i].dealer = 0
661
              }
669
              }