XMLWAN 3 years ago
parent
commit
607389b5ee

+ 6 - 4
src/xt_pages/data/druguseTemplate.vue View File

1817
         })
1817
         })
1818
       },
1818
       },
1819
       handleSelect1(){
1819
       handleSelect1(){
1820
-
1820
+       this.templateForm.drug_id =  val.id
1821
       },
1821
       },
1822
-      handleSelect(){
1823
-
1822
+      handleSelect(val){
1823
+        console.log("val23232",val)
1824
+        this.templateForm.drug_id =  val.id
1824
       },
1825
       },
1825
       submitTemplate(formName) {
1826
       submitTemplate(formName) {
1826
 
1827
 
2376
           this.templateForm.week_days = this.templateForm.weekday.filter(function(s) {
2377
           this.templateForm.week_days = this.templateForm.weekday.filter(function(s) {
2377
             return s && s.trim()
2378
             return s && s.trim()
2378
           }).join(',')
2379
           }).join(',')
2380
+          this.templateForm.way = 1
2379
         }
2381
         }
2380
         console.log("编辑模板",this.templateForm)
2382
         console.log("编辑模板",this.templateForm)
2381
-
2383
+      
2382
         // 编辑创建医嘱模版
2384
         // 编辑创建医嘱模版
2383
         CreateSingleAdviceTemplate(this.templateForm).then(response => {
2385
         CreateSingleAdviceTemplate(this.templateForm).then(response => {
2384
           if (response.data.state == 0) {
2386
           if (response.data.state == 0) {

+ 3 - 2
src/xt_pages/stock/cancelStockOrderAdd.vue View File

109
                 style="padding-top: 17px"
109
                 style="padding-top: 17px"
110
               >
110
               >
111
                 <el-input
111
                 <el-input
112
+                  oninput="value=value.replace(/\D|^0/g,'')"
112
                   placeholder="请输入退库数量"
113
                   placeholder="请输入退库数量"
113
                   type="number"
114
                   type="number"
114
                   v-model="scope.row.return_count"
115
                   v-model="scope.row.return_count"
128
                 style="padding-top: 17px"
129
                 style="padding-top: 17px"
129
               >
130
               >
130
                 <el-input
131
                 <el-input
131
-                 oninput="value=value.replace(/[^0-9.]/g,'')"
132
-                  placeholder="请输入退库数量"
132
+                 
133
+                  placeholder="请输入单价"
133
                   type="number"
134
                   type="number"
134
                   v-model="scope.row.price"
135
                   v-model="scope.row.price"
135
                 ></el-input>      
136
                 ></el-input>      

+ 4 - 3
src/xt_pages/stock/cancelStockOrderEdit.vue View File

75
             <template slot-scope="scope">
75
             <template slot-scope="scope">
76
               <el-form-item :prop="'recordData.' + scope.$index + '.count'" :rules='tableRules.count'
76
               <el-form-item :prop="'recordData.' + scope.$index + '.count'" :rules='tableRules.count'
77
                             style="padding-top: 17px">
77
                             style="padding-top: 17px">
78
-                <el-input type="number" v-model="scope.row.count"  oninput="value=value.replace(/[^0-9.]/g,'')"></el-input>
78
+                <el-input type="number" v-model="scope.row.count"  oninput="value=value.replace(/\D|^0/g,'')"></el-input>
79
               </el-form-item>
79
               </el-form-item>
80
             </template>
80
             </template>
81
           </el-table-column>
81
           </el-table-column>
82
           <el-table-column width="150" align="center">
82
           <el-table-column width="150" align="center">
83
             <template slot="header" slot-scope="scope">
83
             <template slot="header" slot-scope="scope">
84
-              <span>退库单价<span style="color: red">*</span></span>
84
+              <span>单价<span style="color: red">*</span></span>
85
             </template>
85
             </template>
86
             <template slot-scope="scope">
86
             <template slot-scope="scope">
87
               <el-form-item
87
               <el-form-item
90
                 style="padding-top: 17px"
90
                 style="padding-top: 17px"
91
               >
91
               >
92
                 <el-input
92
                 <el-input
93
-                  placeholder="请输入退库数量"
93
+                  placeholder="请输入单价"
94
                   type="number"
94
                   type="number"
95
                   v-model="scope.row.price"
95
                   v-model="scope.row.price"
96
                 ></el-input>      
96
                 ></el-input>      
513
               'cancelStock': this.recordInfo.recordData
513
               'cancelStock': this.recordInfo.recordData
514
             }
514
             }
515
             console.log("parasm23232",params)
515
             console.log("parasm23232",params)
516
+         
516
             editCancelStockInfo(params, this.return_time, this.$route.query.id, this.$route.query.type,this.form.manufacturer,this.form.dealer).then(response => {
517
             editCancelStockInfo(params, this.return_time, this.$route.query.id, this.$route.query.type,this.form.manufacturer,this.form.dealer).then(response => {
517
               if (response.data.state == 0) {
518
               if (response.data.state == 0) {
518
                 this.$message.error(response.data.msg)
519
                 this.$message.error(response.data.msg)

+ 3 - 1
src/xt_pages/stock/drugs/cancelDrugStockOrderAdd.vue View File

155
               >
155
               >
156
               <div style="display:flex;">
156
               <div style="display:flex;">
157
                 <el-input
157
                 <el-input
158
-                  oninput="value=value.replace(/[^0-9.]/g,'')"
158
+                   oninput="value=value.replace(/\D|^0/g,'')"
159
                   style="width:100px"
159
                   style="width:100px"
160
                   placeholder="请输入退库数量"
160
                   placeholder="请输入退库数量"
161
                   type="number"
161
                   type="number"
691
         this.currentIndex = val
691
         this.currentIndex = val
692
       },
692
       },
693
       handleSelect(val){
693
       handleSelect(val){
694
+         console.log("val23232",val)
694
          this.getDrugBatchNumber(val.id)
695
          this.getDrugBatchNumber(val.id)
695
          for(let i=0;i<this.recordInfo.recordData.length;i++){
696
          for(let i=0;i<this.recordInfo.recordData.length;i++){
696
            if(i == this.currentIndex){
697
            if(i == this.currentIndex){
699
              this.recordInfo.recordData[i].drug_type = val.drug_type
700
              this.recordInfo.recordData[i].drug_type = val.drug_type
700
              this.recordInfo.recordData[i].name  = val.dose +val.dose_unit+"*"+val.min_number+ val.min_unit+"/"+val.max_unit
701
              this.recordInfo.recordData[i].name  = val.dose +val.dose_unit+"*"+val.min_number+ val.min_unit+"/"+val.max_unit
701
              this.recordInfo.recordData[i].last_price = val.last_price
702
              this.recordInfo.recordData[i].last_price = val.last_price
703
+             this.recordInfo.recordData[i].price = val.last_price
702
              this.recordInfo.recordData[i].manufacturer =  val.manufacturer
704
              this.recordInfo.recordData[i].manufacturer =  val.manufacturer
703
              this.recordInfo.recordData[i].number =  val.number
705
              this.recordInfo.recordData[i].number =  val.number
704
              this.recordInfo.recordData[i].max_unit = val.max_unit
706
              this.recordInfo.recordData[i].max_unit = val.max_unit

+ 2 - 1
src/xt_pages/stock/drugs/cancelDrugStockOrderEdit.vue View File

81
               >
81
               >
82
               <div style="display:flex;">
82
               <div style="display:flex;">
83
                 <el-input
83
                 <el-input
84
-                 oninput="value=value.replace(/[^0-9.]/g,'')"
84
+                 oninput="value=value.replace(/\D|^0/g,'')"
85
                   style="width:100px"
85
                   style="width:100px"
86
                   placeholder="请输入退库数量"
86
                   placeholder="请输入退库数量"
87
                   type="number"
87
                   type="number"
668
              this.recordInfo.recordData[i].drug_type = val.drug_type
668
              this.recordInfo.recordData[i].drug_type = val.drug_type
669
              this.recordInfo.recordData[i].name  = val.dose +val.dose_unit+"*"+val.min_number+ val.min_unit+"/"+val.max_unit
669
              this.recordInfo.recordData[i].name  = val.dose +val.dose_unit+"*"+val.min_number+ val.min_unit+"/"+val.max_unit
670
              this.recordInfo.recordData[i].last_price = val.last_price
670
              this.recordInfo.recordData[i].last_price = val.last_price
671
+             this.recordInfo.recordData[i].price = val.price
671
              this.recordInfo.recordData[i].manufacturer =  val.manufacturer
672
              this.recordInfo.recordData[i].manufacturer =  val.manufacturer
672
              this.recordInfo.recordData[i].number =  val.number
673
              this.recordInfo.recordData[i].number =  val.number
673
              this.recordInfo.recordData[i].max_unit = val.max_unit
674
              this.recordInfo.recordData[i].max_unit = val.max_unit

+ 8 - 7
src/xt_pages/stock/drugs/components/drugCancelDetail.vue View File

66
       ></el-date-picker>
66
       ></el-date-picker>
67
     </div>
67
     </div>
68
 
68
 
69
-    <div class="cell clearfix">
69
+    <!-- <div class="cell clearfix">
70
       <label class="title"><span class="name">单据类型</span> : </label>
70
       <label class="title"><span class="name">单据类型</span> : </label>
71
       <el-select
71
       <el-select
72
         size="small"
72
         size="small"
83
         >
83
         >
84
         </el-option>
84
         </el-option>
85
       </el-select>
85
       </el-select>
86
-    </div>
87
-
86
+    </div> -->
87
+<!-- 
88
     <div class="cell clearfix">
88
     <div class="cell clearfix">
89
       <label class="title"><span class="name">其它</span> : </label>
89
       <label class="title"><span class="name">其它</span> : </label>
90
       <el-select
90
       <el-select
102
         >
102
         >
103
         </el-option>
103
         </el-option>
104
       </el-select>
104
       </el-select>
105
-    </div>
105
+    </div> -->
106
 
106
 
107
     <el-row :gutter="12" style="margin-top: 10px">
107
     <el-row :gutter="12" style="margin-top: 10px">
108
       <el-table
108
       <el-table
140
 
140
 
141
         <el-table-column label="规格型号" align="center">
141
         <el-table-column label="规格型号" align="center">
142
           <template slot-scope="scope">
142
           <template slot-scope="scope">
143
-            <span>{{scope.row.drug_spec}}</span>
143
+            <span>{{scope.row.dose}}{{scope.row.dose_unit}}*{{scope.row.min_number}}{{scope.row.min_unit}}/{{scope.row.max_unit}}</span>
144
           </template>
144
           </template>
145
         </el-table-column>
145
         </el-table-column>
146
 
146
 
358
       getDrugCancelDetail(params).then(response=>{
358
       getDrugCancelDetail(params).then(response=>{
359
          if(response.data.state == 1){
359
          if(response.data.state == 1){
360
            var order =  response.data.data.order
360
            var order =  response.data.data.order
361
-           console.log("退库详细",order)
361
+           console.log("退库详细222222222222222222",order)
362
            this.tableData = order
362
            this.tableData = order
363
            this.tableList = order
363
            this.tableList = order
364
            var total = response.data.data.total
364
            var total = response.data.data.total
387
     exportList(){
387
     exportList(){
388
        for(let i=0;i<this.tableList.length;i++){
388
        for(let i=0;i<this.tableList.length;i++){
389
           this.tableList[i].index = i+1
389
           this.tableList[i].index = i+1
390
+          this.tableList[i].unit = this.tableList[i].dose + this.tableList[i].dose_unit + "*"+this.tableList[i].min_number + this.tableList[i].min_unit+"/"+this.tableList[i].max_unit
390
         }
391
         }
391
        import('@/vendor/Export2Excel').then(excel => {
392
        import('@/vendor/Export2Excel').then(excel => {
392
        const tHeader = ['序号','药品名称', '规格型号', '单位','数量','单价','备注']
393
        const tHeader = ['序号','药品名称', '规格型号', '单位','数量','单价','备注']
393
-       const filterVal = ['index','drug_name', 'drug_spec', 'min_unit','count','price','remark']
394
+       const filterVal = ['index','drug_name', 'unit', 'min_unit','count','price','remark']
394
        
395
        
395
        const data = this.formatJson(filterVal, this.tableList)
396
        const data = this.formatJson(filterVal, this.tableList)
396
        console.log("data",data)
397
        console.log("data",data)

+ 1 - 1
src/xt_pages/stock/drugs/components/drugOutDetail.vue View File

172
         </el-table-column>
172
         </el-table-column>
173
         <el-table-column label="总价" align="center">
173
         <el-table-column label="总价" align="center">
174
           <template slot-scope="scope">
174
           <template slot-scope="scope">
175
-            {{scope.row.total_price}}
175
+            {{scope.row.price * scope.row.count}}
176
           </template>
176
           </template>
177
         </el-table-column>
177
         </el-table-column>
178
       </el-table>
178
       </el-table>

+ 3 - 2
src/xt_pages/stock/drugs/drugBatchNumber.vue View File

66
         </el-table-column>
66
         </el-table-column>
67
          <el-table-column prop="drug_name" label="批号" align="center">
67
          <el-table-column prop="drug_name" label="批号" align="center">
68
            <template slot-scope="scope">
68
            <template slot-scope="scope">
69
-              {{scope.row.number}}
69
+              {{scope.row.batch_number}}
70
            </template>
70
            </template>
71
         </el-table-column>
71
         </el-table-column>
72
          <el-table-column prop="drug_name" label="入库数量" align="center">
72
          <el-table-column prop="drug_name" label="入库数量" align="center">
73
            <template slot-scope="scope">
73
            <template slot-scope="scope">
74
-              {{scope.row.stock_max_number}}{{scope.row.max_unit}}{{scope.row.stock_min_number}}{{scope.row.min_unit}}
74
+             {{scope.row.warehousing_count}}{{scope.row.max_unit}}
75
+              <!-- {{scope.row.stock_max_number}}{{scope.row.max_unit}}{{scope.row.stock_min_number}}{{scope.row.min_unit}} -->
75
            </template>
76
            </template>
76
         </el-table-column>
77
         </el-table-column>
77
         <el-table-column prop="drug_name" label="进货单价" align="center">
78
         <el-table-column prop="drug_name" label="进货单价" align="center">

+ 1 - 1
src/xt_pages/stock/drugs/drugCancelDetailPrint.vue View File

33
                 <span>{{item.drug_name}}</span>
33
                 <span>{{item.drug_name}}</span>
34
               </td>
34
               </td>
35
               <td style="line-height: 50px">
35
               <td style="line-height: 50px">
36
-                <span>{{item.drug_spec}}</span>
36
+                <span>{{item.dose}}{{item.dose_unit}}*{{item.min_number}}{{item.min_unit}}/{{item.max_unit}}</span>
37
               </td>
37
               </td>
38
               <td style="line-height: 50px">
38
               <td style="line-height: 50px">
39
                 <span>{{item.min_unit}}</span>
39
                 <span>{{item.min_unit}}</span>

+ 2 - 2
src/xt_pages/stock/drugs/drugIndex.vue View File

15
           <el-tab-pane label="出库明细">
15
           <el-tab-pane label="出库明细">
16
             <drug-out-detail></drug-out-detail>
16
             <drug-out-detail></drug-out-detail>
17
           </el-tab-pane>
17
           </el-tab-pane>
18
-          <!-- <el-tab-pane label="退库明细">
18
+          <el-tab-pane label="退库明细">
19
             <drug-cancel-detail></drug-cancel-detail>
19
             <drug-cancel-detail></drug-cancel-detail>
20
-          </el-tab-pane> -->
20
+          </el-tab-pane>
21
 
21
 
22
         </el-tabs>
22
         </el-tabs>
23
       </div>
23
       </div>

+ 3 - 1
src/xt_pages/stock/drugs/drugStockFlow.vue View File

170
       this.drugTypeList = getDictionaryDataConfig('system','drug_type') 
170
       this.drugTypeList = getDictionaryDataConfig('system','drug_type') 
171
       // this.getlist()
171
       // this.getlist()
172
       // this.getOutList()
172
       // this.getOutList()
173
-      // this.getDrugCountList()
173
+      this.getDrugCountList()
174
 
174
 
175
       this.getDrugFlow()
175
       this.getDrugFlow()
176
     },
176
     },
447
        if((count%min_number)!=0){
447
        if((count%min_number)!=0){
448
          str_min = count%min_number + min_unit
448
          str_min = count%min_number + min_unit
449
        }
449
        }
450
+       console.log("str2323222",str)
451
+       console.log("str22333333",str_min)
450
        return str+str_min
452
        return str+str_min
451
      },
453
      },
452
 
454
 

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

124
               >
124
               >
125
               <div style="display:flex;">
125
               <div style="display:flex;">
126
                 <el-input
126
                 <el-input
127
-                  oninput="value=value.replace(/[^0-9.]/g,'')"
127
+                  oninput="value=value.replace(/\D|^0/g,'')"
128
                   placeholder="请输入入库数量"
128
                   placeholder="请输入入库数量"
129
                   type="number"
129
                   type="number"
130
                   v-model="scope.row.warehousing_count"
130
                   v-model="scope.row.warehousing_count"
546
         tempObj['dose']= ''
546
         tempObj['dose']= ''
547
         tempObj['dose_unit']=''
547
         tempObj['dose_unit']=''
548
         tempObj['dealer'] = ''
548
         tempObj['dealer'] = ''
549
+        tempObj['last_price'] = ''
549
         this.recordInfo.recordData.push(tempObj)
550
         this.recordInfo.recordData.push(tempObj)
550
       }, handleDelete: function(index, row) {
551
       }, handleDelete: function(index, row) {
551
         if (this.recordInfo.recordData.length <= 1) {
552
         if (this.recordInfo.recordData.length <= 1) {
695
               'stockIn': this.recordInfo.recordData
696
               'stockIn': this.recordInfo.recordData
696
             }
697
             }
697
             console.log("params2222222",params)
698
             console.log("params2222222",params)
698
-            
699
+             
699
             postDrugWarehouse(params, this.warehousing_time, this.form.manufacturer, this.form.dealer, this.type).then(response => {
700
             postDrugWarehouse(params, this.warehousing_time, this.form.manufacturer, this.form.dealer, this.type).then(response => {
700
               if (response.data.state == 0) {
701
               if (response.data.state == 0) {
701
                 this.$message.error(response.data.msg)
702
                 this.$message.error(response.data.msg)

+ 2 - 2
src/xt_pages/stock/drugs/drugStockInOrderEdit.vue View File

189
               >
189
               >
190
                 <div style="display:flex;">
190
                 <div style="display:flex;">
191
                   <el-input
191
                   <el-input
192
-                    oninput="value=value.replace(/[^0-9.]/g,'')"
192
+                    oninput="value=value.replace(/\D|^0/g,'')"
193
                     placeholder="请输入入库数量"
193
                     placeholder="请输入入库数量"
194
                     type="number"
194
                     type="number"
195
                     v-model="scope.row.warehousing_count"
195
                     v-model="scope.row.warehousing_count"
676
             stockIn: this.recordInfo.recordData
676
             stockIn: this.recordInfo.recordData
677
           };
677
           };
678
           console.log("params22222222222",params)
678
           console.log("params22222222222",params)
679
-        
679
+          
680
           EditDrugWarehouse(
680
           EditDrugWarehouse(
681
             params,
681
             params,
682
             this.warehousing_time,
682
             this.warehousing_time,

+ 91 - 65
src/xt_pages/stock/drugs/drugStockOutOrder.vue View File

224
               {{scope.row.dose}}&nbsp;{{scope.row.dose_unit}}*{{scope.row.min_number}}{{scope.row.min_unit}}/{{scope.row.max_unit}}
224
               {{scope.row.dose}}&nbsp;{{scope.row.dose_unit}}*{{scope.row.min_number}}{{scope.row.min_unit}}/{{scope.row.max_unit}}
225
             </template>
225
             </template>
226
           </el-table-column>
226
           </el-table-column>
227
-          <el-table-column label="批号" align="center">
227
+          <!-- <el-table-column label="批号" align="center">
228
             <template slot-scope="scope">
228
             <template slot-scope="scope">
229
               <span v-if="scope.row.batch_number!=''">{{scope.row.batch_number}}</span> 
229
               <span v-if="scope.row.batch_number!=''">{{scope.row.batch_number}}</span> 
230
              <span v-if="scope.row.batch_number == '0'"></span> 
230
              <span v-if="scope.row.batch_number == '0'"></span> 
231
             </template>
231
             </template>
232
-          </el-table-column>
232
+          </el-table-column> -->
233
           <el-table-column label="出库数量" align="center">
233
           <el-table-column label="出库数量" align="center">
234
             <template slot-scope="scope">
234
             <template slot-scope="scope">
235
-              {{getTotalCount(scope.row.drug_id)}}
235
+              <!-- {{getTotalCount(scope.row.drug_id)}} -->
236
+              {{getTotalCountOne(scope.row.drug_id,scope.row.min_number,scope.row.max_unit,scope.row.min_unit)}}
236
             </template>
237
             </template>
237
           </el-table-column>
238
           </el-table-column>
238
           <el-table-column label="出货单价" align="center">
239
           <el-table-column label="出货单价" align="center">
305
               <span>序号</span>
306
               <span>序号</span>
306
             </template>
307
             </template>
307
             <template slot-scope="scope">
308
             <template slot-scope="scope">
308
-              <span v-if="scope.row.is_total == 0">{{scope.$index+1}}</span>
309
-              <span v-if="scope.row.is_total == 1">{{'合计'}}</span>
309
+              <!-- <span v-if="scope.row.is_total == 0">{{scope.$index+1}}</span>
310
+              <span v-if="scope.row.is_total == 1">{{'合计'}}</span> -->
311
+              {{scope.$index+1}}
312
+            
310
             </template>
313
             </template>
311
           </el-table-column>
314
           </el-table-column>
312
 
315
 
315
               <span>使用人</span>
318
               <span>使用人</span>
316
             </template>
319
             </template>
317
             <template slot-scope="scope">
320
             <template slot-scope="scope">
318
-              <span v-if="scope.row.is_total == 0">{{scope.row.user.name}}</span>
319
-              <span  v-if="scope.row.is_total == 1"></span>
321
+              <!-- <span v-if="scope.row.is_total == 0">{{scope.row.user.name}}</span>
322
+              <span  v-if="scope.row.is_total == 1"></span> -->
323
+              {{scope.row.user.name}}
320
             </template>
324
             </template>
321
           </el-table-column>
325
           </el-table-column>
322
           <el-table-column min-width="35" align="center">
326
           <el-table-column min-width="35" align="center">
325
             </template>
329
             </template>
326
             <template slot-scope="scope">
330
             <template slot-scope="scope">
327
               <span >{{scope.row.count}}{{scope.row.count_unit}}</span>
331
               <span >{{scope.row.count}}{{scope.row.count_unit}}</span>
328
-              <span  v-if="scope.row.is_total == 1">{{scope.row.total}}</span>
332
+              <!-- <span  v-if="scope.row.is_total == 1">{{scope.row.total}}</span> -->
329
             </template>
333
             </template>
330
           </el-table-column>
334
           </el-table-column>
331
 
335
 
334
               <span>使用时间</span>
338
               <span>使用时间</span>
335
             </template>
339
             </template>
336
             <template slot-scope="scope">
340
             <template slot-scope="scope">
337
-              <span  v-if="scope.row.is_total == 0">{{scope.row.ctime | parseTime('{y}-{m}-{d} {h}:{i}')}} </span>
341
+              <span>{{scope.row.ctime | parseTime('{y}-{m}-{d} {h}:{i}')}} </span>
338
             </template>
342
             </template>
339
           </el-table-column>
343
           </el-table-column>
340
 
344
 
347
               <span>{{getDrugBatchNumber(scope.row.id)}}</span>
351
               <span>{{getDrugBatchNumber(scope.row.id)}}</span>
348
             </template>
352
             </template>
349
           </el-table-column>
353
           </el-table-column>
350
-
354
+          
351
         </el-table>
355
         </el-table>
352
       </span>
356
       </span>
353
       <span slot="footer" class="dialog-footer">
357
       <span slot="footer" class="dialog-footer">
946
           this.tableShow = true
950
           this.tableShow = true
947
           this.tableList = []
951
           this.tableList = []
948
           var list =  response.data.data.list
952
           var list =  response.data.data.list
953
+          console.log("list2323232",list)
949
           var outList = response.data.data.outList
954
           var outList = response.data.data.outList
950
-          for(let i=0;i<outList.length;i++){
951
-              //如果都是最大单位,把最数量转为最小数量
952
-             if(outList[i].count_unit == outList[i].max_unit){
953
-                outList[i].count = outList[i].min_number * outList[i].count 
954
-             }
955
-          }
955
+          // for(let i=0;i<outList.length;i++){
956
+          //     //如果都是最大单位,把最数量转为最小数量
957
+          //    if(outList[i].count_unit == outList[i].max_unit){
958
+          //       outList[i].count = outList[i].min_number * outList[i].count 
959
+          //    }
960
+          // }
956
           this.outList = outList
961
           this.outList = outList
957
          console.log("outList222",outList)
962
          console.log("outList222",outList)
958
          this.manufacturerList = response.data.data.manufacturerList
963
          this.manufacturerList = response.data.data.manufacturerList
971
      })
976
      })
972
    },
977
    },
973
    toDetail(val){
978
    toDetail(val){
974
-     console.log("val",val)
979
+     this.userList = []
980
+     this.userListOne = []
975
      var params = {
981
      var params = {
976
        warehouse_out_id:val.warehouse_out_id,
982
        warehouse_out_id:val.warehouse_out_id,
977
        drug_id:val.drug_id,
983
        drug_id:val.drug_id,
978
        record_time:val.sys_record_time,
984
        record_time:val.sys_record_time,
979
      }
985
      }
980
-     this.userList = []
981
      getAutoDrugDetail(params).then(response=>{
986
      getAutoDrugDetail(params).then(response=>{
982
        if(response.data.state == 1){
987
        if(response.data.state == 1){
983
-        console.log("list23232323232",response.data.data.list)
984
-      
985
-        var total = 0
986
-        for (let i = 0; i < response.data.data.list.length; i++) {
987
-          var obj = response.data.data.list[i]
988
-          obj['is_total'] = 0
989
-          this.userList.push(obj)
990
-          var str = 0
991
-          var max_unit = ""
992
-          var min_unit = ""
993
-          var number = 0
994
-          var min_str = 0
995
-         for(let i=0;i<response.data.data.list.length;i++){
996
-             min_str = response.data.data.list[0].drug.min_str
997
-             max_unit = response.data.data.list[0].drug.max_unit
998
-             min_unit = response.data.data.list[0].drug.min_unit
999
-             number = response.data.data.list[0].drug.min_number
1000
-           if(response.data.data.list[i].count_unit == response.data.data.list[i].drug.max_unit){
1001
-              response.data.data.list[i].count = response.data.data.list[i].count * response.data.data.list[i].drug.min_number
1002
-           }
1003
-         }
1004
-         var total_count = 0
1005
-         for(let i=0;i<response.data.data.list.length;i++){
1006
-            total_count += response.data.data.list[i].count 
1007
-         }
1008
-         console.log("总规格2323232",total_count,number)
1009
-         
1010
-        if(parseInt(total_count)!=0){
1011
-          str = parseInt(total_count/number)
1012
-         }
1013
-        if(parseInt(total_count)!=0){
1014
-          min_str =  parseInt(total_count)%number
1015
-        }
1016
         
988
         
1017
-        total = str + max_unit + min_str + min_unit
1018
-        console.log("h2hh2h323",str,min_str)
1019
- 
1020
-        }
1021
-        this.userList.push({
1022
-          is_total: 1,
1023
-          total: total,
1024
-        })
989
+        this.userList = response.data.data.list
990
+        
1025
         if(val.is_sys == 1){
991
         if(val.is_sys == 1){
992
+        
1026
           this.drugDialogVisible = true
993
           this.drugDialogVisible = true
1027
         }
994
         }
1028
         if(val.is_sys == 0){
995
         if(val.is_sys == 0){
996
+         
1029
           this.drugDialogVisibleTwo = true
997
           this.drugDialogVisibleTwo = true
1030
         }
998
         }
1031
          var userListOne = response.data.data.outList
999
          var userListOne = response.data.data.outList
1032
          console.log("手动出库2232332",userListOne)
1000
          console.log("手动出库2232332",userListOne)
1033
          this.userListOne = userListOne
1001
          this.userListOne = userListOne
1002
+         var  batchNumber = response.data.data.batchNumber
1003
+         console.log("出库详情",batchNumber)
1034
        }
1004
        }
1035
      })
1005
      })
1036
    },
1006
    },
1107
          }
1077
          }
1108
          return str + min_str
1078
          return str + min_str
1109
       },
1079
       },
1080
+      getTotalCountOne(id,min_number,max_unit,min_unit){
1081
+       
1082
+        for(let i=0;i<this.outList.length;i++){
1083
+          if(this.outList[i].count_unit == this.outList[i].max_unit){
1084
+            this.outList[i].total_count = this.outList[i].count * this.outList[i].min_number
1085
+          }
1086
+
1087
+         if(this.outList[i].count_unit == this.outList[i].min_unit){
1088
+            this.outList[i].total_count = this.outList[i].count
1089
+          }
1090
+       
1091
+        }
1092
+        console.log("我的",this.outList)
1093
+          let dataInfo = {};
1094
+          this.outList.forEach((item, index) => {
1095
+            let { drug_id } = item;
1096
+            if (!dataInfo[drug_id]) {
1097
+              dataInfo[drug_id] = {
1098
+                drug_id,
1099
+                child: [],
1100
+                total:0,
1101
+              };
1102
+            }
1103
+          });
1104
+        let list = Object.values(dataInfo);
1105
+        console.log("drug_id22222",list)
1106
+        for(let i=0;i<list.length;i++){
1107
+          for(let j=0;j<this.outList.length;j++){
1108
+            if(list[i].drug_id == this.outList[j].drug_id){
1109
+              list[i].child.push(this.outList[j])
1110
+            }
1111
+          }
1112
+        }
1113
+       var total = 0
1114
+       for(let i=0;i<list.length;i++){
1115
+        for(let j=0;j<list[i].child.length;j++){
1116
+           if(id == list[i].child[j].drug_id){
1117
+             total+= list[i].child[j].total_count
1118
+           }
1119
+        }
1120
+       }
1121
+      
1122
+      var str = ""
1123
+      var min_str = ""
1124
+      
1125
+      str = parseInt(total/min_number)+ max_unit
1126
+      min_str =  total%min_number + min_unit
1127
+
1128
+     return str + min_str
1129
+      
1130
+       
1131
+     },
1110
       getAllPrice(drug_id,price,min_price){
1132
       getAllPrice(drug_id,price,min_price){
1111
          var strprice = 0
1133
          var strprice = 0
1112
          var minstrprice = 0
1134
          var minstrprice = 0
1137
         
1159
         
1138
         for(let i=0;i<this.userList.length;i++){
1160
         for(let i=0;i<this.userList.length;i++){
1139
            if(id == this.userList[i].id){
1161
            if(id == this.userList[i].id){
1140
-            arr.push(this.userList[i].drugwarehouseoutinfo)
1162
+             for(let j=0;j<this.userList[i].drugwarehouseoutinfo.length;j++){
1163
+                batchNumber.push(this.userList[i].drugwarehouseoutinfo[j].batch_number)
1164
+             }
1141
            }
1165
            }
1142
         }
1166
         }
1143
-        if(batchNumber.length > 0 ){
1144
-         for(let j=0;j<arr.length;j++){
1145
-           batchNumber.push(arr[j].batch_number)
1146
-          }
1147
-        }
1167
+        // console.log("arr",arr)
1168
+        // if(arr.length > 0 ){
1169
+        //  for(let j=0;j<arr.length;j++){
1170
+        //    batchNumber.push(arr[j].batch_number)
1171
+        //   }
1172
+        // }
1173
+        // console.log("hhhhhh",batchNumber)
1148
         return batchNumber.join(",")
1174
         return batchNumber.join(",")
1149
       },
1175
       },
1150
     
1176
     

+ 1 - 1
src/xt_pages/stock/drugs/drugStockOutOrderAdd.vue View File

149
               >
149
               >
150
                 <div style="display:flex;">
150
                 <div style="display:flex;">
151
                   <el-input
151
                   <el-input
152
-                    oninput="value=value.replace(/[^0-9.]/g,'')"
152
+                     oninput="value=value.replace(/\D|^0/g,'')"
153
                     style="width:80px"
153
                     style="width:80px"
154
                     placeholder="请输入出库数量"
154
                     placeholder="请输入出库数量"
155
                     type="number"
155
                     type="number"

+ 70 - 15
src/xt_pages/stock/drugs/drugStockOutOrderEdit.vue View File

90
               </template>
90
               </template>
91
                 <template slot-scope="scope">
91
                 <template slot-scope="scope">
92
                   <el-form-item style="padding-top: 20px">
92
                   <el-form-item style="padding-top: 20px">
93
-                    <el-input
93
+                    <!-- <el-input
94
                      :disabled="drug_show"
94
                      :disabled="drug_show"
95
                       placeholder="请输入批号"
95
                       placeholder="请输入批号"
96
                       v-model="scope.row.batch_number"
96
                       v-model="scope.row.batch_number"
97
-                    ></el-input>
97
+                    ></el-input> -->
98
+                    <el-select v-model="scope.row.batch_number" filterable placeholder="请选择">
99
+                      <el-option
100
+                        v-for="(item,index) in numberList"
101
+                        :key="index"
102
+                        :label="item.batch_number"
103
+                        :value="item.batch_number">
104
+                      </el-option>
105
+                    </el-select>
98
                   </el-form-item>
106
                   </el-form-item>
99
               </template>
107
               </template>
100
           </el-table-column>
108
           </el-table-column>
110
               >
118
               >
111
                 <div style="display:flex;">
119
                 <div style="display:flex;">
112
                   <el-input
120
                   <el-input
113
-                   oninput="value=value.replace(/[^0-9.]/g,'')"
121
+                   oninput="value=value.replace(/\D|^0/g,'')"
114
                    style="width:100px"
122
                    style="width:100px"
115
                    :disabled="drug_show"
123
                    :disabled="drug_show"
116
                     placeholder="请输入出库数量"
124
                     placeholder="请输入出库数量"
258
 <script>
266
 <script>
259
   import { uParseTime } from '@/utils/tools'
267
   import { uParseTime } from '@/utils/tools'
260
 
268
 
261
-  import { deleteDrugWarehouseOutInfo, editDrugWarehouseoutInfo, getDrugSalesReturnConfig, getDrugWarehouseOutInfo,GetAllConfig,GetAllDrugInfoByID } from '@/api/drug/drug_stock'
269
+  import { deleteDrugWarehouseOutInfo, editDrugWarehouseoutInfo, getDrugSalesReturnConfig, getDrugWarehouseOutInfo,GetAllConfig,GetAllDrugInfoByID,getDrugBatchNumber } from '@/api/drug/drug_stock'
262
   import BreadCrumb from '../../components/bread-crumb'
270
   import BreadCrumb from '../../components/bread-crumb'
263
   import DrugsStockDialog from './drugsStockDialog/index'
271
   import DrugsStockDialog from './drugsStockDialog/index'
264
   import {postSearchDrugList } from "@/api/data"
272
   import {postSearchDrugList } from "@/api/data"
330
         manufacturerList:[],
338
         manufacturerList:[],
331
         drug_show:false,
339
         drug_show:false,
332
         unitList:[],
340
         unitList:[],
333
-        unitShow:true
341
+        unitShow:true,
342
+        numberList:[]
334
       }
343
       }
335
     },
344
     },
336
     methods: {
345
     methods: {
434
         tempObj['id'] = 0
443
         tempObj['id'] = 0
435
         tempObj['drug_id'] = 0
444
         tempObj['drug_id'] = 0
436
         tempObj['retail_price'] = ''
445
         tempObj['retail_price'] = ''
437
-
438
         tempObj['count'] = ''
446
         tempObj['count'] = ''
439
         tempObj['price'] = ''
447
         tempObj['price'] = ''
440
         tempObj['remark'] = ''
448
         tempObj['remark'] = ''
441
         tempObj['batch_number'] = ''
449
         tempObj['batch_number'] = ''
442
         tempObj['number'] = ''
450
         tempObj['number'] = ''
451
+        tempObj['count_unit'] = ""
452
+        tempObj['dealer'] = 0
453
+        tempObj['manufacturer'] = 0
443
         this.recordInfo.recordData.push(tempObj)
454
         this.recordInfo.recordData.push(tempObj)
444
       }, handleDelete: function(index, row) {
455
       }, handleDelete: function(index, row) {
445
         if(this.drug_show == true){
456
         if(this.drug_show == true){
470
           }).catch(() => {
481
           }).catch(() => {
471
           })
482
           })
472
         }
483
         }
473
-      }, getTime(val, temp) {
474
-        if (val != 0) {
475
-          return uParseTime(val, temp)
476
-        } else {
477
-          return ''
478
-        }
484
+      }, 
485
+      // getTime(val, temp) {
486
+      //   if (val != 0) {
487
+      //     return uParseTime(val, temp)
488
+      //   } else {
489
+      //     return ''
490
+      //   }
491
+      // },
492
+     getTime(val) {
493
+         if(val < 0){
494
+           return ""
495
+         }
496
+         if(val == ""){
497
+          return ""
498
+         }else {
499
+          return uParseTime(val, '{y}-{m}-{d}')
500
+         }
479
       },
501
       },
480
       showDialog(index, row) {
502
       showDialog(index, row) {
481
         this.currentIndex = index;
503
         this.currentIndex = index;
557
               'stockOut': this.recordInfo.recordData
579
               'stockOut': this.recordInfo.recordData
558
             }
580
             }
559
             console.log("params----",params)
581
             console.log("params----",params)
582
+           
560
             editDrugWarehouseoutInfo(params, this.warehouse_out_time, this.$route.query.id, this.$route.query.type, this.form.manufacturer, this.form.dealer).then(response => {
583
             editDrugWarehouseoutInfo(params, this.warehouse_out_time, this.$route.query.id, this.$route.query.type, this.form.manufacturer, this.form.dealer).then(response => {
561
               if (response.data.state == 0) {
584
               if (response.data.state == 0) {
562
                 this.$message.error(response.data.msg)
585
                 this.$message.error(response.data.msg)
563
                 return false
586
                 return false
564
               } else {
587
               } else {
565
-                this.$message.success('保存成功')
566
-                this.$router.back(-1)
588
+                var msg = response.data.data.msg
589
+                var drug_name =  response.data.data.drug_name
590
+                console.log("drug_name",drug_name)
591
+                var dose = response.data.data.dose
592
+                console.log("dose",dose)
593
+                var dose_unit = response.data.data.dose_unit
594
+                console.log("dose_unit",dose_unit)
595
+                var min_number = response.data.data.min_number
596
+                console.log("min_number",min_number)
597
+                var min_unit =  response.data.data.min_unit
598
+                console.log("min_unit",min_unit)
599
+                var max_unit =  response.data.data.max_unit
600
+                console.log("max_unit",max_unit)
601
+                var str = drug_name + " " + dose + dose_unit + "*" + min_number + min_unit+"/"+max_unit
602
+                console.log("str22222222",str)
603
+              if(msg == 1){
604
+                this.$message.error(str + "库存不足,请入库")
605
+              }else{
606
+                this.$message.success("出库成功");
607
+                this.recordInfo.recordData = [];
608
+                this.$router.back(-1);
609
+              }
567
               }
610
               }
568
             })
611
             })
569
           } else {
612
           } else {
693
         this.currentIndex = val
736
         this.currentIndex = val
694
       },
737
       },
695
       handleSelect(val){
738
       handleSelect(val){
739
+         this.getDrugBatchNumber(val.id)
696
          for(let i=0;i<this.recordInfo.recordData.length;i++){
740
          for(let i=0;i<this.recordInfo.recordData.length;i++){
697
            if(i == this.currentIndex){
741
            if(i == this.currentIndex){
698
              this.recordInfo.recordData[i].drug_id  = val.id
742
              this.recordInfo.recordData[i].drug_id  = val.id
704
              this.recordInfo.recordData[i].number = val.number
748
              this.recordInfo.recordData[i].number = val.number
705
              this.recordInfo.recordData[i].max_unit = val.max_unit
749
              this.recordInfo.recordData[i].max_unit = val.max_unit
706
              this.recordInfo.recordData[i].min_unit = val.min_unit
750
              this.recordInfo.recordData[i].min_unit = val.min_unit
707
-           
708
            }
751
            }
709
         }
752
         }
710
         console.log("333333",this.recordInfo.recordData)
753
         console.log("333333",this.recordInfo.recordData)
715
      getDataConfig(module, filed_name){
758
      getDataConfig(module, filed_name){
716
        return getDataConfig(module, filed_name)
759
        return getDataConfig(module, filed_name)
717
      },
760
      },
761
+     getDrugBatchNumber(id){
762
+          var params = {
763
+            id:id
764
+          }
765
+        getDrugBatchNumber(params).then(response=>{
766
+           if(response.data.state == 1){
767
+             var list = response.data.data.list
768
+             console.log("list2222",list)
769
+             this.numberList = list
770
+           }
771
+        })
772
+      }
718
     },
773
     },
719
     created() {
774
     created() {
720
       this.drugTypeList = getDictionaryDataConfig('system','drug_type') 
775
       this.drugTypeList = getDictionaryDataConfig('system','drug_type') 

+ 2 - 2
src/xt_pages/stock/stockFlow.vue View File

87
            </template>
87
            </template>
88
         </el-table-column>
88
         </el-table-column>
89
      
89
      
90
-       <el-table-column label="是否退库" align="center">
90
+       <!-- <el-table-column label="是否退库" align="center">
91
          <template slot-scope="scope">
91
          <template slot-scope="scope">
92
            <span v-if="scope.row.is_edit == 2">是</span>
92
            <span v-if="scope.row.is_edit == 2">是</span>
93
            <span v-if="scope.row.is_edit ==1">否</span>   
93
            <span v-if="scope.row.is_edit ==1">否</span>   
94
          </template>
94
          </template>
95
-       </el-table-column>
95
+       </el-table-column> -->
96
 
96
 
97
        <el-table-column label="批次" align="center">
97
        <el-table-column label="批次" align="center">
98
          <template slot-scope="scope">
98
          <template slot-scope="scope">

+ 2 - 2
src/xt_pages/stock/stockInOrderAdd.vue View File

101
             <template slot-scope="scope">
101
             <template slot-scope="scope">
102
               <el-form-item :prop="'recordData.' + scope.$index + '.warehousing_count'"
102
               <el-form-item :prop="'recordData.' + scope.$index + '.warehousing_count'"
103
                             :rules='tableRules.warehousing_count' style="padding-top: 20px">
103
                             :rules='tableRules.warehousing_count' style="padding-top: 20px">
104
-                <el-input placeholder="请输入入库数量" type="number" v-model="scope.row.warehousing_count"  oninput="value=value.replace(/[^0-9.]/g,'')"></el-input>
104
+                <el-input placeholder="请输入入库数量" type="number" v-model="scope.row.warehousing_count"  oninput="value=value.replace(/\D|^0/g,'')"></el-input>
105
                   {{scope.row.min_unit}}
105
                   {{scope.row.min_unit}}
106
               </el-form-item>
106
               </el-form-item>
107
             
107
             
167
             </template>
167
             </template>
168
             <template slot-scope="scope">
168
             <template slot-scope="scope">
169
               <el-form-item style="padding-top: 20px">
169
               <el-form-item style="padding-top: 20px">
170
-                <el-input placeholder="请输入批号" v-model="scope.row.license_number" ></el-input>
170
+                <el-input placeholder="请输入批准文号" v-model="scope.row.license_number" ></el-input>
171
               </el-form-item>
171
               </el-form-item>
172
             </template>
172
             </template>
173
           </el-table-column>
173
           </el-table-column>

+ 3 - 6
src/xt_pages/stock/stockInOrderEdit.vue View File

198
                 style="padding-top: 20px"
198
                 style="padding-top: 20px"
199
               >
199
               >
200
                 <el-input
200
                 <el-input
201
-                  oninput="value=value.replace(/[^0-9.]/g,'')"
201
+                  oninput="value=value.replace(/\D|^0/g,'')"
202
                   placeholder="请输入入库数量"
202
                   placeholder="请输入入库数量"
203
                   type="number"
203
                   type="number"
204
                   v-model="scope.row.warehousing_count"
204
                   v-model="scope.row.warehousing_count"
272
             <template slot-scope="scope">
272
             <template slot-scope="scope">
273
               <el-form-item style="padding-top: 20px">
273
               <el-form-item style="padding-top: 20px">
274
                 <el-input
274
                 <el-input
275
-                  placeholder="请输入批号"
275
+                  placeholder="请输入批准文号"
276
                   v-model="scope.row.license_number"
276
                   v-model="scope.row.license_number"
277
                   
277
                   
278
                 ></el-input>
278
                 ></el-input>
525
       tempObj["remark"] = "";
525
       tempObj["remark"] = "";
526
       tempObj["dealer"] = "";
526
       tempObj["dealer"] = "";
527
       tempObj["manufacturer"] = "";
527
       tempObj["manufacturer"] = "";
528
-      tempObj["number"] = ""
529
       tempObj["license_number"] = ""
528
       tempObj["license_number"] = ""
530
       this.recordInfo.recordData.push(tempObj);
529
       this.recordInfo.recordData.push(tempObj);
531
     },
530
     },
672
             stockIn: this.recordInfo.recordData
671
             stockIn: this.recordInfo.recordData
673
           };
672
           };
674
           console.log("params2222",params)
673
           console.log("params2222",params)
675
-       
674
+        
676
           EditWarehouse(
675
           EditWarehouse(
677
             params,
676
             params,
678
             this.warehousing_time,
677
             this.warehousing_time,
831
               this.numberList.push(val.xt_warehouse_info[j])
830
               this.numberList.push(val.xt_warehouse_info[j])
832
             }
831
             }
833
             this.recordInfo.recordData[i].number = val.xt_warehouse_info[0].number
832
             this.recordInfo.recordData[i].number = val.xt_warehouse_info[0].number
834
-          }else{
835
-            this.recordInfo.recordData[i].number = ""
836
           }
833
           }
837
         }
834
         }
838
      
835
      

+ 18 - 3
src/xt_pages/stock/stockOutOrder.vue View File

418
               <span>批次号</span>
418
               <span>批次号</span>
419
             </template>
419
             </template>
420
             <template slot-scope="scope">
420
             <template slot-scope="scope">
421
-               {{scope.row.number}}
421
+               <!-- {{scope.row.number}} -->
422
+               {{getBatchNumber(scope.row.patient_id,scope.row.good_id)}}
422
             </template>
423
             </template>
423
           </el-table-column>
424
           </el-table-column>
424
           <el-table-column min-width="35" align="center">
425
           <el-table-column min-width="35" align="center">
632
               <span>批次号</span>
633
               <span>批次号</span>
633
             </template>
634
             </template>
634
             <template slot-scope="scope">
635
             <template slot-scope="scope">
635
-              <span v-if="scope.row.is_total == 0">{{getNumber(scope.row.id)}}</span>
636
+              <!-- <span v-if="scope.row.is_total == 0">{{getNumber(scope.row.id)}}</span> -->
637
+               <span v-if="scope.row.is_total ==0">{{getBatchNumber(scope.row.patient_id,scope.row.good_id)}}</span>
636
             </template>
638
             </template>
637
           </el-table-column>
639
           </el-table-column>
638
 <!-- 
640
 <!-- 
805
       warehouse_out_time:"",
807
       warehouse_out_time:"",
806
       exportList:[],
808
       exportList:[],
807
       is_sys:0,
809
       is_sys:0,
808
-      infoList:[]
810
+      infoList:[],
811
+      stockFlowList:[]
809
     };
812
     };
