Commit eaf571b5 authored by 任鸿志's avatar 任鸿志

88888

parent 20de6ae1
...@@ -229,6 +229,7 @@ export const api = { ...@@ -229,6 +229,7 @@ export const api = {
settle_fee2yb:'/api/settle_fee_self2yb', settle_fee2yb:'/api/settle_fee_self2yb',
zhxx:'/api/settlement_mz', zhxx:'/api/settlement_mz',
bxxx:'/api/settlement_mz', bxxx:'/api/settlement_mz',
prescription:'/api/dw_audit/audit_prescription',
jsxx:'/api/settle', jsxx:'/api/settle',
mztk:'/api/settle', mztk:'/api/settle',
FeeStatus:'/api/settle/verifyFeeStatus', FeeStatus:'/api/settle/verifyFeeStatus',
......
...@@ -129,6 +129,13 @@ export function zhxx (data) { ...@@ -129,6 +129,13 @@ export function zhxx (data) {
}) })
} }
export function prescription (data) {
return request({
url: Vue.prototype.$api.mz.prescription,
method: 'post',
data
})
}
export function bxxx (data) { export function bxxx (data) {
return request({ return request({
url: Vue.prototype.$api.mz.bxxx+'/'+data.patient_id, url: Vue.prototype.$api.mz.bxxx+'/'+data.patient_id,
......
...@@ -555,7 +555,7 @@ ...@@ -555,7 +555,7 @@
import Cardlist from '@/components/Cardlist' import Cardlist from '@/components/Cardlist'
import Readcards from '@/components/Readcards' import Readcards from '@/components/Readcards'
import editProp1 from './components/editProp' //修改自付比例 import editProp1 from './components/editProp' //修改自付比例
import { pdxx, mzxx, mzxxs, mzxxs_ewm, pdxq, info, bxxx, jsxx, hiscard, printmis, queryReadRard, verifyFeeStatus, jhsubmit } from '@/api/mz' import { pdxx, mzxx, mzxxs, mzxxs_ewm, pdxq, info, bxxx,prescription, jsxx, hiscard, printmis, queryReadRard, verifyFeeStatus, jhsubmit } from '@/api/mz'
import { get_serial_number, editProp, zfbl, freemoney, settlementPre, familybalanceinfor, patient, settleSelfPre, selfPre, yundaMis, familyBalance, get_zfbl } from '@/api/jiesuan' import { get_serial_number, editProp, zfbl, freemoney, settlementPre, familybalanceinfor, patient, settleSelfPre, selfPre, yundaMis, familyBalance, get_zfbl } from '@/api/jiesuan'
import printProof from '../../utils/print_proof' import printProof from '../../utils/print_proof'
import getLodop from '../../assets/js/LodopFuncs' import getLodop from '../../assets/js/LodopFuncs'
...@@ -1767,10 +1767,27 @@ export default { ...@@ -1767,10 +1767,27 @@ export default {
const factor = Math.pow(10, decimals) const factor = Math.pow(10, decimals)
return Math.round(num * factor) / factor return Math.round(num * factor) / factor
}, },
yanzhengweigui(e) {
prescription({
is_yb: this.man_name == true ? '1' : '0',
cache_uuid: e == undefined ? 'not' : e,
his_pay_fee_nos: this.cost_id,
patient_id: this.tableData.patient.id,
p_xzbz: this.typelistno == '4' ? 'D' : 'C',
is_pre: 1,
pre_id: '1',
p_ewm: this.adminpingzhengma,
})
.then(response => {
})
},
//#####################预结算################### //#####################预结算###################
jiesuanadmin(e) { async jiesuanadmin(e) {
this.yujiesuanload = false this.yujiesuanload = false
bxxx({ await bxxx({
is_yb: this.man_name == true ? '1' : '0', is_yb: this.man_name == true ? '1' : '0',
cache_uuid: e == undefined ? 'not' : e, cache_uuid: e == undefined ? 'not' : e,
his_pay_fee_nos: this.cost_id, his_pay_fee_nos: this.cost_id,
...@@ -1782,6 +1799,19 @@ export default { ...@@ -1782,6 +1799,19 @@ export default {
}) })
.then(response => { .then(response => {
// 验证违规 // 验证违规
await prescription({
is_yb: this.man_name == true ? '1' : '0',
cache_uuid: e == undefined ? 'not' : e,
his_pay_fee_nos: this.cost_id,
patient_id: this.tableData.patient.id,
p_xzbz: this.typelistno == '4' ? 'D' : 'C',
is_pre: 1,
pre_id: '1',
p_ewm: this.adminpingzhengma,
})
.then(response => {
})
// this.dialogVisible = true // this.dialogVisible = true
this.yujiesuanload = false this.yujiesuanload = false
this.bxxxinfo = response.data this.bxxxinfo = response.data
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment