1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513 |
- package sg
-
- import (
- "gdyb/common"
- "gdyb/enums"
- "gdyb/utils"
-
- "gdyb/invoice"
- "gdyb/models"
- "gdyb/service"
- "gdyb/service/fapiao"
- "encoding/base64"
- "encoding/json"
- "fmt"
- "github.com/astaxie/beego"
- "github.com/shopspring/decimal"
- "math"
- "strconv"
- "strings"
- "gdyb/controllers"
-
- "time"
- )
-
- func FaPiaoApiRegistRouters() {
- beego.Router("/api/fapiao/sms/code", &FapiaoApiController{}, "get:GetLoginUploadCode")
- beego.Router("/api/fapiao/sms/login", &FapiaoApiController{}, "get:Login")
- beego.Router("/api/fapiao/qrcode/get", &FapiaoApiController{}, "get:GetQRCode")
- beego.Router("/api/fapiao/blue", &FapiaoApiController{}, "get:OpenFaPiao")
- beego.Router("/api/fapiao/red", &FapiaoApiController{}, "get:RedFaPiao")
-
- beego.Router("/api/fapiao/query", &FapiaoApiController{}, "get:QueryFaPiao")
-
- }
-
- func (c *FapiaoApiController) QueryFaPiao() {
- id, _ := c.GetInt64("id")
- oc, _ := service.GetFaPiaoOrderById(id)
- sdk := invoice.NewSdk(common.HMAC_SHA256, "5058f0defd12047ee2a7", "51440fbee667ea9a53aaa68c9c408367", "", "")
- var config models.FapiaoConfig
- config, _ = service.FindFaPiaoConfigInfo(c.GetAdminUserInfo().CurrentOrgId)
- routerAddress2, postData2 := fapiao.Query(config.SellerTaxpayerNum, oc.OrderSn, "")
- r3, err2 := sdk.HttpPost("https://apigw.goldentec.com", routerAddress2, postData2)
- fmt.Println("query")
- fmt.Println(string(r3))
- if err2 != nil {
- fmt.Println(err2)
- } else {
- var resp3 QueryFaPiaoResultResponse
- // 将 byte 切片转换为结构体
- json.Unmarshal(r3, &resp3)
- if resp3.Code == 0 {
- //var fapiaos models.HisFaPiaoOrder
- if resp3.Data.Status == 3 {
- // 异步调用查询操作,不阻塞主程序
- oc.TicketSn = resp3.Data.TicketSn
- oc.TicketDate = resp3.Data.TicketDate
- oc.AmountWithTax = resp3.Data.AmountWithoutTax
- oc.AmountWithoutTax = resp3.Data.AmountWithoutTax
- oc.FapiaoStatus = "2"
- oc.TaxAmount = resp3.Data.TaxAmount
- oc.IsRedWashed = strconv.FormatInt(int64(resp3.Data.IsRedWashed), 10)
- oc.PdfUrl = resp3.Data.PdfUrl
- oc.OfdUrl = resp3.Data.OfdUrl
- oc.XmlUrl = resp3.Data.XmlUrl
- service.SaveFaPiaoOrder(&oc)
- ids := strings.Split(oc.OrderIds, ",")
- service.UpdateFaPiaoNumber(resp3.Data.TicketSn, ids) //同步发票号码
-
- c.ServeSuccessJSON(map[string]interface{}{
- "msg": "同步成功",
- })
-
- } else if resp3.Data.Status == 1 {
- oc.FapiaoStatus = "1"
- oc.TicketSn = ""
- service.SaveFaPiaoOrder(&oc)
-
- c.ServeSuccessJSON(map[string]interface{}{
- "msg": "同步成功",
- })
- //service.UpdateFaPiaoNumber(resp3.Data.TicketSn, ids) //同步发票号码
- } else if resp3.Data.Status == 2 {
- oc.FapiaoStatus = "3"
- oc.TicketSn = ""
- oc.Message = resp3.Data.Message
- service.SaveFaPiaoOrder(&oc)
- c.ServeSuccessJSON(map[string]interface{}{
- "msg": resp3.Data.Message,
- })
- } else {
- oc.FapiaoStatus = "3"
- oc.TicketSn = ""
- oc.Message = resp3.Data.Message
- service.SaveFaPiaoOrder(&oc)
-
- c.ServeSuccessJSON(map[string]interface{}{
- "msg": "同步成功",
- })
- }
- } else {
- //错误处理
- c.ServeSuccessJSON(map[string]interface{}{
- "msg": "查询失败" + resp3.Message,
- })
- }
- //if resp3.Code == 0 {
- // // 异步调用查询操作,不阻塞主程序
- // oc.TicketSn = resp3.Data.TicketSn
- // oc.TicketDate = resp3.Data.TicketDate
- // oc.AmountWithTax = resp3.Data.AmountWithoutTax
- // oc.AmountWithoutTax = resp3.Data.AmountWithoutTax
- // oc.FapiaoStatus = "2"
- // oc.TaxAmount = resp3.Data.TaxAmount
- // oc.IsRedWashed = strconv.FormatInt(int64(resp3.Data.IsRedWashed), 10)
- // oc.PdfUrl = resp3.Data.PdfUrl
- // oc.OfdUrl = resp3.Data.OfdUrl
- // oc.XmlUrl = resp3.Data.XmlUrl
- // service.SaveFaPiaoOrder(oc)
- // ids := strings.Split(oc.OrderIds, ",")
- // service.UpdateFaPiaoNumber(resp3.Data.TicketSn, ids) //同步发票号码
- // c.ServeSuccessJSON(map[string]interface{}{
- // "msg": "查询成功",
- // })
- //} else {
- // //错误处理
- // c.ServeSuccessJSON(map[string]interface{}{
- // "msg": "查询失败" + resp3.Message,
- // })
- //}
- }
-
- }
-
- func (c *HisApiController) GetNewFaPiaoData() {
- order_ids := c.GetString("order_ids")
- patient_id, _ := c.GetInt64("patient_id")
- //number := c.GetString("number")
-
- adminUser := c.GetAdminUserInfo()
- orders := strings.Split(order_ids, ",")
- patient, _ := service.GetPatientByID(adminUser.CurrentOrgId, patient_id)
-
- var bedCostTotal float64 = 0 //床位总费
- var bedCostSelfTotal float64 = 0 //床位自费
- var bedCostPartSelfTotal float64 = 0 //床位部分项目自费
-
- var operationCostTotal float64 = 0 //手术费
- var operationCostSelfTotal float64 = 0 //手术费
- var operationCostPartSelfTotal float64 = 0 //手术费
-
- var otherCostTotal float64 = 0 //其他费用
- var otherCostSelfTotal float64 = 0 //其他费用
- var otherCostPartSelfTotal float64 = 0 //其他费用
-
- var materialCostTotal float64 = 0 //材料费
- var materialCostSelfTotal float64 = 0 //材料费
- var materialCostPartSelfTotal float64 = 0 //材料费
-
- var westernMedicineCostTotal float64 = 0 //西药费
- var westernMedicineCostSelfTotal float64 = 0 //西药费
- var westernMedicineCostPartSelfTotal float64 = 0 //西药费
-
- var chineseTraditionalMedicineCostTotal float64 = 0 //中成药
- var chineseTraditionalMedicineCostSelfTotal float64 = 0 //中成药
- var chineseTraditionalMedicineCostPartSelfTotal float64 = 0 //中成药
-
- var checkCostTotal float64 = 0 //检查费
- var checkCostSelfTotal float64 = 0 //检查费
- var checkCostPartSelfTotal float64 = 0 //检查费
-
- var hiliCostTotal float64 = 0 //护理费
- var hiliCostSelfTotal float64 = 0 //护理费
- //var hiliCostPartSelfTotal float64 = 0 //护理费
-
- var laboratoryCostTotal float64 = 0 //化验费
- var laboratoryCostSelfTotal float64 = 0 //化验费
- var laboratoryCostPartSelfTotal float64 = 0 //化验费
-
- var treatCostTotal float64 = 0 //治疗费用
- var treatCostSelfTotal float64 = 0 //治疗费用
- var treatCostPartSelfTotal float64 = 0 //治疗费用
-
- var zhenChaCostTotal float64 = 0 //其他费用
- var zhenChaCostSelfTotal float64 = 0 //其他费用
- var zhenChaCostPartSelfTotal float64 = 0 //其他费用
-
- decimal.DivisionPrecision = 2
-
- var MedfeeSumamt float64 = 0 //治疗费用
- var PsnCashPay float64 = 0 //治疗费用
- var FundPaySumamt float64 = 0 //治疗费用
-
- var HifpPay float64 = 0 //治疗费用
- var MafPay float64 = 0 //治疗费用
- var AcctPay float64 = 0 //治疗费用
-
- for _, item := range orders {
- var new_order models.HisOrder
-
- order_id_num, _ := strconv.ParseInt(item, 10, 64)
- new_order, _ = service.GetHisOrderByID(order_id_num)
-
- MedfeeSumamt, _ = decimal.NewFromFloat(MedfeeSumamt).Add(decimal.NewFromFloat(new_order.MedfeeSumamt)).Float64()
- PsnCashPay, _ = decimal.NewFromFloat(PsnCashPay).Add(decimal.NewFromFloat(new_order.PsnCashPay)).Float64()
- FundPaySumamt, _ = decimal.NewFromFloat(FundPaySumamt).Add(decimal.NewFromFloat(new_order.FundPaySumamt)).Float64()
- HifpPay, _ = decimal.NewFromFloat(HifpPay).Add(decimal.NewFromFloat(new_order.HifpPay)).Float64()
- MafPay, _ = decimal.NewFromFloat(MafPay).Add(decimal.NewFromFloat(new_order.MafPay)).Float64()
- AcctPay, _ = decimal.NewFromFloat(AcctPay).Add(decimal.NewFromFloat(new_order.AcctPay)).Float64()
-
- orderInfos_two, _ := service.GetHisOrderDetailByNumber(new_order.Number, adminUser.CurrentOrgId)
- var balanceAccountsType int64
- if new_order.IsMedicineInsurance == 1 {
- balanceAccountsType = 1
- } else {
- balanceAccountsType = 2
- }
-
- if balanceAccountsType == 2 {
- //orderInfos_two, _ := service.GetHisOrderDetailByNumber(order.Number, adminUser.CurrentOrgId)
- for _, item := range orderInfos_two {
- item.FulamtOwnpayAmt = item.DetItemFeeSumamt
- if item.HisDoctorAdviceInfo.ID > 0 && item.HisPrescriptionProject.ID == 0 { //药品
- item.MedChrgitmType = "09"
- }
- if item.HisPrescriptionProject.ID > 0 && item.HisDoctorAdviceInfo.ID == 0 {
- if item.HisPrescriptionProject.Type == 2 {
- switch item.HisPrescriptionProject.VMHisProject.CostClassify {
- case 1:
- item.MedChrgitmType = "14"
- break
- case 2:
- item.MedChrgitmType = "05"
-
- break
- case 3:
- item.MedChrgitmType = "04"
-
- break
- case 4:
- item.MedChrgitmType = "03"
-
- break
- case 5:
- item.MedChrgitmType = "08"
-
- break
- case 6:
- item.MedChrgitmType = "14"
-
- break
- case 7:
- item.MedChrgitmType = "14"
-
- break
- case 8:
- item.MedChrgitmType = "03"
- break
- case 9:
- item.MedChrgitmType = "14"
- break
- }
-
- } else if item.HisPrescriptionProject.Type == 3 {
- item.MedChrgitmType = "08"
- }
- }
- }
-
- for _, item := range orderInfos_two {
- fmt.Println(item.MedChrgitmType)
- if item.MedChrgitmType == "07" { //床位费
- hiliCostTotal, _ = decimal.NewFromFloat(hiliCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- hiliCostSelfTotal = hiliCostTotal
- }
-
- if item.MedChrgitmType == "01" { //床位费
- bedCostTotal, _ = decimal.NewFromFloat(bedCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- bedCostSelfTotal = bedCostTotal
- }
-
- if item.MedChrgitmType == "02" { //诊察费
- zhenChaCostTotal, _ = decimal.NewFromFloat(zhenChaCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- zhenChaCostSelfTotal = zhenChaCostTotal
- }
-
- if item.MedChrgitmType == "03" { //检查费
- checkCostTotal, _ = decimal.NewFromFloat(checkCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- checkCostSelfTotal = checkCostTotal
- }
-
- if item.MedChrgitmType == "04" { //化验费
- laboratoryCostTotal, _ = decimal.NewFromFloat(laboratoryCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- laboratoryCostSelfTotal = laboratoryCostTotal
- }
-
- if item.MedChrgitmType == "05" || item.MedChrgitmType == "14" || item.MedChrgitmType == "201" { //治疗费
- treatCostTotal, _ = decimal.NewFromFloat(treatCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- treatCostSelfTotal = treatCostTotal
- }
-
- if item.MedChrgitmType == "06" { //手术费
- treatCostTotal, _ = decimal.NewFromFloat(operationCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- operationCostSelfTotal = treatCostTotal
- }
-
- if item.MedChrgitmType == "08" || item.MedChrgitmType == "1402" || item.MedChrgitmType == "1403" || item.MedChrgitmType == "1401" || item.MedChrgitmType == "301" { //材料费
- materialCostTotal, _ = decimal.NewFromFloat(materialCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- materialCostSelfTotal = materialCostTotal
- }
-
- if item.MedChrgitmType == "09" || item.MedChrgitmType == "101" { //西药费
- westernMedicineCostTotal, _ = decimal.NewFromFloat(westernMedicineCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- westernMedicineCostSelfTotal = westernMedicineCostTotal
- }
-
- if item.MedChrgitmType == "11" { //中成费
- chineseTraditionalMedicineCostTotal, _ = decimal.NewFromFloat(chineseTraditionalMedicineCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- chineseTraditionalMedicineCostSelfTotal = chineseTraditionalMedicineCostTotal
- }
-
- if c.GetAdminUserInfo().CurrentOrgId == 10106 {
- if item.MedChrgitmType == "0" || item.MedChrgitmType == "12" || item.MedChrgitmType == "02" { //其他费
- otherCostTotal, _ = decimal.NewFromFloat(otherCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- otherCostSelfTotal = otherCostTotal
- }
- } else {
- if item.MedChrgitmType == "0" || item.MedChrgitmType == "12" { //其他费
- otherCostTotal, _ = decimal.NewFromFloat(otherCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- otherCostSelfTotal = otherCostTotal
- }
-
- }
-
- }
-
- } else {
- for _, item := range orderInfos_two {
- if item.MedChrgitmType == "01" { //床位费
- bedCostTotal, _ = decimal.NewFromFloat(bedCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- //bedCostSelfTotal, _ = decimal.NewFromFloat(bedCostSelfTotal).Add(decimal.NewFromFloat(item.OverlmtAmt)).Float64()
- //bedCostPartSelfTotal, _ = decimal.NewFromFloat(bedCostPartSelfTotal).Add(decimal.NewFromFloat(item.PreselfpayAmt)).Float64()
- }
-
- if item.MedChrgitmType == "02" { //诊察费
- zhenChaCostTotal, _ = decimal.NewFromFloat(zhenChaCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- //zhenChaCostSelfTotal, _ = decimal.NewFromFloat(zhenChaCostSelfTotal).Add(decimal.NewFromFloat(item.OverlmtAmt)).Float64()
- //zhenChaCostPartSelfTotal, _ = decimal.NewFromFloat(zhenChaCostPartSelfTotal).Add(decimal.NewFromFloat(item.PreselfpayAmt)).Float64()
- }
-
- if c.GetAdminUserInfo().CurrentOrgId == 10188 || c.GetAdminUserInfo().CurrentOrgId == 10217 {
- if item.MedChrgitmType == "03" { //检查费
- laboratoryCostTotal, _ = decimal.NewFromFloat(laboratoryCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- //laboratoryCostSelfTotal, _ = decimal.NewFromFloat(laboratoryCostSelfTotal).Add(decimal.NewFromFloat(item.OverlmtAmt)).Float64()
- //laboratoryCostPartSelfTotal, _ = decimal.NewFromFloat(laboratoryCostPartSelfTotal).Add(decimal.NewFromFloat(item.PreselfpayAmt)).Float64()
-
- }
- } else {
- if item.MedChrgitmType == "03" { //检查费
- checkCostTotal, _ = decimal.NewFromFloat(checkCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- //checkCostSelfTotal, _ = decimal.NewFromFloat(checkCostSelfTotal).Add(decimal.NewFromFloat(item.OverlmtAmt)).Float64()
- //checkCostPartSelfTotal, _ = decimal.NewFromFloat(checkCostPartSelfTotal).Add(decimal.NewFromFloat(item.PreselfpayAmt)).Float64()
- }
-
- }
-
- if item.MedChrgitmType == "04" { //化验费
- laboratoryCostTotal, _ = decimal.NewFromFloat(laboratoryCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- //laboratoryCostSelfTotal, _ = decimal.NewFromFloat(laboratoryCostSelfTotal).Add(decimal.NewFromFloat(item.OverlmtAmt)).Float64()
- //laboratoryCostPartSelfTotal, _ = decimal.NewFromFloat(laboratoryCostPartSelfTotal).Add(decimal.NewFromFloat(item.PreselfpayAmt)).Float64()
-
- }
-
- if item.MedChrgitmType == "05" || item.MedChrgitmType == "14" || item.MedChrgitmType == "201" { //治疗费
- treatCostTotal, _ = decimal.NewFromFloat(treatCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- //treatCostSelfTotal, _ = decimal.NewFromFloat(treatCostSelfTotal).Add(decimal.NewFromFloat(item.OverlmtAmt)).Float64()
- //treatCostPartSelfTotal, _ = decimal.NewFromFloat(treatCostPartSelfTotal).Add(decimal.NewFromFloat(item.PreselfpayAmt)).Float64()
-
- }
-
- if item.MedChrgitmType == "06" { //手术费
- operationCostTotal, _ = decimal.NewFromFloat(operationCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- //operationCostSelfTotal, _ = decimal.NewFromFloat(operationCostSelfTotal).Add(decimal.NewFromFloat(item.OverlmtAmt)).Float64()
- //operationCostPartSelfTotal, _ = decimal.NewFromFloat(operationCostPartSelfTotal).Add(decimal.NewFromFloat(item.PreselfpayAmt)).Float64()
- }
-
- if item.MedChrgitmType == "08" || item.MedChrgitmType == "1401" || item.MedChrgitmType == "1402" || item.MedChrgitmType == "1403" || item.MedChrgitmType == "301" { //材料费
- materialCostTotal, _ = decimal.NewFromFloat(materialCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- //materialCostSelfTotal, _ = decimal.NewFromFloat(materialCostSelfTotal).Add(decimal.NewFromFloat(item.OverlmtAmt)).Float64()
- //materialCostPartSelfTotal, _ = decimal.NewFromFloat(materialCostPartSelfTotal).Add(decimal.NewFromFloat(item.PreselfpayAmt)).Float64()
- }
-
- if item.MedChrgitmType == "07" { //护理
- hiliCostTotal, _ = decimal.NewFromFloat(hiliCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- //hiliCostSelfTotal, _ = decimal.NewFromFloat(hiliCostSelfTotal).Add(decimal.NewFromFloat(item.OverlmtAmt)).Float64()
- //hiliCostPartSelfTotal, _ = decimal.NewFromFloat(hiliCostPartSelfTotal).Add(decimal.NewFromFloat(item.PreselfpayAmt)).Float64()
- }
-
- if item.MedChrgitmType == "09" || item.MedChrgitmType == "101" { //西药费
- westernMedicineCostTotal, _ = decimal.NewFromFloat(westernMedicineCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- //westernMedicineCostSelfTotal, _ = decimal.NewFromFloat(westernMedicineCostSelfTotal).Add(decimal.NewFromFloat(item.OverlmtAmt)).Float64()
- //westernMedicineCostPartSelfTotal, _ = decimal.NewFromFloat(westernMedicineCostPartSelfTotal).Add(decimal.NewFromFloat(item.PreselfpayAmt)).Float64()
- }
-
- if item.MedChrgitmType == "11" { //中成费
- chineseTraditionalMedicineCostTotal, _ = decimal.NewFromFloat(chineseTraditionalMedicineCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- //chineseTraditionalMedicineCostSelfTotal, _ = decimal.NewFromFloat(chineseTraditionalMedicineCostSelfTotal).Add(decimal.NewFromFloat(item.OverlmtAmt)).Float64()
- //chineseTraditionalMedicineCostPartSelfTotal, _ = decimal.NewFromFloat(chineseTraditionalMedicineCostPartSelfTotal).Add(decimal.NewFromFloat(item.PreselfpayAmt)).Float64()
- }
-
- if item.MedChrgitmType == "0" || item.MedChrgitmType == "12" { //其他费
- otherCostTotal, _ = decimal.NewFromFloat(otherCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- //otherCostSelfTotal, _ = decimal.NewFromFloat(otherCostSelfTotal).Add(decimal.NewFromFloat(item.OverlmtAmt)).Float64()
- //otherCostPartSelfTotal, _ = decimal.NewFromFloat(otherCostPartSelfTotal).Add(decimal.NewFromFloat(item.PreselfpayAmt)).Float64()
- }
- }
- }
- }
-
- //pre_pay_money := service.GetUserMoney(order.PatientId, adminUser.CurrentOrgId)
- //sum, _ := service.RefundListSum(adminUser.CurrentOrgId, startRecordDateTime, endRecordDateTime, order.PatientId)
- admin, _ := service.GetAdminUserInfoByID(adminUser.CurrentOrgId, adminUser.AdminUser.Id)
- charge_admin, _ := service.GetAdminUserInfoByID(adminUser.CurrentOrgId, adminUser.AdminUser.Id)
-
- c.ServeSuccessJSON(map[string]interface{}{
- "charge_admin_name": charge_admin.UserName,
- "patient": patient,
- "admin_user_name": admin.UserName, //收款员
- "bedCostTotal": bedCostTotal,
- "bedCostSelfTotal": bedCostSelfTotal,
- "bedCostPartSelfTotal": bedCostPartSelfTotal,
- "operationCostTotal": operationCostTotal,
- "operationCostSelfTotal": operationCostSelfTotal,
- "operationCostPartSelfTotal": operationCostPartSelfTotal,
- "otherCostTotal": otherCostTotal,
- "otherCostSelfTotal": otherCostSelfTotal,
- "otherCostPartSelfTotal": otherCostPartSelfTotal,
- "materialCostTotal": materialCostTotal,
- "materialCostSelfTotal": materialCostSelfTotal,
- "materialCostPartSelfTotal": materialCostPartSelfTotal,
- "westernMedicineCostTotal": westernMedicineCostTotal,
- "westernMedicineCostSelfTotal": westernMedicineCostSelfTotal,
- "westernMedicineCostPartSelfTotal": westernMedicineCostPartSelfTotal,
- "chineseTraditionalMedicineCostTotal": chineseTraditionalMedicineCostTotal,
- "chineseTraditionalMedicineCostSelfTotal": chineseTraditionalMedicineCostSelfTotal,
- "chineseTraditionalMedicineCostPartSelfTotal": chineseTraditionalMedicineCostPartSelfTotal,
- "checkCostTotal": checkCostTotal,
- "checkCostSelfTotal": checkCostSelfTotal,
- "checkCostPartSelfTotal": checkCostPartSelfTotal,
- "laboratoryCostTotal": laboratoryCostTotal,
- "laboratoryCostSelfTotal": laboratoryCostSelfTotal,
- "laboratoryCostPartSelfTotal": laboratoryCostPartSelfTotal,
- "treatCostTotal": treatCostTotal,
- "treatCostSelfTotal": treatCostSelfTotal,
- "treatCostPartSelfTotal": treatCostPartSelfTotal,
- "zhenChaCostTotal": zhenChaCostTotal,
- "zhenChaCostSelfTotal": zhenChaCostSelfTotal,
- "zhenChaCostPartSelfTotal": zhenChaCostPartSelfTotal,
- "hiliCostTotal": hiliCostTotal,
- "hiliCostSelfTotal": hiliCostSelfTotal,
- "medfee_sumamt": MedfeeSumamt,
- "fund_pay_sumamt": FundPaySumamt,
- "hifp_pay": HifpPay,
- "maf_pay": MafPay,
- "acct_pay": AcctPay,
- "psn_cash_pay": PsnCashPay,
- })
-
- }
-
- type FapiaoApiController struct {
- controllers.BaseAuthAPIController
-
- }
-
- type InvoiceRequest struct {
- SellerName string `json:"seller_name,omitempty"` // 销方名称
- SellerTaxpayerNum string `json:"seller_taxpayer_num"` // 销方纳税人识别号
- SellerAddress string `json:"seller_address"` // 销方地址
- SellerTel string `json:"seller_tel"` // 销方电话
- SellerBankName string `json:"seller_bank_name"` // 销方银行名称
- SellerBankAccount string `json:"seller_bank_account"` // 销方银行账号
- TitleType int `json:"title_type"` // 抬头类型:1 个人、政府事业单位;2 企业
- BuyerTitle string `json:"buyer_title"` // 购方名称
- BuyerTaxpayerNum string `json:"buyer_taxpayer_num,omitempty"` // 购方纳税人识别号
- BuyerAddress string `json:"buyer_address,omitempty"` // 购方地址
- BuyerPhone string `json:"buyer_phone,omitempty"` // 购方电话
- BuyerBankName string `json:"buyer_bank_name,omitempty"` // 购方银行名称
- BuyerBankAccount string `json:"buyer_bank_account,omitempty"` // 购方银行账号
- BuyerEmail string `json:"buyer_email,omitempty"` // 收票人邮箱
- OrderID string `json:"order_id"` // 商户订单号
- InvoiceTypeCode string `json:"invoice_type_code,omitempty"` // 开具发票类型
- CallbackURL string `json:"callback_url"` // 发票结果回传地址
- Drawer string `json:"drawer"` // 开票人姓名
- Payee string `json:"payee,omitempty"` // 收款人姓名
- Checker string `json:"checker,omitempty"` // 复核人姓名
- TerminalCode string `json:"terminal_code"` // 税盘号
- UserOpenID string `json:"user_openid,omitempty"` // 商家用户标识
- SpecialInvoiceKind string `json:"special_invoice_kind,omitempty"` // 特殊票种标识
- AmountHasTax string `json:"amount_has_tax"` // 含税总金额
- TaxAmount string `json:"tax_amount"` // 总税额
- AmountWithoutTax string `json:"amount_without_tax"` // 不含税总金额
- Remark string `json:"remark,omitempty"` // 备注
- StoreNo string `json:"store_no,omitempty"` // 门店编码
- Template int `json:"template"` // 发票模板
- Info *InvoiceInfo `json:"info,omitempty"` // 冠名票信息
- TaxpayerConfirmation *TaxpayerConfirmation `json:"taxpayer_confirmation,omitempty"` // 纳税人确认信息
- SpecificBusinessCode string `json:"specific_business_code,omitempty"` // 特定业务代码
- RealStaticRent *RealStaticRent `json:"real_static_rent,omitempty"` // 不动产经营租赁信息
- PassengerTransport []PassengerTransport `json:"passenger_transport,omitempty"` // 旅客运输信息
- GoodsTransport []GoodsTransport `json:"goods_transport,omitempty"` // 货物运输信息
- AgriculturalPurchase *AgriculturalPurchase `json:"agricultural_purchase,omitempty"` // 农产品收购信息
- BuildingService *BuildingService `json:"building_service,omitempty"` // 建筑服务信息
- RealStaticSales *RealStaticSales `json:"real_static_sales,omitempty"` // 不动产销售信息
- TractorCombine *TractorCombine `json:"tractor_combine,omitempty"` // 拖拉机与联合收割机信息
- UsedCarService *UsedCarService `json:"used_car_service,omitempty"` // 二手车服务信息
- UsedCarSell *UsedCarSell `json:"used_car_sell,omitempty"` // 二手车销售信息
- DeductionService *DeductionService `json:"deduction_service,omitempty"` // 差额征税信息
- Items []Item `json:"items"` // 项目商品明细
- }
-
- type InvoiceInfo struct {
- UseDate string `json:"use_date,omitempty"` // 入园日期
- TicketName string `json:"ticket_name,omitempty"` // 票据名称
- }
-
- type TaxpayerConfirmation struct {
- RenewableResourceRecyclingFlag int `json:"renewable_resource_recycling_flag,omitempty"` // 再生资源回收单位标志
- DrawWithNoBuyerFlag int `json:"draw_with_nobuyer_flag,omitempty"` // 无购买方纳税人信息继续开票标志
- NotDutyFreeReason string `json:"not_dutyfree_reason,omitempty"` // 放弃享受减按1%征收率原因
- }
-
- type RealStaticRent struct {
- PropertyNum string `json:"property_num"` // 房屋产权证号
- Location string `json:"location"` // 不动产地址 (省市区县)
- AddressDetail string `json:"address_detail"` // 不动产详细地址
- RentBeginDate string `json:"rent_begin_date"` // 租赁期起
- RentEndDate string `json:"rent_end_date"` // 租赁期止
- IntercityFlag string `json:"intercity_flag"` // 跨地市标志
- UnitOfArea int `json:"unit_of_area"` // 面积单位
- }
-
- type PassengerTransport struct {
- Traveler string `json:"traveler,omitempty"` // 出行人
- IDType int `json:"id_type,omitempty"` // 证件类型
- IDNumber string `json:"id_number,omitempty"` // 证件号码
- TravelDate string `json:"travel_date,omitempty"` // 出行日期
- DeparturePlace string `json:"departure_place,omitempty"` // 出发地
- DestinationPlace string `json:"destination_palce,omitempty"` // 到达地
- VehicleType int `json:"vehicle_type,omitempty"` // 交通工具类型
- Level string `json:"level,omitempty"` // 等级
- }
-
- type GoodsTransport struct {
- TransportNumber string `json:"transport_number,omitempty"` // 运输工具号牌
- TransportKind string `json:"transport_kind,omitempty"` // 运输工具种类
- GoodsName string `json:"goods_name,omitempty"` // 货物名称
- DeparturePlace string `json:"departure_place,omitempty"` // 出发地
- DestinationPlace string `json:"destination_place,omitempty"` // 到达地
- }
-
- type AgriculturalPurchase struct {
- IDType string `json:"id_type,omitempty"` // 证件类型
- }
-
- type BuildingService struct {
- Site string `json:"site"` // 建筑服务发生地
- DetailSite string `json:"detail_site,omitempty"` // 详细地址
- BuildingProject string `json:"building_project"` // 建筑项目名称
- CrossSign string `json:"cross_sign"` // 跨地市标志
- }
-
- type RealStaticSales struct {
- PropertyNum string `json:"property_num,omitempty"` // 房屋产权证书号
- Location string `json:"location"` // 不动产地址
- AddressDetail string `json:"address_detail,omitempty"` // 不动产详细地址
- CrossSign string `json:"cross_sign"` // 跨市标志
- UnitOfArea int `json:"unit_of_area"` // 面积单位
- OnlineContractCode string `json:"online_contract_code,omitempty"` // 不动产单元代码/网签合同编码
- }
-
- type TractorCombine struct {
- ChassisNumber string `json:"chassis_number,omitempty"` // 底盘号或机架号
- EngineNumber string `json:"engine_number"` // 发动机号
- IsRegister string `json:"is_register,omitempty"` // 是否用于拖拉机和联合收割机登记
- }
-
- type UsedCarService struct {
- TicketSN string `json:"ticket_sn"` // 发票号码
- PaperTicketCode string `json:"paper_ticket_code"` // 纸票发票代码
- PaperTicketSN string `json:"paper_ticket_sn"` // 纸票发票号码
- }
-
- type UsedCarSell struct {
- FrameNumber string `json:"frame_number"` // 车架号码
- LicensePlateNumber string `json:"license_plate_number"` // 车牌号
- BrandModel string `json:"brand_model"` // 厂牌型号
- RegistrationCertificate string `json:"registration_certificate"` // 登记证号
- TransferOfficeName string `json:"transfer_office_name"` // 转入地车辆管理所名称
- NatureOfEnterprise string `json:"nature_of_enterprise"` // 企业性质
- }
-
- type DeductionService struct {
- TaxDiffServiceFlag int `json:"tax_diff_service_flag,omitempty"` // 差额征税标识
- TaxableServiceName string `json:"taxable_service_name,omitempty"` // 差额征税项目名称
- }
-
- type Item struct {
- ItemName string `json:"item_name"` // 商品名称
- ItemSpec string `json:"item_spec,omitempty"` // 商品规格
- ItemUnit string `json:"item_unit"` // 商品单位
- ItemQuantity float64 `json:"item_quantity"` // 商品数量
- ItemPrice float64 `json:"item_price"` // 商品单价
- ItemAmount float64 `json:"item_amount"` // 商品金额
- ItemTaxRate float64 `json:"item_tax_rate"` // 商品税率
- ItemTaxAmount float64 `json:"item_tax_amount"` // 商品税额
- RowType int `json:"row_type"` // 行性质标志
- }
-
- func (c *FapiaoApiController) GetFaPiaoList() {
- page, _ := c.GetInt64("page", -1)
- limit, _ := c.GetInt64("limit", -1)
- start_time := c.GetString("start_time")
- end_time := c.GetString("end_time")
- timeLayout := "2006-01-02"
- loc, _ := time.LoadLocation("Local")
- var startTime int64
- if len(start_time) > 0 {
- theTime, err := time.ParseInLocation(timeLayout+" 15:04:05", start_time+" 00:00:00", loc)
- if err != nil {
- //fmt.Println(err)
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- startTime = theTime.Unix()
- }
- var endTime int64
- if len(end_time) > 0 {
- theTime, err := time.ParseInLocation(timeLayout+" 15:04:05", end_time+" 23:59:59", loc)
- if err != nil {
- utils.ErrorLog(err.Error())
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- endTime = theTime.Unix()
- }
-
- adminUser := c.GetAdminUserInfo()
- org_id := adminUser.CurrentOrgId
- order, err, total := service.GetFaPiaoList(org_id, page, limit, startTime, endTime)
- if err == nil {
- c.ServeSuccessJSON(map[string]interface{}{
- "fapiao_record": order,
- "total": total,
- })
-
- } else {
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
-
- }
- func (c *FapiaoApiController) GetOrderFaPiaoList() {
- page, _ := c.GetInt64("page", -1)
- limit, _ := c.GetInt64("limit", -1)
- start_time := c.GetString("start_time")
- end_time := c.GetString("end_time")
- is_open_fapiao, _ := c.GetInt64("is_open_fapiao", 0)
- sort_type, _ := c.GetInt64("sort_type", 0)
-
- patient_id, _ := c.GetInt64("patient_id", 0)
-
- timeLayout := "2006-01-02"
- loc, _ := time.LoadLocation("Local")
- var startTime int64
- if len(start_time) > 0 {
- theTime, err := time.ParseInLocation(timeLayout+" 15:04:05", start_time+" 00:00:00", loc)
- if err != nil {
- //fmt.Println(err)
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- startTime = theTime.Unix()
- }
- var endTime int64
- if len(end_time) > 0 {
- theTime, err := time.ParseInLocation(timeLayout+" 15:04:05", end_time+" 23:59:59", loc)
- if err != nil {
- utils.ErrorLog(err.Error())
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeParamWrong)
- return
- }
- endTime = theTime.Unix()
- }
- adminUser := c.GetAdminUserInfo()
- org_id := adminUser.CurrentOrgId
- order, err, total := service.GetFaPiaoSettleList(org_id, page, limit, startTime, endTime, sort_type, start_time, end_time, is_open_fapiao, patient_id)
- if err == nil {
- c.ServeSuccessJSON(map[string]interface{}{
- "order": order,
- "total": total,
- })
-
- } else {
- c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeDataException)
- return
- }
- }
-
- func (c *FapiaoApiController) GetLoginUploadCode() {
- sdk := invoice.NewSdk(common.HMAC_SHA256, "5058f0defd12047ee2a7", "51440fbee667ea9a53aaa68c9c408367", "", "test")
- var config models.FapiaoConfig
- config, _ = service.FindFaPiaoConfigInfo(c.GetAdminUserInfo().CurrentOrgId)
- routerAddress, postData := fapiao.GetSMSCode(config) //发票开具
- fmt.Println(routerAddress)
- fmt.Println(postData)
- r, err := sdk.HttpPost("https://apigw.goldentec.com", routerAddress, postData)
- if err != nil {
- fmt.Println(err)
- } else {
- var resp SmsCode
- // 将 byte 切片转换为结构体
- json.Unmarshal(r, &resp)
- if resp.Code == 0 {
- c.ServeSuccessJSON(map[string]interface{}{
- "msg": resp.Message,
- })
- }
- }
- }
-
- type SmsCode struct {
- Code int `json:"code"`
- Message string `json:"message"`
- }
-
- func (c *FapiaoApiController) Login() {
- code := c.GetString("code")
- var config models.FapiaoConfig
- config, _ = service.FindFaPiaoConfigInfo(c.GetAdminUserInfo().CurrentOrgId)
- sdk := invoice.NewSdk(common.HMAC_SHA256, "5058f0defd12047ee2a7", "51440fbee667ea9a53aaa68c9c408367", "", "test")
- routerAddress, postData := fapiao.Login(code, config) //发票开具
- r, err := sdk.HttpPost("https://apigw.goldentec.com", routerAddress, postData)
- if err != nil {
- fmt.Println(err)
- } else {
- var resp SmsCode
- // 将 byte 切片转换为结构体
- json.Unmarshal(r, &resp)
- if resp.Code == 0 {
- c.ServeSuccessJSON(map[string]interface{}{
- "msg": resp.Message,
- })
- }
- }
- }
- func (c *FapiaoApiController) GetQRCode() {
- sdk := invoice.NewSdk(common.HMAC_SHA256, "5058f0defd12047ee2a7", "51440fbee667ea9a53aaa68c9c408367", "", "test")
- var config models.FapiaoConfig
- config, _ = service.FindFaPiaoConfigInfo(c.GetAdminUserInfo().CurrentOrgId)
- routerAddress, postData := fapiao.GetQRCode(config) //发票开具
- r, err := sdk.HttpPost("https://apigw.goldentec.com", routerAddress, postData)
- if err != nil {
- fmt.Println(err)
- } else {
- var resp QRAuth
- // 将 byte 切片转换为结构体
- err := json.Unmarshal(r, &resp)
- fmt.Println(resp)
- if err != nil {
- fmt.Println("Error unmarshalling:", err)
- } else {
- if resp.Code == 0 {
- decodedBytes, _ := base64.StdEncoding.DecodeString(resp.Data.QrCode)
- c.ServeSuccessJSON(map[string]interface{}{
- "cus_status": 1,
- "qr_code": string(decodedBytes),
- })
-
- } else {
- c.ServeSuccessJSON(map[string]interface{}{
- "cus_status": -4,
- "msg": resp.Message,
- })
- }
-
- }
- //fmt.Println(string(r))
- }
- }
-
- func (c *FapiaoApiController) OpenFaPiao() {
- //var config models.FapiaoConfig
- //config, _ = service.FindFaPiaoConfigInfo(c.GetAdminUserInfo().CurrentOrgId)
-
- //认证接口
- sdk := invoice.NewSdk(common.HMAC_SHA256, "5058f0defd12047ee2a7", "51440fbee667ea9a53aaa68c9c408367", "", "")
- //status := GetQRStatusTwo(c.GetAdminUserInfo().CurrentOrgId)
- //fmt.Println("11112222")
- //
- //fmt.Println(status)
- //if status == 0 {
- // c.ServeFailJSONWithSGJErrorCode(enums.ErrorCodeAuthWrong)
- // return
- //}
- //查询余量接口
- //routerAddress, postData := fapiao.QueryStock(config)
- //r, err := sdk.HttpPost("https://apigw.goldentec.com", routerAddress, postData)
- //fmt.Println(string(r))
- //if err != nil {
- // fmt.Println(err)
- //} else {
- // var resp2 FapiaoStock
- // // 将 byte 切片转换为结构体
- // err2 := json.Unmarshal(r, &resp2)
- // if err2 != nil {
- // fmt.Println(err2)
- //
- // } else {
- // if resp2.Code == 0 {
- // if resp2.Data.LeftQuantity <= 0 {
- // c.ServeSuccessJSON(map[string]interface{}{
- // "msg": "发票余量不足,请登录高灯平台申领发票",
- // "status": -1,
- // })
- // return
- // }
- // }
- // }
- //}
- //return
-
- //开蓝票逻辑
- order_ids := c.GetString("order_ids")
- admin_user_id, _ := c.GetInt64("admin_user_id")
- ids := strings.Split(order_ids, ",")
- orders, _ := service.GetFaPiaoOrderByIDS(ids)
- var MedfeeSumamt float64 = 0 //治疗费用
- var PsnCashPay float64 = 0 //治疗费用
- var FundPaySumamt float64 = 0 //治疗费用
-
- var HifmiPay float64 = 0 //治疗费用
- var MafPay float64 = 0 //治疗费用
- var HifpPay float64 = 0 //治疗费用
- var AcctPay float64 = 0 //治疗费用
-
- var details []models.HisOrderInfo
- var numbers []string
- decimal.DivisionPrecision = 2
-
- var remark string
-
- for _, oss := range orders {
- MedfeeSumamt, _ = decimal.NewFromFloat(MedfeeSumamt).Add(decimal.NewFromFloat(oss.MedfeeSumamt)).Float64()
- PsnCashPay, _ = decimal.NewFromFloat(PsnCashPay).Add(decimal.NewFromFloat(oss.PsnCashPay)).Float64()
- FundPaySumamt, _ = decimal.NewFromFloat(FundPaySumamt).Add(decimal.NewFromFloat(oss.FundPaySumamt)).Float64()
-
- HifmiPay, _ = decimal.NewFromFloat(HifmiPay).Add(decimal.NewFromFloat(oss.HifmiPay)).Float64()
- MafPay, _ = decimal.NewFromFloat(MafPay).Add(decimal.NewFromFloat(oss.MafPay)).Float64()
- HifpPay, _ = decimal.NewFromFloat(HifpPay).Add(decimal.NewFromFloat(oss.HifpPay)).Float64()
- AcctPay, _ = decimal.NewFromFloat(AcctPay).Add(decimal.NewFromFloat(oss.AcctPay)).Float64()
-
- numbers = append(numbers, oss.Number)
- }
- if MedfeeSumamt > 0 {
- MedfeeSumamt_str := fmt.Sprintf("%.2f", MedfeeSumamt)
-
- if len(remark) == 0 {
- //MedfeeSumamt_str := fmt.Sprintf("%.2f", MedfeeSumamt)
- remark = "医疗总费用: " + MedfeeSumamt_str
- } else {
- remark = remark + " 医疗总费用:" + MedfeeSumamt_str
- }
- }
-
- if FundPaySumamt > 0 {
- MedfeeSumamt_str := fmt.Sprintf("%.2f", FundPaySumamt)
-
- if len(remark) == 0 {
- //MedfeeSumamt_str := fmt.Sprintf("%.2f", MedfeeSumamt)
- remark = "基金支付总金额: " + MedfeeSumamt_str
- } else {
- remark = remark + " 基金支付总金额:" + MedfeeSumamt_str
- }
- }
-
- if PsnCashPay > 0 {
- MedfeeSumamt_str := fmt.Sprintf("%.2f", PsnCashPay)
-
- if len(remark) == 0 {
- //MedfeeSumamt_str := fmt.Sprintf("%.2f", MedfeeSumamt)
- remark = "个人现金支付: " + MedfeeSumamt_str
- } else {
- remark = remark + " 个人现金支付:" + MedfeeSumamt_str
- }
- }
-
- if HifmiPay > 0 {
- MedfeeSumamt_str := fmt.Sprintf("%.2f", HifmiPay)
-
- if len(remark) == 0 {
- //MedfeeSumamt_str := fmt.Sprintf("%.2f", MedfeeSumamt)
- remark = "大病基金支付: " + MedfeeSumamt_str
- } else {
- remark = remark + " 大病基金支付:" + MedfeeSumamt_str
- }
- }
-
- if AcctPay > 0 {
- MedfeeSumamt_str := fmt.Sprintf("%.2f", AcctPay)
-
- if len(remark) == 0 {
- //MedfeeSumamt_str := fmt.Sprintf("%.2f", MedfeeSumamt)
- remark = "个账支付: " + MedfeeSumamt_str
- } else {
- remark = remark + " 个账支付:" + MedfeeSumamt_str
- }
- }
-
- if HifpPay > 0 {
- MedfeeSumamt_str := fmt.Sprintf("%.2f", HifpPay)
-
- if len(remark) == 0 {
- //MedfeeSumamt_str := fmt.Sprintf("%.2f", MedfeeSumamt)
- remark = "基本统筹基金支付: " + MedfeeSumamt_str
- } else {
- remark = remark + " 基本统筹基金支付:" + MedfeeSumamt_str
- }
- }
-
- if MafPay > 0 {
- MedfeeSumamt_str := fmt.Sprintf("%.2f", MafPay)
-
- if len(remark) == 0 {
- //MedfeeSumamt_str := fmt.Sprintf("%.2f", MedfeeSumamt)
- remark = "医疗救助基金支付: " + MedfeeSumamt_str
- } else {
- remark = remark + " 医疗救助基金支付:" + MedfeeSumamt_str
- }
- }
-
- details, _ = service.GetFaPiaoOrderInfoByNumbers(numbers)
- role, _ := service.GetAdminUserRole(admin_user_id, c.GetAdminUserInfo().CurrentOrgId)
- //role.UserName = ""
- type CostType struct {
- name string
- price float64
- }
- var cts []CostType
- var ct CostType
-
- var bedCostTotal float64 = 0 //床位总费
- var operationCostTotal float64 = 0 //手术费
- var otherCostTotal float64 = 0 //其他费用
- var materialCostTotal float64 = 0 //材料费
- var westernMedicineCostTotal float64 = 0 //西药费
- var chineseTraditionalMedicineCostTotal float64 = 0 //中成药
- var checkCostTotal float64 = 0 //检查费
- var laboratoryCostTotal float64 = 0 //化验费
- var treatCostTotal float64 = 0 //治疗费用
- var huliCostTotal float64 = 0 //治疗费用
- var zhencaCostTotal float64 = 0 //治疗费用
-
- for _, item := range details {
- if item.MedChrgitmType == "01" { //床位费
- bedCostTotal, _ = decimal.NewFromFloat(bedCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- }
- if item.MedChrgitmType == "07" { //护理费
- huliCostTotal, _ = decimal.NewFromFloat(huliCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- }
- if c.GetAdminUserInfo().CurrentOrgId == 10188 || c.GetAdminUserInfo().CurrentOrgId == 10217 {
- if item.MedChrgitmType == "03" { //检查费
- laboratoryCostTotal, _ = decimal.NewFromFloat(laboratoryCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- }
- } else {
- if item.MedChrgitmType == "03" { //检查费
- checkCostTotal, _ = decimal.NewFromFloat(checkCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- }
-
- }
- if item.MedChrgitmType == "04" { //化验费
- laboratoryCostTotal, _ = decimal.NewFromFloat(laboratoryCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- }
-
- if item.MedChrgitmType == "05" || item.MedChrgitmType == "1402" || item.MedChrgitmType == "1403" { //治疗费
- treatCostTotal, _ = decimal.NewFromFloat(treatCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- }
-
- if item.MedChrgitmType == "06" { //手术费
- operationCostTotal, _ = decimal.NewFromFloat(operationCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- }
-
- if item.MedChrgitmType == "08" { //材料费
- materialCostTotal, _ = decimal.NewFromFloat(materialCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- }
-
- if item.MedChrgitmType == "09" { //西药费
- westernMedicineCostTotal, _ = decimal.NewFromFloat(westernMedicineCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- }
-
- if item.MedChrgitmType == "11" { //中成费
- chineseTraditionalMedicineCostTotal, _ = decimal.NewFromFloat(chineseTraditionalMedicineCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- }
-
- if item.MedChrgitmType == "14" || item.MedChrgitmType == "0" || item.MedChrgitmType == "12" { //其他费
- otherCostTotal, _ = decimal.NewFromFloat(otherCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- }
-
- if item.MedChrgitmType == "02" { //诊察
- zhencaCostTotal, _ = decimal.NewFromFloat(zhencaCostTotal).Add(decimal.NewFromFloat(item.DetItemFeeSumamt)).Float64()
- }
- }
- if bedCostTotal > 0 {
- ct.name = "床位费"
- ct.price = bedCostTotal
- cts = append(cts, ct)
- }
-
- if operationCostTotal > 0 {
- ct.name = "手术费"
- ct.price = operationCostTotal
- cts = append(cts, ct)
-
- }
- if otherCostTotal > 0 {
- ct.name = "其他费"
- ct.price = otherCostTotal
- cts = append(cts, ct)
-
- }
- if materialCostTotal > 0 {
- ct.name = "材料费"
- ct.price = materialCostTotal
- cts = append(cts, ct)
-
- }
- if westernMedicineCostTotal > 0 {
- ct.name = "西药费"
- ct.price = westernMedicineCostTotal
- cts = append(cts, ct)
-
- }
- if chineseTraditionalMedicineCostTotal > 0 {
- ct.name = "中成药费"
- ct.price = chineseTraditionalMedicineCostTotal
- cts = append(cts, ct)
-
- }
- if checkCostTotal > 0 {
- ct.name = "检查费"
- ct.price = checkCostTotal
- cts = append(cts, ct)
-
- }
- if laboratoryCostTotal > 0 {
- ct.name = "化验费"
- ct.price = laboratoryCostTotal
- cts = append(cts, ct)
-
- }
- if treatCostTotal > 0 {
- ct.name = "治疗费"
- ct.price = treatCostTotal
- cts = append(cts, ct)
-
- }
- if huliCostTotal > 0 {
- ct.name = "护理费"
- ct.price = huliCostTotal
- cts = append(cts, ct)
-
- }
-
- if zhencaCostTotal > 0 {
- ct.name = "诊察费"
- ct.price = zhencaCostTotal
- cts = append(cts, ct)
-
- }
- fmt.Println(cts)
- org_config, _ := service.FindMedicalInsuranceInfo(c.GetAdminUserInfo().CurrentOrgId)
- var config2 models.FapiaoConfig
- config2, _ = service.FindFaPiaoConfigInfo(c.GetAdminUserInfo().CurrentOrgId)
- number := strconv.FormatInt(time.Now().Unix(), 10) + "_" + strconv.FormatInt(orders[0].UserOrgId, 10) + "_" + strconv.FormatInt(orders[0].PatientId, 10)
- amountWithoutTax, _, taxAmount, amountHasTax := CalculatePriceDetails(MedfeeSumamt, 1, 0.00)
- patient, _ := service.GetXTPatientInfo(c.GetAdminUserInfo().CurrentOrgId, orders[0].PatientId)
- orders[0].PsnName = patient.Name
-
- postData3 := map[string]interface{}{
- "seller_name": org_config.OrgName,
- "seller_taxpayer_num": config2.SellerTaxpayerNum,
- "seller_address": config2.SellerAddress,
- "seller_tel": config2.SellerTel,
- "seller_bank_name": config2.SellerBankName,
- "seller_bank_account": config2.SellerBankAccount,
- "title_type": 1,
- "buyer_title": orders[0].PsnName + "(个人)",
- "buyer_taxpayer_num": "",
- "buyer_address": "",
- "buyer_phone": "",
- "buyer_bank_name": "",
- "buyer_bank_account": "",
- "buyer_email": "",
- "order_id": number,
- "invoice_type_code": "082",
- "callback_url": "http://www.goldentec.com/callback",
- "drawer": role.UserName,
- "payee": "",
- "checker": "",
- "terminal_code": config2.TerminalCode,
- "user_openid": "",
- "special_invoice_kind": "",
- "zsfs": "",
- "deduction": "",
- "amount_has_tax": amountHasTax,
- "tax_amount": taxAmount,
- "amount_without_tax": amountWithoutTax,
- "remark": remark,
- }
-
- ////项目商品明细
- items := make([]map[string]interface{}, 0)
- for _, ct := range cts {
- item := make(map[string]interface{})
- amountWithoutTax, _, taxAmount, _ := CalculatePriceDetails(ct.price, 1, 0.00)
- item["name"] = ct.name
- item["tax_code"] = "3070202000000000000"
- item["models"] = ""
- item["unit"] = ""
- item["total_price"] = amountWithoutTax
- item["total"] = "1"
- item["price"] = amountWithoutTax
- item["tax_rate"] = "0.00"
- item["tax_amount"] = taxAmount
- item["discount"] = "0"
- item["preferential_policy_flag"] = "1"
- item["zero_tax_flag"] = "1"
- item["vat_special_management"] = "免税"
- items = append(items, item)
- }
- postData3["items"] = items
- routerAddress, postData4 := fapiao.Blue(postData3) //发票开具
- fmt.Println(postData4)
-
- r, err4 := sdk.HttpPost("https://apigw.goldentec.com", routerAddress, postData4)
- fmt.Println("blue")
- fmt.Println(err4)
- fmt.Println(string(r))
- if err4 != nil {
- fmt.Println(err4)
- } else {
- var resp OpenFaPiaoResultResponse
- // 将 byte 切片转换为结构体
- err := json.Unmarshal(r, &resp)
- fmt.Println(resp)
- if err != nil {
- fmt.Println("Error unmarshalling:", err)
- } else {
- fmt.Println(resp)
-
- if resp.Code == 0 {
- var fapiaos models.HisFaPiaoOrder
- fapiaos.InvoiceId = resp.Data.InvoiceId
- fapiaos.OrderSn = resp.Data.OrderSn
- fapiaos.FapiaoStatus = "1"
- fapiaos.OrderIds = order_ids
- fapiaos.UserOrgId = c.GetAdminUserInfo().CurrentOrgId
- fapiaos.Status = 1
- fapiaos.PatientId = orders[0].PatientId
- fapiaos.Ctime = time.Now().Unix()
- fapiaos.Mtime = time.Now().Unix()
- fapiaos.Creator = role.UserName
- fapiaos.MedfeeSumamt = MedfeeSumamt
- fapiaos.FundPaySumamt = FundPaySumamt
- fapiaos.PsnCashPay = PsnCashPay
- fmt.Println(ids)
- service.UpdateFaPiaoSN(resp.Data.OrderSn, ids) //同步发票号码
- err5 := service.SaveFaPiaoOrder(&fapiaos)
- // 异步调用查询操作,通过闭包传递参数
- // 异步调用查询操作,通过闭包传递多个参数
- go func(num string, sn string, number string, fapiaos models.HisFaPiaoOrder, ids []string) {
- // 延迟等待一定时间再查询
- time.Sleep(30 * time.Second)
- // 调用查询发票的函数
- //queryInvoice(id, user, retries)
- routerAddress2, postData2 := fapiao.Query(num, sn, number)
- r3, err2 := sdk.HttpPost("https://apigw.goldentec.com", routerAddress2, postData2)
- fmt.Println("query")
- fmt.Println(string(r3))
- if err2 != nil {
- fmt.Println(err2)
- } else {
- var resp3 QueryFaPiaoResultResponse
- // 将 byte 切片转换为结构体
- json.Unmarshal(r3, &resp3)
- if resp3.Code == 0 {
- if resp3.Data.Status == 3 {
- // 异步调用查询操作,不阻塞主程序
- fapiaos.TicketSn = resp3.Data.TicketSn
- fapiaos.TicketDate = resp3.Data.TicketDate
- fapiaos.AmountWithTax = resp3.Data.AmountWithoutTax
- fapiaos.AmountWithoutTax = resp3.Data.AmountWithoutTax
- fapiaos.FapiaoStatus = "2"
- fapiaos.TaxAmount = resp3.Data.TaxAmount
- fapiaos.IsRedWashed = strconv.FormatInt(int64(resp3.Data.IsRedWashed), 10)
- fapiaos.PdfUrl = resp3.Data.PdfUrl
- fapiaos.OfdUrl = resp3.Data.OfdUrl
- fapiaos.XmlUrl = resp3.Data.XmlUrl
- service.SaveFaPiaoOrder(&fapiaos)
- service.UpdateFaPiaoNumber(resp3.Data.TicketSn, ids) //同步发票号码
-
- } else if resp3.Data.Status == 1 {
- fapiaos.FapiaoStatus = "1"
- fapiaos.TicketSn = ""
- service.SaveFaPiaoOrder(&fapiaos)
- //service.UpdateFaPiaoNumber(resp3.Data.TicketSn, ids) //同步发票号码
- } else if resp3.Data.Status == 2 {
- fapiaos.FapiaoStatus = "3"
- fapiaos.TicketSn = ""
- fapiaos.Message = resp3.Data.Message
- service.SaveFaPiaoOrder(&fapiaos)
- } else {
- fapiaos.FapiaoStatus = "3"
- fapiaos.TicketSn = ""
- fapiaos.Message = resp3.Data.Message
- service.SaveFaPiaoOrder(&fapiaos)
- }
- } else {
- //错误处理
- c.ServeSuccessJSON(map[string]interface{}{
- "msg": "查询失败" + resp3.Message,
- })
- }
- }
- }(config2.SellerTaxpayerNum, resp.Data.OrderSn, number, fapiaos, ids) // 这里将多个参数传递给闭包
-
- if err5 == nil {
- c.ServeSuccessJSON(map[string]interface{}{
- "msg": "开具成功,审核中。",
- })
- }
-
- } else {
- //错误处理
- c.ServeSuccessJSON(map[string]interface{}{
- "msg": "开具失败" + resp.Message,
- })
- }
- }
- }
- }
-
- func (c *FapiaoApiController) RedFaPiao() {
-
- id, _ := c.GetInt64("id")
- admin_user_id, _ := c.GetInt64("admin_user_id")
- role2, _ := service.GetAdminUserRole(admin_user_id, c.GetAdminUserInfo().CurrentOrgId)
- fapiao_config, _ := service.GetFaPiaoOrderById(id)
- var config models.FapiaoConfig
- config, _ = service.FindFaPiaoConfigInfo(c.GetAdminUserInfo().CurrentOrgId)
- sdk := invoice.NewSdk(common.HMAC_SHA256, "5058f0defd12047ee2a7", "51440fbee667ea9a53aaa68c9c408367", "", "test")
- routerAddress, postData := fapiao.Red(config.SellerTaxpayerNum, "", fapiao_config.OrderSn) //发票开具
- fmt.Println("postData")
- fmt.Println(postData)
- fmt.Println("postData")
- red, err := sdk.HttpPost("https://apigw.goldentec.com", routerAddress, postData)
- fmt.Println("red")
- fmt.Println(red)
- fmt.Println("red")
-
- if err != nil {
- fmt.Println(err)
- } else {
- var resp RedResult
- // 将 byte 切片转换为结构体
- json.Unmarshal(red, &resp)
-
- fmt.Println("resp")
- fmt.Println(resp)
- fmt.Println("resp")
-
- if resp.Code == 0 {
- if resp.Data[0].State == 1 {
- //查询红票开具情况
- routerAddress2, postData2 := fapiao.Query(config.SellerTaxpayerNum, fapiao_config.OrderSn, "")
- r3, _ := sdk.HttpPost("https://apigw.goldentec.com", routerAddress2, postData2)
- var resp3 QueryFaPiaoResultResponse
- // 将 byte 切片转换为结构体
- json.Unmarshal(r3, &resp3)
-
- fmt.Println("resp")
- fmt.Println(string(r3))
- fmt.Println(resp3)
- fmt.Println("resp")
- if resp3.Code == 0 {
- if resp3.Data.IsRedWashed == 1 {
- fapiao_config.IsRedWashed = "1"
- fapiao_config.Status = 0
- fapiao_config.RedInvoiceId = resp.Data[0].InvoiceId
- fapiao_config.RedInvoiceCreator = role2.UserName
- service.SaveFaPiaoOrder(&fapiao_config)
- //将结算表的发票号码清空
- service.UpdateFaPiaoNumberByNumber(fapiao_config.TicketSn)
- c.ServeSuccessJSON(map[string]interface{}{
- "msg": "红冲成功",
- })
- } else {
- c.ServeSuccessJSON(map[string]interface{}{
- "msg": "系统错误,红冲失败",
- })
- }
- } else {
- c.ServeSuccessJSON(map[string]interface{}{
- "msg": resp3.Message,
- })
- }
- } else {
- c.ServeSuccessJSON(map[string]interface{}{
- "msg": resp.Message,
- })
- }
- } else {
-
- c.ServeSuccessJSON(map[string]interface{}{
- "msg": resp.Message,
- })
- }
- }
- }
- //func GetQRStatusTwo(org_id int64) (status int64) {
- // sdk := invoice.NewSdk(common.HMAC_SHA256, "5058f0defd12047ee2a7", "51440fbee667ea9a53aaa68c9c408367", "", "test")
- // var config models.FapiaoConfig
- // config, _ = service.FindFaPiaoConfigInfo(org_id)
- // routerAddress, postData := fapiao.GetQRCode(config) //发票开具
- // r, err := sdk.HttpPost("https://apigw.goldentec.com", routerAddress, postData)
- // if err != nil {
- // fmt.Println(err)
- // } else {
- // var resp QRAuth
- // // 将 byte 切片转换为结构体
- // err := json.Unmarshal(r, &resp)
- // fmt.Println(resp)
- // if err != nil {
- // fmt.Println("Error unmarshalling:", err)
- // } else {
- // if len(resp.Data.AuthId) == 0 { //还没实名认证
- //
- // } else {
- // status = 1
- // status_str := GetQRStatus(org_id, resp.Data.AuthId)
- // if status_str == "UNDEFINE" {
- // status = 0
- // } else if status_str == "UNHANDLED" {
- // status = 0
- // } else if status_str == "REAL_AUTH_SUCCESS" {
- // status = 1
- // } else if status_str == "REFRESH" {
- // status = 0
- // } else if status_str == "NEED_RELOGIN_BUREAU" {
- // status = 0
- //
- // }
- // }
- // }
- // }
- // return
- //}
-
- type RedResult struct {
- Code int `json:"code"`
- Data []struct {
- State int `json:"state"`
- Message string `json:"message"`
- OrderSn string `json:"order_sn"`
- InvoiceId string `json:"invoice_id"`
- } `json:"data"`
- Message string `json:"message"`
- }
- type QueryFaPiaoResultResponse struct {
- Code int `json:"code"`
- Data struct {
- OrderSn string `json:"order_sn"`
- Status int `json:"status"`
- Message string `json:"message"`
- TicketDate string `json:"ticket_date"`
- TicketSn string `json:"ticket_sn"`
- TicketCode string `json:"ticket_code"`
- CheckCode string `json:"check_code"`
- AmountWithTax string `json:"amount_with_tax"`
- AmountWithoutTax string `json:"amount_without_tax"`
- TaxAmount string `json:"tax_amount"`
- IsRedWashed int `json:"is_red_washed"`
- PdfUrl string `json:"pdf_url"`
- OfdUrl string `json:"ofd_url"`
- XmlUrl string `json:"xml_url"`
- } `json:"data"`
- Message string `json:"message"`
- }
- type OpenFaPiaoResultResponse struct {
- Code int `json:"code"`
- Message string `json:"message"`
- Data struct {
- State int `json:"state"`
- OrderSn string `json:"order_sn"`
- InvoiceId string `json:"invoice_id"`
- } `json:"data"`
- }
- type SurplusStockResponse struct {
- Code int `json:"code"`
- Message string `json:"message"`
- Data struct {
- LeftQuantity int `json:"left_quantity"`
- } `json:"data"`
- }
-
- func GetFaPiaoStock(org_id int64) (left_quantity int) {
- sdk := invoice.NewSdk(common.HMAC_SHA256, "8ca4ee7b152c0abceff9", "17402aff152dbeedf7a7b30be553f4c4", "", "test")
- var config models.FapiaoConfig
- config, _ = service.FindFaPiaoConfigInfo(org_id)
- routerAddress, postData := fapiao.QueryStock(config)
- r, err := sdk.HttpPost("https://apigw-test.goldentec.com", routerAddress, postData)
- if err != nil {
- fmt.Println(err)
- } else {
- var resp SurplusStockResponse
- // 将 byte 切片转换为结构体
- err := json.Unmarshal(r, &resp)
- if err != nil {
- fmt.Println("Error unmarshalling:", err)
- } else {
- if resp.Code == 0 {
- left_quantity = resp.Data.LeftQuantity
- }
- }
- }
- return
- }
-
-
-
- //func GetQRStatus(org_id int64, auth_id string) (status string) {
- // sdk := invoice.NewSdk(common.HMAC_SHA256, "5058f0defd12047ee2a7", "51440fbee667ea9a53aaa68c9c408367", "", "test")
- // fmt.Println(sdk)
- // var config models.FapiaoConfig
- // config, _ = service.FindFaPiaoConfigInfo(org_id)
- // fmt.Println(config)
- // routerAddress, postData := fapiao.GetQRStatus(auth_id, config) //发票开具
- // fmt.Println(routerAddress)
- // fmt.Println(postData)
- // r, err := sdk.HttpPost("https://apigw.goldentec.com", routerAddress, postData)
- // if err != nil {
- // status = "FAILD"
- // fmt.Println(err)
- // } else {
- // fmt.Println(r)
- //
- // var resp Response
- //
- // // 将 byte 切片转换为结构体
- // err := json.Unmarshal(r, &resp)
- // fmt.Println(string(r))
- // if err != nil {
- // status = "FAILD"
- // fmt.Println("Error unmarshalling:", err)
- // } else {
- // status = resp.Data.Status
- // fmt.Printf("Parsed struct: %+v\n", resp)
- // }
- // }
- // return status
- // //return
- //}
-
- // 计算商品价格、税额等函数
- func CalculatePriceDetails(totalCost float64, itemCount int, taxRate float64) (string, string, string, string) {
- // 商品不含税总金额,保留两位小数
- amountWithoutTax := roundTo(totalCost/(1+taxRate), 2)
-
- // 商品不含税单价,保留八位小数
- pricePerItem := roundTo(amountWithoutTax/float64(itemCount), 8)
-
- // 税额,保留两位小数
- taxAmount := roundTo(amountWithoutTax*taxRate, 2)
-
- // 含税总金额
- amountHasTax := amountWithoutTax + taxAmount
-
- return fmt.Sprintf("%f", amountWithoutTax), fmt.Sprintf("%f", pricePerItem), fmt.Sprintf("%f", taxAmount), fmt.Sprintf("%f", amountHasTax)
- }
-
- // 保留指定小数位数的函数
- func roundTo(value float64, places int) float64 {
- scale := math.Pow(10, float64(places))
- return math.Round(value*scale) / scale
- }
-
- type QRAuth struct {
- Code int `json:"code"`
- Message string `json:"message"`
- Data struct {
- AuthId string `json:"auth_id"`
- QrCode string `json:"qr_code"`
- } `json:"data"`
- }
-
- type FapiaoStock struct {
- Code int `json:"code"`
- Data struct {
- LeftQuantity int `json:"left_quantity"`
- } `json:"data"`
- Message string `json:"message"`
- }
|