810
   },
813
   },
811
   methods: {
814
   methods: {
1532
               var info = response.data.data.info
1535
               var info = response.data.data.info
1533
               this.infoList = info
1536
               this.infoList = info
1534
               console.log("info列表22222222",info)
1537
               console.log("info列表22222222",info)
1538
+              var stockflowlist = response.data.data.stockFlowList
1539
+              console.log("stockflowlist",stockflowlist)
1540
+              this.stockFlowList = stockflowlist
1535
               for (let i = 0; i < arrList.length; i++) {
1541
               for (let i = 0; i < arrList.length; i++) {
1536
                 var obj = arrList[i]
1542
                 var obj = arrList[i]
1537
                 obj['is_total'] = 0
1543
                 obj['is_total'] = 0
1656
     formatJson(filterVal, jsonData) {
1662
     formatJson(filterVal, jsonData) {
1657
     return jsonData.map(v => filterVal.map(j => v[j]));
1663
     return jsonData.map(v => filterVal.map(j => v[j]));
1658
    },
1664
    },
1665
+   getBatchNumber(patient_id,good_id){
1666
+     var arr = []
1667
+     for(let i=0;i<this.stockFlowList.length;i++){
1668
+        if(patient_id == this.stockFlowList[i].patient_id && good_id == this.stockFlowList[i].good_id){
1669
+           arr.push(this.stockFlowList[i].number)
1670
+        }
1671
+     }
1672
+     return arr.join(',')
1673
+   }
1659
   }
1674
   }
1660
 };
1675
 };
