XMLWAN 3 gadus atpakaļ
vecāks
revīzija
fef1dca8b9

+ 20 - 0
src/xt_pages/stock/drugs/drugBatchNumber.vue Parādīt failu

@@ -111,6 +111,26 @@
111 111
   export default {
112 112
     name: 'stockIn',
113 113
     created() {
114
+       var nowDate = new Date();
115
+      var nowYear = nowDate.getFullYear();
116
+      var nowMonth = nowDate.getMonth() + 1;
117
+      var nowDay = nowDate.getDate();
118
+      this.end_time =
119
+        nowYear +
120
+        "-" +
121
+        (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
122
+        "-" +
123
+        (nowDay < 10 ? "0" + nowDay : nowDay);
124
+      nowDate.setMonth(nowDate.getMonth() - 1);
125
+      nowYear = nowDate.getFullYear();
126
+      nowMonth = nowDate.getMonth() + 1;
127
+      nowDay = nowDate.getDate();
128
+      this.start_time =
129
+        nowYear +
130
+        "-" +
131
+        (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
132
+        "-" +
133
+        (nowDay < 10 ? "0" + nowDay : nowDay);
114 134
       var drugCategory = getDictionaryDataConfig('system','drug_category')
115 135
       this.drugCategory.push(...drugCategory)
116 136
       this.drugTypeList = getDictionaryDataConfig('system','drug_type') 

+ 20 - 0
src/xt_pages/stock/drugs/drugStockFlow.vue Parādīt failu

@@ -150,6 +150,26 @@
150 150
   export default {
151 151
     name: 'stockIn',
152 152
     created() {
153
+       var nowDate = new Date();
154
+      var nowYear = nowDate.getFullYear();
155
+      var nowMonth = nowDate.getMonth() + 1;
156
+      var nowDay = nowDate.getDate();
157
+      this.end_time =
158
+        nowYear +
159
+        "-" +
160
+        (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
161
+        "-" +
162
+        (nowDay < 10 ? "0" + nowDay : nowDay);
163
+      nowDate.setMonth(nowDate.getMonth() - 1);
164
+      nowYear = nowDate.getFullYear();
165
+      nowMonth = nowDate.getMonth() + 1;
166
+      nowDay = nowDate.getDate();
167
+      this.start_time =
168
+        nowYear +
169
+        "-" +
170
+        (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
171
+        "-" +
172
+        (nowDay < 10 ? "0" + nowDay : nowDay);
153 173
       var drugCategory = getDictionaryDataConfig('system','drug_category')
154 174
       this.drugCategory.push(...drugCategory)
155 175
       this.drugTypeList = getDictionaryDataConfig('system','drug_type') 

+ 26 - 7
src/xt_pages/stock/drugs/query.vue Parādīt failu

@@ -7,7 +7,6 @@
7 7
           size="small"
8 8
           class="filter-item"
9 9
           type="primary"
10
-          icon="el-icon-search"
11 10
           @click="setting"
12 11
         >设置
13 12
         </el-button
@@ -16,7 +15,7 @@
16 15
           size="small"
17 16
           class="filter-item"
18 17
           type="primary"
19
-          icon="el-icon-search"
18
+          icon="el-icon-printer"
20 19
           @click="printOrder"
21 20
         >打印
22 21
       </el-button>
@@ -24,7 +23,6 @@
24 23
           size="small"
25 24
           class="filter-item"
26 25
           type="primary"
27
-          icon="el-icon-search"
28 26
           @click="exportStock"
29 27
         >导出
30 28
         </el-button>
@@ -178,6 +176,26 @@ import { min } from 'moment'
178 176
   export default {
179 177
     name: 'stockIn',
180 178
     created() {
179
+      var nowDate = new Date();
180
+      var nowYear = nowDate.getFullYear();
181
+      var nowMonth = nowDate.getMonth() + 1;
182
+      var nowDay = nowDate.getDate();
183
+      this.end_time =
184
+        nowYear +
185
+        "-" +
186
+        (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
187
+        "-" +
188
+        (nowDay < 10 ? "0" + nowDay : nowDay);
189
+      nowDate.setMonth(nowDate.getMonth() - 1);
190
+      nowYear = nowDate.getFullYear();
191
+      nowMonth = nowDate.getMonth() + 1;
192
+      nowDay = nowDate.getDate();
193
+      this.start_time =
194
+        nowYear +
195
+        "-" +
196
+        (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
197
+        "-" +
198
+        (nowDay < 10 ? "0" + nowDay : nowDay);
181 199
       var drugCategory = getDictionaryDataConfig('system','drug_category')
182 200
       this.drugCategory.push(...drugCategory)
183 201
       var drugTypeList = getDictionaryDataConfig('system','drug_type') 
@@ -538,6 +556,7 @@ import { min } from 'moment'
538 556
           start_time:this.start_time,
539 557
           end_time:this.end_time,
540 558
          }
559
+         console.log("paramsw2ww",params)
541 560
         getDrugCountList(params).then(response=>{
542 561
           if(response.data.state == 1){
543 562
             var countlist =  response.data.data.countList
@@ -564,7 +583,7 @@ import { min } from 'moment'
564 583
         })
565 584
       },
566 585
       getInCount(id){
567
-        var count = ""
586
+        var count = 0
568 587
         for(let i=0;i<this.countList.length;i++){
569 588
            if(id == this.countList[i].drug_id){
570 589
              count = this.countList[i].count
@@ -574,7 +593,7 @@ import { min } from 'moment'
574 593
       },
575 594
 
576 595
       getOutCount(id){
577
-        var count = ""
596
+        var count = 0
578 597
         for(let i=0;i<this.outCountList.length;i++){
579 598
            if(id == this.outCountList[i].drug_id){
580 599
                count = this.outCountList[i].count
@@ -583,7 +602,7 @@ import { min } from 'moment'
583 602
         return count
584 603
       },
585 604
       getAutoCount(id){
586
-        var count= ""
605
+        var count= 0
587 606
         for(let i=0;i<this.autoCountList.length;i++){
588 607
           if(id == this.autoCountList[i].drug_id){
589 608
             count = this.autoCountList[i].count
@@ -592,7 +611,7 @@ import { min } from 'moment'
592 611
         return count
593 612
       },
594 613
       getMinCount(id){
595
-        var count=""
614
+        var count= 0
596 615
         for(let i=0;i<this.minCount.length;i++){
597 616
           if(id == this.minCount[i].drug_id){
598 617
             count = this.minCount[i].count

+ 20 - 0
src/xt_pages/stock/stockBatchNumber.vue Parādīt failu

@@ -118,6 +118,26 @@
118 118
   export default {
119 119
     name: 'stockIn',
120 120
     created() {
121
+      var nowDate = new Date();
122
+      var nowYear = nowDate.getFullYear();
123
+      var nowMonth = nowDate.getMonth() + 1;
124
+      var nowDay = nowDate.getDate();
125
+      this.end_time =
126
+        nowYear +
127
+        "-" +
128
+        (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
129
+        "-" +
130
+        (nowDay < 10 ? "0" + nowDay : nowDay);
131
+      nowDate.setMonth(nowDate.getMonth() - 1);
132
+      nowYear = nowDate.getFullYear();
133
+      nowMonth = nowDate.getMonth() + 1;
134
+      nowDay = nowDate.getDate();
135
+      this.start_time =
136
+        nowYear +
137
+        "-" +
138
+        (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
139
+        "-" +
140
+        (nowDay < 10 ? "0" + nowDay : nowDay);
121 141
       this.getlist()
122 142
       this.getStockDrugCount()
123 143
       this.packing_unit = this.$route.query.packing_unit

+ 23 - 1
src/xt_pages/stock/stockFlow.vue Parādīt failu

@@ -141,7 +141,26 @@
141 141
   export default {
142 142
     name: 'stockIn',
143 143
     created() {
144
-     
144
+      var nowDate = new Date();
145
+      var nowYear = nowDate.getFullYear();
146
+      var nowMonth = nowDate.getMonth() + 1;
147
+      var nowDay = nowDate.getDate();
148
+      this.end_time =
149
+        nowYear +
150
+        "-" +
151
+        (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
152
+        "-" +
153
+        (nowDay < 10 ? "0" + nowDay : nowDay);
154
+      nowDate.setMonth(nowDate.getMonth() - 1);
155
+      nowYear = nowDate.getFullYear();
156
+      nowMonth = nowDate.getMonth() + 1;
157
+      nowDay = nowDate.getDate();
158
+      this.start_time =
159
+        nowYear +
160
+        "-" +
161
+        (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
162
+        "-" +
163
+        (nowDay < 10 ? "0" + nowDay : nowDay);
145 164
       this.getlist()
146 165
       this.getStockDrugCount()
147 166
       this.getStockOutList()
@@ -211,17 +230,20 @@
211 230
       },
212 231
         
213 232
     startTimeChange: function(val) {
233
+      this.tableList = []
214 234
       var time = this.getTimestamp(val) - this.getTimestamp(this.end_time);
215 235
       
216 236
       if (time > 0) {
217 237
         this.$message.error("开始时间不能大于结束时间");
218 238
         this.start_time = "";
219 239
       } else {
240
+        
220 241
         this.getlist()
221 242
         this.getStockOutList()
222 243
       }
223 244
     },
224 245
     endTimeChange: function(val) {
246
+      this.tableList = []
225 247
       var time = this.getTimestamp(val) - this.getTimestamp(this.start_time);
226 248
       if (time < 0) {
227 249
         this.$message.error("结束时间不能小于开始时间");

+ 5 - 0
src/xt_pages/stock/stockInOrder.vue Parādīt failu

@@ -227,6 +227,11 @@
227 227
             {{ getTime(scope.row.expiry_date,"{y}-{m}-{d}")}}
228 228
           </template>
229 229
         </el-table-column>
230
+       <el-table-column label="批准文号" align="center">
231
+          <template slot-scope="scope">
232
+            {{ scope.row.license_number}}
233
+          </template>
234
+        </el-table-column>
230 235
         <el-table-column label="备注" align="center">
231 236
           <template slot-scope="scope">
232 237
             {{ scope.row.remark }}

+ 14 - 1
src/xt_pages/stock/stockInOrderAdd.vue Parādīt failu

@@ -186,6 +186,17 @@
186 186
 
187 187
             </template>
188 188
           </el-table-column>
189
+
190
+         <el-table-column align="center" width="150">
191
+            <template slot="header" slot-scope="scope">
192
+              <span>批准文号</span>
193
+            </template>
194
+            <template slot-scope="scope">
195
+              <el-form-item style="padding-top: 20px">
196
+                <el-input placeholder="请输入批号" v-model="scope.row.license_number"></el-input>
197
+              </el-form-item>
198
+            </template>
199
+          </el-table-column>
189 200
            <el-table-column label="经销商" align="center" width="150">
190 201
              <template slot-scope="scope">
191 202
                <el-select size="small" v-model="scope.row.dealer" filterable placeholder="请选择厂商">
@@ -512,6 +523,7 @@
512 523
         tempObj['good_unit'] = ''
513 524
         tempObj['specification_name'] = ''
514 525
         tempObj['name'] = ''
526
+        tempObj['license_number'] = ""
515 527
         this.recordInfo.recordData.push(tempObj)
516 528
       }, handleDelete: function(index, row) {
517 529
         if (this.recordInfo.recordData.length <= 1) {
@@ -679,7 +691,7 @@
679 691
               'stockIn': this.recordInfo.recordData
680 692
             }
681 693
             console.log("stockIn",this.recordInfo.recordData)
682
-           
694
+            
683 695
             postWarehouse(params, this.warehousing_time, this.form.manufacturer, this.form.dealer, this.type).then(response => {
684 696
               if (response.data.state == 0) {
685 697
                 this.$message.error(response.data.msg)
@@ -792,6 +804,7 @@
792 804
       tempObj['good_name'] = ''
793 805
       tempObj['specification_name'] = ''
794 806
       tempObj['name'] = ''
807
+      tempObj['license_number'] = ''
795 808
       this.recordInfo.recordData.push(tempObj)
796 809
       this.GetConfigInfo()
797 810
       this.propForm.goodUnit = this.$store.getters.good_unit

+ 15 - 8
src/xt_pages/stock/stockInOrderDetailPrint.vue Parādīt failu

@@ -46,7 +46,7 @@
46 46
                             <tbody>
47 47
                                 <tr v-for='(item,index) in it.child' :key="index">
48 48
                                     <td style="line-height:18px;"><span v-if="item.good_id != 0">{{getTypeNameOne(item.good_id)}}</span></td>
49
-                                    <td style="line-height:18px;">{{ item.remark }}</td>
49
+                                    <td style="line-height:18px;">{{ item.license_number }}</td>
50 50
                                     <td style="line-height:18px;"><span v-if="item.good_id != 0">{{getSpecificationName(item.good_id)}}</span></td>
51 51
                                     <td style="line-height:18px;">{{ getManufacturer(item.good_id) }}</td>
52 52
                                     <td style="line-height:18px;"><span v-if="item.good_id!=0">{{item.GoodInfo.packing_unit}}</span></td>
@@ -61,7 +61,7 @@
61 61
                                 </tr>
62 62
                                 <tr>
63 63
                                   <td>合计</td>
64
-                                  <td colspan="12" style="text-align:right;">{{allPrice.toFixed(2)}}</td>
64
+                                  <td colspan="12" style="text-align:right;">{{getAllPice(it.id).toFixed(2)}}</td>
65 65
                                </tr>
66 66
                             </tbody>
67 67
                         </table>
@@ -132,7 +132,8 @@ export default {
132 132
             orgName:'',
133 133
             orgId:'',
134 134
             adminUserOptions:[],
135
-            warehousingInfo:[]
135
+            warehousingInfo:[],
136
+            warehousList:[]
136 137
         }
137 138
     },
138 139
     methods:{
@@ -198,6 +199,7 @@ export default {
198 199
              console.log("info2222",info)
199 200
              var warehousing = response.data.data.warehousing
200 201
              console.log("warehousing",warehousing)
202
+             this.warehousList = info
201 203
              for(let i=0;i<warehousing.length;i++){
202 204
                 warehousing[i].child = []
203 205
               for(let j=0;j<info.length;j++){
@@ -207,11 +209,7 @@ export default {
207 209
               }
208 210
              }
209 211
              this.warehousingInfo = warehousing
210
-            var total_price = 0
211
-            for(let i=0;i<info.length;i++){
212
-               total_price += info[i].warehousing_count * info[i].price   
213
-            }
214
-            this.allPrice = total_price
212
+          
215 213
             }
216 214
         });
217 215
        },
@@ -340,6 +338,15 @@ export default {
340 338
         }
341 339
         return name;
342 340
       },
341
+      getAllPice(id){
342
+        var  total_price = 0 
343
+        for(let i=0;i<this.warehousList.length;i++){
344
+          if(id == this.warehousList[i].warehousing_id){
345
+             total_price += this.warehousList[i].warehousing_count * this.warehousList[i].price
346
+          }
347
+        }
348
+        return total_price
349
+      }
343 350
     },
344 351
     created(){
345 352
       this.orgName = this.$store.getters.xt_user.org.org_name;

+ 21 - 6
src/xt_pages/stock/stockInOrderEdit.vue Parādīt failu

@@ -263,6 +263,19 @@
263 263
                 value-format="yyyy-MM-dd"
264 264
               ></el-date-picker>
265 265
             </template>
266
+          </el-table-column>
267
+           <el-table-column align="center" width="150">
268
+            <template slot="header" slot-scope="scope">
269
+              <span>批准文号</span>
270
+            </template>
271
+            <template slot-scope="scope">
272
+              <el-form-item style="padding-top: 20px">
273
+                <el-input
274
+                  placeholder="请输入批号"
275
+                  v-model="scope.row.license_number"
276
+                ></el-input>
277
+              </el-form-item>
278
+            </template>
266 279
           </el-table-column>
267 280
           <el-table-column label="经销商" align="center" width="150">
268 281
              <template slot-scope="scope">
@@ -511,6 +524,7 @@ export default {
511 524
       tempObj["dealer"] = "";
512 525
       tempObj["manufacturer"] = "";
513 526
       tempObj["number"] = ""
527
+      tempObj["license_number"] = ""
514 528
       this.recordInfo.recordData.push(tempObj);
515 529
     },
516 530
     handleDelete: function(index, row) {
@@ -634,10 +648,10 @@ export default {
634 648
               return;
635 649
             }
636 650
           }
637
-          console.log("昌吉",this.manufacturerList)
651
+         
638 652
           for(let i=0;i<this.recordInfo.recordData.length;i++){
639 653
             this.recordInfo.recordData[i].price = this.recordInfo.recordData[i].price.toString()
640
-
654
+            
641 655
           for(let j=0;j<this.manufacturerList.length;j++){
642 656
               if(this.recordInfo.recordData[i].manufacturer == this.manufacturerList[j].manufacturer_name){
643 657
                   this.recordInfo.recordData[i].manufacturer = this.manufacturerList[j].id
@@ -676,6 +690,7 @@ export default {
676 690
       const params = {
677 691
         id: order_id
678 692
       };
693
+      console.log("parm2222222222",params)
679 694
       getWarehouseInfoList(params).then(response => {
680 695
         if (response.data.state == 0) {
681 696
           this.$message.error(response.data.msg);
@@ -699,17 +714,16 @@ export default {
699 714
             response.data.data.info[i].packing_unit = response.data.data.info[i].GoodInfo.packing_unit
700 715
             
701 716
            
702
-           
703 717
             this.recordInfo.recordData.push(response.data.data.info[i]);
704 718
            
705 719
             console.log("列表",this.recordInfo.recordData)
706 720
           }
707 721
 
708 722
           this.warehouse = response.data.data.warehousing;
709
-        
710
-
723
+          console.log("jhhahfhh",this.warehouse)
724
+ 
711 725
           this.warehousing_time = this.getTime(
712
-            this.warehouse.warehousing_time,
726
+            this.warehouse[0].warehousing_time,
713 727
             "{y}-{m}-{d}"
714 728
           );
715 729
 
@@ -726,6 +740,7 @@ export default {
726 740
             tempObj["remark"] = "";
727 741
             tempObj["dealer"] = "";
728 742
             tempObj["manufacturer"] = "";
743
+            tempObj["license_number"] = ""
729 744
             this.recordInfo.recordData.push(tempObj);
730 745
           }
731 746
         }

+ 20 - 10
src/xt_pages/stock/stockOutOrder.vue Parādīt failu

@@ -19,7 +19,7 @@
19 19
           style="width: 400px;"
20 20
           class="filter-item"
21 21
           v-model.trim="searchKey"
22
-          placeholder="单据编码/制单人/厂商"
22
+          placeholder="单据编码/制单人/耗材名称"
23 23
         />
24 24
         <el-button
25 25
           size="small"
@@ -108,6 +108,13 @@
108 108
             {{ getXuserName(scope.row.creater) }}
109 109
           </template>
110 110
         </el-table-column>
111
+
112
+       <el-table-column label="出库方式" align="center">
113
+          <template slot-scope="scope">
114
+            <span v-if="scope.row.is_sys == 1">自动出库</span>
115
+            <span v-if="scope.row.is_sys == 0">手动出库</span>
116
+          </template>
117
+        </el-table-column>
111 118
        
112 119
 
113 120
         <el-table-column label="操作" align="center" width="300px">
@@ -213,16 +220,21 @@
213 220
               {{ getManufactuerName(scope.row.manufacturer)}}
214 221
             </template>
215 222
           </el-table-column>
216
-          <!-- <el-table-column label="生产日期" align="center">
223
+          <el-table-column label="经销商" align="center">
224
+            <template slot-scope="scope">
225
+              {{getDealerName(scope.row.dealer) }}
226
+            </template>
227
+          </el-table-column>
228
+          <el-table-column label="生产日期" align="center">
217 229
             <template slot-scope="scope">
218
-              {{ getTime(scope.row.product_date)}}
230
+              {{ getTime(scope.row.product_date,"{y}-{h}-{d}")}}
219 231
             </template>
220 232
           </el-table-column>
221 233
           <el-table-column label="有效期" align="center">
222 234
             <template slot-scope="scope">
223
-              {{ getTime(scope.row.expiry_date)}}
235
+              {{ getTime(scope.row.expiry_date,"{y}-{h}-{d}")}}
224 236
             </template>
225
-          </el-table-column> -->
237
+          </el-table-column>
226 238
           <el-table-column label="备注" align="center">
227 239
             <template slot-scope="scope">
228 240
               {{ scope.row.remark }}
@@ -818,6 +830,7 @@ export default {
818 830
           return false;
819 831
         } else {
820 832
           console.log("parsm",response.data.data)
833
+          
821 834
           this.total = response.data.data.total;
822 835
           for (let i = 0; i < response.data.data.list.length; i++) {
823 836
             
@@ -936,11 +949,8 @@ export default {
936 949
       }
937 950
     },
938 951
     handleEdit: function(index, row) {
939
-      // this.$router.push({
940
-      //   name: "stockOutDetail",
941
-      //   query: { id: row.id, type: this.type,warehouse_out_time:row.warehouse_out_time }
942
-      // });
943
-      this.$router.push({path:'/stock/stockoutorderedit?id='+row.id})
952
+      
953
+      this.$router.push({path:'/stock/stockoutorderedit?id='+row.id+"&is_sys="+row.is_sys})
944 954
        
945 955
     },
946 956
     handleDelete: function(index, row) {

+ 48 - 10
src/xt_pages/stock/stockOutOrderAdd.vue Parādīt failu

@@ -164,15 +164,15 @@
164 164
               <span>批号<span style="color: red"></span></span>
165 165
             </template>
166 166
             <template slot-scope="scope">
167
-               <!-- <el-input placeholder="请输入批号" v-model="scope.row.number"></el-input> -->
168
-                <el-select v-model="scope.row.number" filterable placeholder="请选择">
167
+               <el-input placeholder="请输入批号" v-model="scope.row.number"></el-input>
168
+                <!-- <el-select v-model="scope.row.number" filterable placeholder="请选择">
169 169
                   <el-option
170 170
                     v-for="(item,index) in numberList"
171 171
                     :key="index"
172 172
                     :label="item.number"
173 173
                     :value="item.number">
174 174
                   </el-option>
175
-                </el-select>
175
+                </el-select> -->
176 176
             </template>
177 177
           </el-table-column>
178 178
 
@@ -266,11 +266,11 @@
266 266
 
267 267
           <el-table-column label="经销商"  width="150" align="center">
268 268
             <template slot-scope="scope">
269
-               <el-select size="small" v-model="scope.row.manufacturer" filterable placeholder="请选择厂商">
269
+               <el-select size="small" v-model="scope.row.dealer" filterable placeholder="请选择厂商">
270 270
                 <el-option
271
-                  v-for="(option, index) in manufacturerList"
271
+                  v-for="(option, index) in dealerList"
272 272
                   :key="index"
273
-                  :label="option.manufacturer_name"
273
+                  :label="option.dealer_name"
274 274
                   :value="option.id">
275 275
                 </el-option>
276 276
                </el-select>
@@ -488,6 +488,8 @@ export default {
488 488
       tempObj["number"] = ""
489 489
       tempObj["specification_name"] = ""
490 490
       tempObj["number"] = ""
491
+      tempObj["expiry_date"] = ""
492
+      tempObj["product_date"] = ""
491 493
       this.recordInfo.recordData.push(tempObj);
492 494
     },
493 495
     handleDelete: function(index, row) {
@@ -601,7 +603,15 @@ export default {
601 603
             this.$message.success("请添加出库商品");
602 604
             return;
603 605
           }
606
+       
604 607
           for(let i=0;i<this.recordInfo.recordData.length;i++){
608
+            if(this.recordInfo.recordData[i].expiry_date == "" || this.recordInfo.recordData[i].expiry_date == undefined){
609
+              this.recordInfo.recordData[i].expiry_date = ""
610
+            } 
611
+            if(this.recordInfo.recordData[i].product_date == "" || this.recordInfo.recordData[i].product_date == undefined){
612
+              this.recordInfo.recordData[i].product_date = ""
613
+            }
614
+           
605 615
              this.recordInfo.recordData[i].price = this.recordInfo.recordData[i].price.toString()
606 616
           }
607 617
           for(let i=0;i<this.recordInfo.recordData.length;i++){
@@ -610,6 +620,11 @@ export default {
610 620
                  this.recordInfo.recordData[i].manufacturer = this.manufacturerList[j].id
611 621
               }
612 622
             }
623
+            for(let z=0;z<this.dealerList.length;z++){
624
+              if(this.recordInfo.recordData[i].dealer == this.dealerList[z].dealer_name){
625
+                  this.recordInfo.recordData[i].dealer = this.dealerList[z].id
626
+              }
627
+            }
613 628
           }
614 629
           const params = {
615 630
             stockOut: this.recordInfo.recordData
@@ -624,12 +639,25 @@ export default {
624 639
             this.type
625 640
           ).then(response => {
626 641
             if (response.data.state == 0) {
627
-              this.$message.error(response.data.msg);
642
+              // this.$message.error(response.data.msg);
643
+              this.$message.error("库存不足")
628 644
               return false;
629 645
             } else {
630
-              this.$message.success("出库成功");
631
-              this.recordInfo.recordData = [];
632
-              this.$router.back(-1);
646
+               var msg = response.data.data.msg
647
+               var good_name = response.data.data.good_name
648
+               var specification_name = response.data.data.specification_name
649
+               var str = good_name +"*" + specification_name +"无库存,请入库"
650
+               console.log("msg222222222",msg)
651
+               if(msg == 1){
652
+                  this.$message.error(str)
653
+               }
654
+               if(msg == 2){
655
+                 this.$message.success("出库成功");
656
+                 this.recordInfo.recordData = [];
657
+                 this.$router.back(-1);
658
+               }
659
+             
660
+             
633 661
             }
634 662
           });
635 663
         } else {
@@ -657,13 +685,22 @@ export default {
657 685
             this.goodList = list
658 686
             var manufacturerList = response.data.data.manufacturerList
659 687
             this.manufacturerList = manufacturerList
688
+            var dealerList =  response.data.data.dealerList
689
+            this.dealerList = dealerList
660 690
             for(let i=0;i<this.goodList.length;i++){
661 691
               for(let j=0;j<this.manufacturerList.length;j++){
662 692
                 if(this.goodList[i].manufacturer == this.manufacturerList[j].id){
663 693
                     this.goodList[i].manufacturer = this.manufacturerList[j].manufacturer_name
664 694
                 }
665 695
               }
696
+
697
+              for(let z=0;z<this.dealerList.length;z++){
698
+                if(this.goodList[i].dealer == this.dealerList[z].id){
699
+                   this.goodList[i].dealer = this.dealerList[z].dealer_name
700
+                }
701
+              }
666 702
             }
703
+         
667 704
           
668 705
             cb(this.goodList)
669 706
         } else {
@@ -687,6 +724,7 @@ export default {
687 724
             this.recordInfo.recordData[i].price = val.buy_price
688 725
             this.recordInfo.recordData[i].specification_name = val.specification_name
689 726
             this.recordInfo.recordData[i].good_id = val.id
727
+            this.recordInfo.recordData[i].dealer = val.dealer
690 728
          }
691 729
       }
692 730
 

+ 10 - 6
src/xt_pages/stock/stockOutOrderDetailPrint.vue Parādīt failu

@@ -53,7 +53,7 @@
53 53
                                 <tr>
54 54
                                   <td>合计</td>
55 55
                                   <td colspan="7"></td>
56
-                                  <td>{{allPrice.toFixed(2)}}</td>
56
+                                  <td>{{getAllPice(it.id).toFixed(2)}}</td>
57 57
                                </tr>
58 58
                             </tbody>
59 59
                         </table>
@@ -326,14 +326,18 @@ export default {
326 326
              }
327 327
              console.log("详情打印222222",list)
328 328
              this.tableList = order
329
-             var total_price = 0
330
-             for(let i=0;i<list.length;i++){
331
-               total_price += response.data.data.list[i].price * response.data.data.list[i].count
332
-             }
333
-             this.allPrice =  total_price
334 329
            }
335 330
         })
336 331
      },
332
+     getAllPice(id){
333
+        var  total_price = 0 
334
+        for(let i=0;i<this.orderList.length;i++){
335
+          if(id == this.orderList[i].warehouse_out_id){
336
+             total_price += this.orderList[i].count * this.orderList[i].price
337
+          }
338
+        }
339
+        return total_price
340
+      }
337 341
 
338 342
     },
339 343
     created(){

+ 113 - 92
src/xt_pages/stock/stockOutOrderEdit.vue Parādīt failu

@@ -32,30 +32,9 @@
32 32
       </div>
33 33
 
34 34
 
35
-      <!-- <div class="cell clearfix">
36
-        <label class="title"><span class="name">经销商</span> : </label>
37
-        <el-select size="small" v-model="form.dealer" clearable placeholder="请选择经销商" @change="changeDealer" style="width: 200px;">
38
-          <el-option
39
-            v-for="(option, index) in dealer"
40
-            :key="index"
41
-            :label="option.dealer_name"
42
-            :value="option.id">
43
-          </el-option>
44
-        </el-select>
45
-      </div> -->
46
-
47
-
48
-      <!-- <div class="cell clearfix">
49
-        <label class="title"><span class="name">厂商</span> : </label>
50
-        <el-select size="small" v-model="form.manufacturer" clearable placeholder="请选择厂商" @change="changeManufacturer" style="width: 200px;">
51
-          <el-option
52
-            v-for="(option, index) in manufacturer"
53
-            :key="index"
54
-            :label="option.manufacturer_name"
55
-            :value="option.id">
56
-          </el-option>
57
-        </el-select>
58
-      </div> -->
35
+    
36
+
37
+
59 38
 
60 39
       <el-form :rules="tableRules" :model="recordInfo" ref="tableForm">
61 40
         <el-table :data="recordInfo.recordData" :class="signAndWeighBoxPatients" style="width: 100%" border
@@ -80,6 +59,7 @@
80 59
                       @select="handleSelect"
81 60
                       @input="changeGoodName(scope.$index)"
82 61
                       style="width:150px;"
62
+                      :disabled="stockShow"
83 63
                     >
84 64
                       <i class="el-icon-search el-input__icon" slot="suffix"></i>
85 65
                     <template slot-scope="{ item }">
@@ -97,6 +77,7 @@
97 77
             <template slot-scope="scope">
98 78
               <el-form-item style="padding-top: 20px">
99 79
                 <el-input
80
+                 :disabled="stockShow"
100 81
                   placeholder="请输入商品类型"
101 82
                   v-model="scope.row.good_type_id"
102 83
                   :value="typeName(scope.row.good_type_id)"
@@ -112,7 +93,7 @@
112 93
             </template>
113 94
             <template slot-scope="scope">
114 95
               <el-form-item style="padding-top: 20px">
115
-                <el-input v-model="scope.row.name"></el-input>
96
+                <el-input v-model="scope.row.name"  :disabled="stockShow"></el-input>
116 97
               </el-form-item>
117 98
             </template>
118 99
           </el-table-column>
@@ -123,19 +104,20 @@
123 104
             </template>
124 105
             <template slot-scope="scope">
125 106
               <el-form-item style="padding-top: 20px">
126
-               <el-select v-model="scope.row.number" filterable placeholder="请选择">
107
+                <el-input placeholder="请输入批号" v-model="scope.row.number"  :disabled="stockShow"></el-input>
108
+               <!-- <el-select v-model="scope.row.number" filterable placeholder="请选择">
127 109
                   <el-option
128 110
                     v-for="(item,index) in numberList"
129 111
                     :key="index"
130 112
                     :label="item.number"
131 113
                     :value="item.number">
132 114
                   </el-option>
133
-                </el-select>
115
+                </el-select> -->
134 116
               </el-form-item>
135 117
             </template>
136 118
           </el-table-column>
137 119
          
138
-          <el-table-column min-width="23" align="center">
120
+          <el-table-column width="150" align="center">
139 121
             <template slot="header" slot-scope="scope">
140 122
               <span>单价<span style="color: red">*</span></span>
141 123
             </template>
@@ -143,33 +125,33 @@
143 125
               <!--<el-input type="number" v-model="scope.row.price"  @blur="handleBlur(scope.$index, scope.row)"></el-input>-->
144 126
               <el-form-item :prop="'recordData.' + scope.$index + '.price'" :rules='tableRules.price'
145 127
                             style="padding-top: 17px">
146
-                <el-input type="number" v-model="scope.row.price"></el-input>
128
+                <el-input type="number" v-model="scope.row.price"  :disabled="stockShow"></el-input>
147 129
               </el-form-item>
148 130
 
149 131
 
150 132
             </template>
151 133
           </el-table-column>
152 134
 
153
-          <el-table-column min-width="23" align="center">
135
+          <el-table-column width="150" align="center">
154 136
             <template slot="header" slot-scope="scope">
155 137
               <span>出库数量<span style="color: red">*</span></span>
156 138
             </template>
157 139
             <template slot-scope="scope">
158 140
               <el-form-item :prop="'recordData.' + scope.$index + '.count'" :rules='tableRules.count'
159 141
                             style="padding-top: 17px">
160
-                <el-input type="number" v-model="scope.row.count"></el-input>
142
+                <el-input type="number" v-model="scope.row.count"  :disabled="stockShow"></el-input>
161 143
               </el-form-item>
162 144
             </template>
163 145
           </el-table-column>
164 146
 
165
-          <el-table-column label="总价" min-width="20" align="center">
147
+          <el-table-column label="总价" width="150" align="center">
166 148
             <template slot-scope="scope">
167 149
               {{calculate(scope.row.price*scope.row.count)}}
168 150
             </template>
169 151
           </el-table-column>
170 152
           <el-table-column label="生产厂商"  width="150" align="center">
171 153
             <template slot-scope="scope">
172
-               <el-select size="small" v-model="scope.row.manufacturer" filterable placeholder="请选择厂商">
154
+               <el-select size="small" v-model="scope.row.manufacturer" filterable placeholder="请选择厂商"  :disabled="stockShow">
173 155
                 <el-option
174 156
                   v-for="(option, index) in manufacturerList"
175 157
                   :key="index"
@@ -179,12 +161,56 @@
179 161
                </el-select>
180 162
             </template>   
181 163
           </el-table-column>
182
-          <el-table-column label="备注" min-width="20" align="center">
164
+         <el-table-column label="生产日期"  width="150" align="center">
165
+           <template slot-scope="scope">
166
+              <el-date-picker
167
+               :disabled="stockShow"
168
+                prefix-icon="el-icon-date"
169
+                style="width: 145px"
170
+                v-model="scope.row.product_date"
171
+                type="date"
172
+                placeholder="选择日期时间"
173
+                format="yyyy-MM-dd"
174
+                value-format="yyyy-MM-dd"
175
+              ></el-date-picker>
176
+            </template>
177
+         </el-table-column>
178
+
179
+          <el-table-column label="有效期"  width="150" align="center">
180
+            <template slot-scope="scope">
181
+              <el-date-picker
182
+               :disabled="stockShow"
183
+                prefix-icon="el-icon-date"
184
+                style="width: 145px"
185
+                v-model="scope.row.expiry_date"
186
+                type="date"
187
+                placeholder="选择日期时间"
188
+                format="yyyy-MM-dd"
189
+                value-format="yyyy-MM-dd"
190
+              ></el-date-picker>
191
+            </template>
192
+          </el-table-column>
193
+         
194
+
195
+          <el-table-column label="经销商"  width="150" align="center">
196
+            <template slot-scope="scope">
197
+               <el-select size="small" v-model="scope.row.dealer" filterable placeholder="请选择厂商"  :disabled="stockShow">
198
+                <el-option
199
+                  v-for="(option, index) in dealerList"
200
+                  :key="index"
201
+                  :label="option.dealer_name"
202
+                  :value="option.id">
203
+                </el-option>
204
+               </el-select>
205
+            </template>   
206
+          </el-table-column>
207
+
208
+          <el-table-column label="备注" width="150" align="center">
183 209
             <template slot-scope="scope">
184
-              <el-input v-model="scope.row.remark"></el-input>
210
+              <el-input v-model="scope.row.remark"  :disabled="stockShow"></el-input>
185 211
             </template>
186 212
           </el-table-column>
187
-          <el-table-column label="操作" align="center" min-width="30"  fixed="right">
213
+          <el-table-column label="操作" align="center" width="150"  fixed="right">
188 214
             <template slot-scope="scope">
189 215
               <el-tooltip class="item" effect="dark" content="新增" placement="top">
190 216
 
@@ -286,6 +312,7 @@
286 312
         goodType: [],
287 313
         goodInfo:[],
288 314
         numberList:[],
315
+        stockShow:false
289 316
       }
290 317
     },
291 318
     methods: {
@@ -365,6 +392,10 @@
365 392
         return name;
366 393
       }, 
367 394
       handleEdit: function(index, row) {
395
+        if(this.stockShow == true){
396
+         this.$message.error("自动出库数据无法编辑")
397
+         return
398
+        }
368 399
         const tempObj = {}
369 400
         tempObj['id'] = 0
370 401
         tempObj['good_type_id'] = 0
@@ -374,7 +405,12 @@
374 405
         tempObj['remark'] = ''
375 406
         tempObj['number'] = ""
376 407
         this.recordInfo.recordData.push(tempObj)
377
-      }, handleDelete: function(index, row) {
408
+      }, 
409
+      handleDelete: function(index, row) {
410
+        if(this.stockShow == true){
411
+         this.$message.error("自动出库数据无法删除")
412
+         return
413
+        }
378 414
         if (row.id == 0) {
379 415
           this.recordInfo.recordData.splice(index, 1)
380 416
         } else {
@@ -488,24 +524,31 @@
488 524
               }
489 525
             }
490 526
             for(let i=0;i<this.recordInfo.recordData.length;i++){
527
+              if(this.recordInfo.recordData[i].expiry_date == "" || this.recordInfo.recordData[i].expiry_date == undefined){
528
+                this.recordInfo.recordData[i].expiry_date = ""
529
+              } 
530
+              if(this.recordInfo.recordData[i].product_date == "" || this.recordInfo.recordData[i].product_date == undefined){
531
+                this.recordInfo.recordData[i].product_date = ""
532
+              }
491 533
                this.recordInfo.recordData[i].price = this.recordInfo.recordData[i].price.toString()
534
+            
492 535
               for(let j=0;j<this.manufacturerList.length;j++){
493 536
                 if(this.recordInfo.recordData[i].manufacturer == this.manufacturerList[j].manufacturer_name){
494 537
                   this.recordInfo.recordData[i].manufacturer = this.manufacturerList[j].id
495 538
                 }
496 539
               }
540
+              for(let z=0;z<this.dealerList.length;z++){
541
+                if(this.recordInfo.recordData[i].dealer == this.dealerList[z].dealer_name){
542
+                    this.recordInfo.recordData[i].dealer = this.dealerList[z].id
543
+                }
544
+              }
497 545
             }
498 546
             const params = {
499 547
               'stockOut': this.recordInfo.recordData
500 548
             }
501 549
            
502
-            for(let i=0;i<this.goodList.length;i++){
503
-             
504
-            }
505
-
506
-           
507 550
             console.log("stockout",params)
508
-          
551
+            
509 552
             editWarehouseoutInfo(params, this.warehouse_out_time, this.$route.query.id, this.$route.query.type, this.form.manufacturer, this.form.dealer).then(response => {
510 553
               if (response.data.state == 0) {
511 554
                 this.$message.error(response.data.msg)
@@ -520,43 +563,7 @@
520 563
           }
521 564
         })
522 565
       }, 
523
-      GetOrderDetail: function(order_id) {
524
-        const params = {
525
-          'id': order_id
526
-        }
527
-        getWarehouseOutInfo(params).then(response => {
528
-          if (response.data.state == 0) {
529
-            this.$message.error(response.data.msg)
530
-            return false
531
-          } else {
532
-            console.log("详情",response.data.data.list)
533
-            for (let i = 0; i < response.data.data.list.length; i++) {
534
-              response.data.data.list[i].price = response.data.data.list[i].price.toString()
535
-              response.data.data.list[i].count = response.data.data.list[i].count.toString()
536
-              response.data.data.list[i].good_name = response.data.data.list[i].GoodInfo.good_name
537
-              response.data.data.list[i].name = response.data.data.list[i].GoodInfo.good_name + "*" + response.data.data.list[i].GoodInfo.specification_name
538
-
539
-              this.recordInfo.recordData.push(response.data.data.list[i])
540
-            }
541
-            this.warehouseOut = response.data.data.info
542
-            this.warehouse_out_time = this.getTime(this.warehouseOut.warehouse_out_time, '{y}-{m}-{d}')
543
-            this.form.manufacturer = this.warehouseOut.manufacturer
544
-            this.form.dealer = this.warehouseOut.dealer
545
-
546
-          }
547
-
548
-          if (this.recordInfo.recordData.length == 0) {
549
-            const tempObj = {}
550
-            tempObj['id'] = 0
551
-            tempObj['good_type_id'] = 0
552
-            tempObj['good_id'] = 0
553
-            tempObj['count'] = ''
554
-            tempObj['price'] = ''
555
-            tempObj['remark'] = ''
556
-            this.recordInfo.recordData.push(tempObj)
557
-          }
558
-        })
559
-      }, calculate: function(val) {
566
+     calculate: function(val) {
560 567
         if (val == 0) {
561 568
           return ''
562 569
         }
@@ -585,6 +592,11 @@
585 592
                     this.goodList[i].manufacturer = this.manufacturerList[j].manufacturer_name
586 593
                 }
587 594
               }
595
+             for(let z=0;z<this.dealerList.length;z++){
596
+                if(this.goodList[i].dealer == this.dealerList[z].id){
597
+                   this.goodList[i].dealer = this.dealerList[z].dealer_name
598
+                }
599
+              }
588 600
             }
589 601
           
590 602
             cb(this.goodList)
@@ -609,18 +621,17 @@
609 621
             this.recordInfo.recordData[i].price = val.buy_price
610 622
             this.recordInfo.recordData[i].specification_name = val.specification_name
611 623
             this.recordInfo.recordData[i].good_id = val.id
624
+             this.recordInfo.recordData[i].dealer = val.dealer
612 625
          }
613 626
       }
614
-      console.log("hhhhh232323232",val.xt_warehouse_info)
615
-      if(val.xt_warehouse_info.length > 0){
616
-         console.log("hhhhhhhhhh")
617
-          for(let j=0;j<val.xt_warehouse_info.length;j++){
618
-            this.numberList.push(val.xt_warehouse_info[j])
619
-          }
620
-         this.recordInfo.recordData[i].number = val.xt_warehouse_info[0].number
621
-      }else{
622
-        this.recordInfo.recordData[i].number = ""
623
-      }
627
+      // if(val.xt_warehouse_info.length > 0){
628
+      //     for(let j=0;j<val.xt_warehouse_info.length;j++){
629
+      //       this.numberList.push(val.xt_warehouse_info[j])
630
+      //     }
631
+      //    this.recordInfo.recordData[i].number = val.xt_warehouse_info[0].number
632
+      // }else{
633
+      //   this.recordInfo.recordData[i].number = ""
634
+      // }
624 635
     },
625 636
      getSingleOutOrderDetail(order_id){
626 637
        const params = {
@@ -632,7 +643,7 @@
632 643
           var dealerList = response.data.data.dealerList
633 644
           this.dealerList = dealerList
634 645
           var manufacturerList = response.data.data.manufacturerList
635
-          console.log("hhhhhhhhh",manufacturerList)
646
+          // console.log("hhhhhhhhh",manufacturerList)
636 647
           this.manufacturerList = manufacturerList
637 648
           this.goodType = response.data.data.goodType
638 649
           for (let i = 0; i < response.data.data.list.length; i++) {
@@ -642,7 +653,10 @@
642 653
             response.data.data.list[i].good_name = response.data.data.list[i].good_name
643 654
             response.data.data.list[i].name = response.data.data.list[i].specification_name + "/" + response.data.data.list[i].packing_unit
644 655
             response.data.data.list[i].good_type_id = response.data.data.list[i].good_type_id
645
-            this.numberList.push(response.data.data.list[i])
656
+            response.data.data.list[i].expiry_date = this.getTime(response.data.data.list[i].expiry_date,"{y}-{m}-{d}")
657
+            response.data.data.list[i].product_date = this.getTime(response.data.data.list[i].product_date,"{y}-{m}-{d}")
658
+            response.data.data.list[i].remark = response.data.data.list[i].remark
659
+            // this.numberList.push(response.data.data.list[i])
646 660
             this.recordInfo.recordData.push(response.data.data.list[i])
647 661
           }
648 662
          
@@ -664,6 +678,13 @@
664 678
       this.propForm.goodUnit = this.$store.getters.good_unit
665 679
       const order_id = this.$route.query.id  
666 680
       this.getSingleOutOrderDetail(order_id)
681
+      var is_sys = this.$route.query.is_sys
682
+      if(is_sys == 0){
683
+        this.stockShow = false
684
+      }
685
+      if(is_sys == 1){
686
+        this.stockShow = true
687
+      }
667 688
     }
668 689
 
669 690
   }

+ 25 - 5
src/xt_pages/stock/stockQuery.vue Parādīt failu

@@ -165,6 +165,26 @@ import {
165 165
 export default {
166 166
   name: "stockIn",
167 167
   created() {
168
+    var nowDate = new Date();
169
+    var nowYear = nowDate.getFullYear();
170
+    var nowMonth = nowDate.getMonth() + 1;
171
+    var nowDay = nowDate.getDate();
172
+    this.end_time =
173
+      nowYear +
174
+      "-" +
175
+      (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
176
+      "-" +
177
+      (nowDay < 10 ? "0" + nowDay : nowDay);
178
+    nowDate.setMonth(nowDate.getMonth() - 1);
179
+    nowYear = nowDate.getFullYear();
180
+    nowMonth = nowDate.getMonth() + 1;
181
+    nowDay = nowDate.getDate();
182
+    this.start_time =
183
+      nowYear +
184
+      "-" +
185
+      (nowMonth < 10 ? "0" + nowMonth : nowMonth) +
186
+      "-" +
187
+      (nowDay < 10 ? "0" + nowDay : nowDay);
168 188
     this.GetAllGoodInfo();
169 189
     this.GetAllGoodType();
170 190
     this.getlist()
@@ -373,8 +393,8 @@ export default {
373 393
     exportList(){
374 394
          import('@/vendor/Export2Excel').then(excel => {
375 395
 
376
-         const tHeader = ['耗材类型', '耗材名称', '规格&单位','规格型号','进货单价','生产商','入库数量','出库数量','库存剩余量']
377
-         const filterVal = ['type_name', 'good_name', 'unit','specification_name','price','prodect_name','inCount','outCount','overplus']
396
+         const tHeader = ['耗材类型', '耗材名称', '规格&单位','进货单价','生产商','入库数量','出库数量','库存剩余量']
397
+         const filterVal = ['type_name', 'good_name', 'unit','price','prodect_name','inCount','outCount','overplus']
378 398
 
379 399
        
380 400
          for(let i=0;i<this.tableList.length;i++){
@@ -505,7 +525,7 @@ export default {
505 525
       })
506 526
     },
507 527
     getInCount(id){
508
-      var count= ""
528
+      var count= 0
509 529
      for(let i=0;i<this.countList.length;i++){
510 530
       if(id == this.countList[i].good_id){
511 531
           count = this.countList[i].count
@@ -514,7 +534,7 @@ export default {
514 534
      return count
515 535
     },
516 536
     getOutCount(id){
517
-      var count = ""
537
+      var count = 0
518 538
       for(let i=0;i<this.outCountList.length;i++){
519 539
          if(id == this.outCountList[i].good_id){
520 540
            count = this.outCountList[i].count
@@ -523,7 +543,7 @@ export default {
523 543
       return count
524 544
     },
525 545
    getAutoCount(id){
526
-     var count= ""
546
+     var count= 0
527 547
      for(let i=0;i<this.autoCountList.length;i++){
528 548
        if(id == this.autoCountList[i].good_id){
529 549
          count = this.autoCountList[i].count