Browse Source

Merge branch '20230223_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20230223_pc_vue_new_branch

28169 1 year ago
parent
commit
0e8cf22470

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

46
       </div>
46
       </div>
47
     </div>
47
     </div>
48
 
48
 
49
-    <!-- <div class="app-container" v-if="org_id == 10567 ">
49
+     <div class="app-container" v-if="org_id == 10567 || org_id == 0">
50
       <div class='dialysisPage'>
50
       <div class='dialysisPage'>
51
         <printfourteen :paramsObj="invoiceParams"></printfourteen>
51
         <printfourteen :paramsObj="invoiceParams"></printfourteen>
52
       </div>
52
       </div>
53
-    </div> -->
53
+    </div>
54
 
54
 
55
-    <div class="app-container" style="padding-top:20px;" v-if="org_id == 10188 || org_id == 0 ">
55
+    <div class="app-container" style="padding-top:20px;" v-if="org_id == 10188">
56
       <div class='dialysisPage'>
56
       <div class='dialysisPage'>
57
         <printthirteen  :paramsObj="invoiceParams"></printthirteen>
57
         <printthirteen  :paramsObj="invoiceParams"></printthirteen>
58
       </div>
58
       </div>

+ 3 - 3
src/xt_pages/outpatientCharges/invoiceTemplate/printfourteen.vue View File

22
     <div style="display:flex;justify-content: space-between;">
22
     <div style="display:flex;justify-content: space-between;">
23
       <div  style="position: absolute;top:120px;left:60px;" v-if="list.gender == 1">√</div>
23
       <div  style="position: absolute;top:120px;left:60px;" v-if="list.gender == 1">√</div>
24
       <div  style="position: absolute;top:120px;left:80px;" v-else-if="list.gender == 2">√</div>
24
       <div  style="position: absolute;top:120px;left:80px;" v-else-if="list.gender == 2">√</div>
25
-      <div  style="position: absolute;top:120px;left:200px;">0.00</div>
26
-      <div  style="position: absolute;top:120px;left:300px;">560.40</div>
27
-      <div  style="position: absolute;top:120px;left:400px;">全自费</div>
25
+      <div  style="position: absolute;top:120px;left:200px;">{{list.order.fund_pay_sumamt}}</div>
26
+      <div  style="position: absolute;top:120px;left:300px;">{{list.psn_cash_money}}</div>
27
+      <div  style="position: absolute;top:120px;left:400px;">{{"医保-门慢"}}</div>
28
     </div>
28
     </div>
29
     <div style="display:flex;justify-content: space-between;">
29
     <div style="display:flex;justify-content: space-between;">
30
       <div v-if="list.westernMedicineCostTotal != ''">
30
       <div v-if="list.westernMedicineCostTotal != ''">

+ 47 - 3
src/xt_pages/outpatientCharges/summary.vue View File

137
 <!--           <el-button size="small" type="primary" @click="export_detail_three">报表下载12</el-button>-->
137
 <!--           <el-button size="small" type="primary" @click="export_detail_three">报表下载12</el-button>-->
138
           <!-- <el-button size="small" type="primary" @click="export_detail_four">报表下载3</el-button>-->
138
           <!-- <el-button size="small" type="primary" @click="export_detail_four">报表下载3</el-button>-->
139
           <!-- <el-button size="small" type="primary" @click="export_detail_five">报表下载3</el-button>-->
139
           <!-- <el-button size="small" type="primary" @click="export_detail_five">报表下载3</el-button>-->
140
-<!--           <el-button size="small" type="primary" @click="export_detail_six">报表下载9</el-button>-->
140
+<!--           <el-button size="small" type="primary" @click="export_detail_six">诊疗下载</el-button>-->
141
           <!-- <el-button size="small" type="primary" @click="export_detail_tenone">报表下载10</el-button>-->
141
           <!-- <el-button size="small" type="primary" @click="export_detail_tenone">报表下载10</el-button>-->
142
           <!--  <el-button size="small" type="primary" @click="export_detail_seven">报表下载4</el-button>-->
142
           <!--  <el-button size="small" type="primary" @click="export_detail_seven">报表下载4</el-button>-->
143
 
143
 
316
               查询结算清单
316
               查询结算清单
317
             </el-button>
317
             </el-button>
318
 
318
 
319
+
319
             <el-button
320
             <el-button
320
                 size="mini"
321
                 size="mini"
321
                 type="primary"
322
                 type="primary"
324
             >
325
             >
325
               撤销结算清单
326
               撤销结算清单
326
             </el-button>
327
             </el-button>
328
+
329
+            <el-button
330
+              size="mini"
331
+              type="primary"
332
+              @click="cancelUploadThree(scope.row)"
333
+            >
334
+              更改结算清单状态为未提交
335
+            </el-button>
327
             <el-button
336
             <el-button
328
                 size="mini"
337
                 size="mini"
329
                 type="primary"
338
                 type="primary"
864
         });
873
         });
865
 
874
 
866
 
875
 
876
+    },cancelUploadThree(row){
877
+      var that = this;
878
+      // if(this.$store.getters.xt_user.org_id == 10191){
879
+        axios
880
+          .get("http://127.0.0.1:9532/api/comfirm/upload", {
881
+            params: {
882
+              order_id: row.id,
883
+              admin_user_id: this.$store.getters.xt_user.user.id,
884
+              stas_type: 0
885
+            },
886
+          })
887
+          .then(function (response) {
888
+            if (response.data.state == 0) {
889
+              that.$message.error(response.data.msg);
890
+              return false;
891
+            } else {
892
+              if (response.data.data.failed_code == -10) {
893
+                that
894
+                  .$confirm(response.data.data.msg, "医保错误信息", {
895
+                    confirmButtonText: "确 定",
896
+                    type: "warning",
897
+                  })
898
+                  .then(() => {
899
+                  })
900
+                  .catch(() => {
901
+                  });
902
+              } else {
903
+                that.$message.success("确认成功");
904
+                row.result.id = response.data.data.result.id;
905
+              }
906
+            }
907
+          })
908
+          .catch(function (error) {
909
+          });
910
+      // }
867
     },
911
     },
868
     confirmUploadInfo(row){
912
     confirmUploadInfo(row){
869
       var that = this;
913
       var that = this;
1123
                 id_card_no: order.certno,
1167
                 id_card_no: order.certno,
1124
                 level: "未定级",
1168
                 level: "未定级",
1125
                 psn_type: order.psn_type,
1169
                 psn_type: order.psn_type,
1126
-                date: "2022年3月",
1170
+                date: "202年3月",
1127
                 start_time: order.his.in_hosptial_time,
1171
                 start_time: order.his.in_hosptial_time,
1128
                 end_time: order.his.out_hosptial_time,
1172
                 end_time: order.his.out_hosptial_time,
1129
                 total: order.info[b].det_item_fee_sumamt,
1173
                 total: order.info[b].det_item_fee_sumamt,
1726
           var tarList = []
1770
           var tarList = []
1727
           for (let i = 0; i < list.length; i++) {
1771
           for (let i = 0; i < list.length; i++) {
1728
             let obj = {
1772
             let obj = {
1729
-              "周期": "2022年第二季度",
1773
+              "周期": "2023年第三季度",
1730
               "类别": "门诊",
1774
               "类别": "门诊",
1731
               "医保目录编码": list[i].code,
1775
               "医保目录编码": list[i].code,
1732
               "医保目录名称": list[i].name,
1776
               "医保目录名称": list[i].name,