1661
 </script>
1676
 </script>

+ 1 - 0
src/xt_pages/stock/stockOutOrderAdd.vue View File

146
                 style="padding-top: 17px"
146
                 style="padding-top: 17px"
147
               >
147
               >
148
                 <el-input
148
                 <el-input
149
+                 oninput="value=value.replace(/\D|^0/g,'')"
149
                   placeholder="请输入出库数量"
150
                   placeholder="请输入出库数量"
150
                   type="number"
151
                   type="number"
151
                   v-model="scope.row.count"
152
                   v-model="scope.row.count"

+ 1 - 1
src/xt_pages/stock/stockOutOrderEdit.vue View File

139
             <template slot-scope="scope">
139
             <template slot-scope="scope">
140
               <el-form-item :prop="'recordData.' + scope.$index + '.count'" :rules='tableRules.count'
140
               <el-form-item :prop="'recordData.' + scope.$index + '.count'" :rules='tableRules.count'
141
                             style="padding-top: 17px">
141
                             style="padding-top: 17px">
142
-                <el-input type="number" v-model="scope.row.count"  :disabled="stockShow"></el-input>
142
+                <el-input type="number" v-model="scope.row.count"  :disabled="stockShow"   oninput="value=value.replace(/\D|^0/g,'')"></el-input>
143
               </el-form-item>
