XMLWAN 2 gadus atpakaļ
vecāks
revīzija
a7e3ea34fd

+ 4 - 4
src/xt_pages/data/components/editInspection.vue Parādīt failu

@@ -80,7 +80,7 @@
80 80
                     <el-table-column align="center" prop="name" label="单位" width="120">
81 81
                         <template slot-scope="scope">
82 82
                             <div v-if="scope.row.type == 2">{{scope.row.unit}}</div>
83
-                            <div v-if="scope.row.type == 3">{{getUnit(scope.row.unit)}}</div>
83
+                            <div v-if="scope.row.type == 3">{{scope.row.unit}}</div>
84 84
                         </template>
85 85
                     </el-table-column>
86 86
                     <el-table-column align="center" prop="name" label="单价" width="120">
@@ -209,7 +209,7 @@
209 209
          
210 210
             var projectList = response.data.data.projectList
211 211
             var goodInfos = response.data.data.good_info
212
-
212
+            console.log("332323232323232",goodInfos)
213 213
             for (let i = 0; i < projectList.length; i++) {
214 214
               let obj = {
215 215
                 id: projectList[i].id,
@@ -233,7 +233,7 @@
233 233
                 statistical_classification: goodInfos[i].statistical_classification,
234 234
                 number: '1',
235 235
                 project_name:goodInfos[i].good_name + " " + goodInfos[i].specification_name,
236
-                unit: goodInfos[i].good_unit,
236
+                unit: goodInfos[i].packing_unit,
237 237
                 price: goodInfos[i].retail_price,
238 238
                 type: 3,
239 239
                 m_id: 0,
@@ -274,7 +274,7 @@
274 274
 
275 275
               } else {
276 276
                 obj['project_name'] = hisList[i].good_info.good_name
277
-                obj['unit'] = hisList[i].good_info.good_unit
277
+                obj['unit'] = hisList[i].good_info.packing_unit
278 278
                 obj['price'] = hisList[i].good_info.retail_price
279 279
               }
280 280
               this.tableData.push(obj)

+ 2 - 2
src/xt_pages/stock/drugs/drugStockOutOrderDetailPrint.vue Parādīt failu

@@ -7,7 +7,7 @@
7 7
     </div>
8 8
     <div class="app-container ">
9 9
       <div id="dialysis-print-box">
10
-        <div v-if="orgId!=9675 && orgId!=10210 && orgId!=10188 && orgId!=10127">
10
+        <div v-if="orgId!=9675 && orgId!=10210 && orgId!=10188 && orgId!=10127 && orgId!=10164 && orgId!=3877">
11 11
         <div class="dialysis-print-order" v-for="(it,index) in tableList" :key="index">
12 12
          <div class="order-yy-name" style="font-size:22px;font-weight:bold;letter-spacing:0px;margin-top:40px">{{orgName}}</div>
13 13
           <div class="order-title" style="font-weight:500;font-size:18px;">药品出库登记表</div>
@@ -78,7 +78,7 @@
78 78
       </div> 
79 79
 
80 80
 
81
-      <div v-if="orgId == 9675 || orgId == 10210 || orgId == 10188 || orgId == 10127">
81
+      <div v-if="orgId == 9675 || orgId == 10210 || orgId == 10188 || orgId == 10127 || orgId ==10164 || orgId ==3877">
82 82
        <div class="dialysis-print-order" v-for="(it,index) in tableData" :key="index" >
83 83
          <div class="order-yy-name" style="font-size:22px;font-weight:bold;letter-spacing:0px;margin-top:40px">{{orgName}}</div>
84 84
           <div class="order-title" style="font-weight:500;font-size:18px;">药品出库登记表</div>

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

@@ -277,6 +277,11 @@
277 277
             {{ scope.row.license_number}}
278 278
           </template>
279 279
         </el-table-column>
280
+        <el-table-column label="注册编号" align="center">
281
+          <template slot-scope="scope">
282
+            {{ scope.row.register_number}}
283
+          </template>
284
+        </el-table-column>
280 285
         <el-table-column label="备注" align="center">
281 286
           <template slot-scope="scope">
282 287
             {{ scope.row.remark }}

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

@@ -201,6 +201,16 @@
201 201
               </el-form-item>
202 202
             </template>
203 203
           </el-table-column>
204
+         <el-table-column align="center" width="150">
205
+            <template slot="header" slot-scope="scope">
206
+              <span>注册编码</span>
207
+            </template>
208
+            <template slot-scope="scope">
209
+              <el-form-item style="padding-top: 20px">
210
+                <el-input placeholder="请输入注册编码" v-model="scope.row.register_number" ></el-input>
211
+              </el-form-item>
212
+            </template>
213
+          </el-table-column>
204 214
            <el-table-column label="经销商" align="center" width="150">
205 215
              <template slot-scope="scope">
206 216
                <el-select size="small" v-model="scope.row.dealer" filterable placeholder="请选择厂商">
@@ -544,6 +554,7 @@
544 554
         tempObj['name'] = ''
545 555
         tempObj['license_number'] = ""
546 556
         tempObj["packing_price"] = ""
557
+        tempObj['register_number'] = ''
547 558
         this.recordInfo.recordData.push(tempObj)
548 559
       }, handleDelete: function(index, row) {
549 560
         if (this.recordInfo.recordData.length <= 1) {
@@ -795,6 +806,7 @@
795 806
         this.currentIndex = val
796 807
       },
797 808
       handleSelect(val){
809
+        console.log("al32323232323223",val)
798 810
          for(let i=0;i<this.recordInfo.recordData.length;i++){
799 811
            if(this.currentIndex == i){
800 812
               this.recordInfo.recordData[i].good_type_id = val.id
@@ -805,7 +817,7 @@
805 817
               this.recordInfo.recordData[i].manufacturer = val.manufacturer
806 818
               this.recordInfo.recordData[i].remark = val.remark
807 819
               this.recordInfo.recordData[i].license_number = val.number
808
-           
820
+              this.recordInfo.recordData[i].register_number = val.register_number
809 821
               if(val.buy_price == 0){
810 822
                this.recordInfo.recordData[i].price = ""
811 823
               }else{
@@ -861,6 +873,7 @@
861 873
       tempObj['name'] = ''
862 874
       tempObj['license_number'] = ''
863 875
       tempObj['packing_price']= ''
876
+      tempObj['register_number'] = ''
864 877
       this.recordInfo.recordData.push(tempObj)
865 878
       this.GetConfigInfo()
866 879
       this.propForm.goodUnit = this.$store.getters.good_unit

+ 12 - 2
src/xt_pages/stock/stockInOrderEdit.vue Parādīt failu

@@ -245,8 +245,6 @@
245 245
             </template>
246 246
           </el-table-column>
247 247
 
248
-         
249
-        
250 248
            <el-table-column align="center" width="150">
251 249
             <template slot="header" slot-scope="scope">
252 250
               <span>批准文号</span>
@@ -261,6 +259,16 @@
261 259
               </el-form-item>
262 260
             </template>
263 261
           </el-table-column>
262
+          <el-table-column align="center" width="150">
263
+            <template slot="header" slot-scope="scope">
264
+              <span>注册编码</span>
265
+            </template>
266
+            <template slot-scope="scope">
267
+              <el-form-item style="padding-top: 20px">
268
+                <el-input placeholder="请输入注册编码" v-model="scope.row.register_number" ></el-input>
269
+              </el-form-item>
270
+            </template>
271
+          </el-table-column>
264 272
           <el-table-column label="经销商" align="center" width="150">
265 273
              <template slot-scope="scope">
266 274
                <el-select size="small" v-model="scope.row.dealer" filterable placeholder="请选择厂商">
@@ -785,6 +793,7 @@ export default {
785 793
             tempObj["dealer"] = "";
786 794
             tempObj["manufacturer"] = "";
787 795
             tempObj["license_number"] = ""
796
+            tempObj["register_number"] = ""
788 797
             this.recordInfo.recordData.push(tempObj);
789 798
           }
790 799
         }
@@ -837,6 +846,7 @@ export default {
837 846
             this.recordInfo.recordData[i].manufacturer = val.manufacturer
838 847
             this.recordInfo.recordData[i].remark = val.remark
839 848
             this.recordInfo.recordData[i].license_number = val.number
849
+            this.recordInfo.recordData[i].register_number = val.register_number
840 850
             if(val.buy_price == 0){
841 851
                this.recordInfo.recordData[i].price= ""
842 852
             }else{

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

@@ -294,6 +294,11 @@
294 294
               {{ scope.row.license_number}}
295 295
             </template>
296 296
           </el-table-column> -->
297
+            <el-table-column label="注册编码" align="center">
298
+            <template slot-scope="scope">
299
+              {{ scope.row.register_number}}
300
+            </template>
301
+          </el-table-column>
297 302
           <el-table-column label="备注" align="center">
298 303
             <template slot-scope="scope">
299 304
               {{ scope.row.remark }}

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

@@ -277,7 +277,17 @@
277 277
               <el-input placeholder="请输入批准文号" v-model="scope.row.license_number" ></el-input>
278 278
           </template>
279 279
         </el-table-column>
280
-
280
+       
281
+        <el-table-column align="center" width="150">
282
+            <template slot="header" slot-scope="scope">
283
+              <span>注册编码</span>
284
+            </template>
285
+            <template slot-scope="scope">
286
+              <el-form-item style="padding-top: 20px">
287
+                <el-input placeholder="请输入注册编码" v-model="scope.row.register_number" ></el-input>
288
+              </el-form-item>
289
+            </template>
290
+        </el-table-column>
281 291
 
282 292
           <el-table-column label="经销商"  width="150" align="center">
283 293
             <template slot-scope="scope">
@@ -515,6 +525,7 @@ export default {
515 525
       tempObj["admin_user_id"] = this.$store.getters.xt_user.user.user_name
516 526
       tempObj["buy_price"]= ""
517 527
       tempObj["stock_count"] = ""
528
+      tempObj['register_number'] = ''
518 529
       this.recordInfo.recordData.push(tempObj);
519 530
     },
520 531
     handleDelete: function(index, row) {
@@ -799,6 +810,7 @@ export default {
799 810
             this.recordInfo.recordData[i].buy_price = val.buy_price
800 811
             this.recordInfo.recordData[i].stock_count = total_count
801 812
             this.recordInfo.recordData[i].license_number = val.number
813
+            this.recordInfo.recordData[i].register_number = val.register_number
802 814
             if(val.packing_price == 0){
803 815
               this.recordInfo.recordData[i].price =""
804 816
             }else{
@@ -890,6 +902,7 @@ export default {
890 902
     tempObj["admin_user_id"] = this.$store.getters.xt_user.user.user_name
891 903
     tempObj["buy_price"]= ""
892 904
     tempObj["stock_count"] = ""
905
+    tempObj['register_number'] = ''
893 906
     this.recordInfo.recordData.push(tempObj);
894 907
     this.GetConfigInfo();
895 908
   

+ 12 - 0
src/xt_pages/stock/stockOutOrderEdit.vue Parādīt failu

@@ -261,6 +261,17 @@
261 261
           </template>
262 262
         </el-table-column>
263 263
 
264
+        <el-table-column align="center" width="150">
265
+            <template slot="header" slot-scope="scope">
266
+              <span>注册编码</span>
267
+            </template>
268
+            <template slot-scope="scope">
269
+              <el-form-item style="padding-top: 20px">
270
+                <el-input placeholder="请输入注册编码" v-model="scope.row.register_number" ></el-input>
271
+              </el-form-item>
272
+            </template>
273
+        </el-table-column>
274
+
264 275
           <el-table-column label="经销商"  width="150" align="center">
265 276
             <template slot-scope="scope">
266 277
                <el-select size="small" v-model="scope.row.dealer" filterable placeholder="请选择厂商"  :disabled="stockShow">
@@ -492,6 +503,7 @@
492 503
         tempObj["admin_user_id"] = this.$store.getters.xt_user.user.user_name
493 504
         tempObj["buy_price"]= ""
494 505
         tempObj["stock_count"] = ""
506
+        tempObj['register_number'] = ''
495 507
         this.recordInfo.recordData.push(tempObj)
496 508
       },
497 509
       handleDelete: function(index, row) {