143
               </el-form-item>
144
             </template>
144
             </template>
145
           </el-table-column>
145
           </el-table-column>

+ 7 - 1
src/xt_pages/user/components/PatientDetail.vue View File

955
               <div class="proj">
955
               <div class="proj">
956
                 <span class="proj_title">日期:</span>
956
                 <span class="proj_title">日期:</span>
957
                 <!-- {{ getTime(patientPrint.created_time) }} -->
957
                 <!-- {{ getTime(patientPrint.created_time) }} -->
958
+                {{printDate}}
958
               </div>
959
               </div>
959
               <div class="proj"><span class="proj_title">医生签名:</span></div>
960
               <div class="proj"><span class="proj_title">医生签名:</span></div>
960
             </div>
961
             </div>
1134
       patientID: 0,
1135
       patientID: 0,
1135
       patientPrint: {},
1136
       patientPrint: {},
1136
       print_time: "",
1137
       print_time: "",
1137
-
1138
+      printDate:"",
1138
       rules: {
1139
       rules: {
1139
         contagions: [{ type: "array", required: false, trigger: "change" }],
1140
         contagions: [{ type: "array", required: false, trigger: "change" }],
1140
         avatar: [{ required: true, message: "请上传头像", trigger: "blur" }],
1141
         avatar: [{ required: true, message: "请上传头像", trigger: "blur" }],
1203
     this.getZones();
1204
     this.getZones();
1204
     var ptime = Math.round(new Date().getTime() / 1000);
1205
     var ptime = Math.round(new Date().getTime() / 1000);
1205
     // this.print_time = uParseTime(ptime, '{y}-{m}-{d} {h}:{i}');
1206
     // this.print_time = uParseTime(ptime, '{y}-{m}-{d} {h}:{i}');
1207
+
1208
+    var data = new Date();
1209
+    var month =data.getMonth() < 9 ? "0" + (data.getMonth() + 1) : data.getMonth() + 1;
1210
+    var date = data.getDate() <= 9 ? "0" + data.getDate() : data.getDate();
1211
+    this.printDate = data.getFullYear() + "-" + month + "-" + date;
1206
   },
1212
   },
1207
   methods: {
1213
   methods: {
1208
     getTime(val) {
1214
     getTime(val) {