|
@ -43,7 +43,7 @@ public class PrescriptionController extends BaseController{
|
|
|
|
|
|
@RequestMapping(value = "prePayCompletion",method = RequestMethod.POST)
|
|
@RequestMapping(value = "prePayCompletion",method = RequestMethod.POST)
|
|
@ApiOperation("接收预结算完成消息")
|
|
@ApiOperation("接收预结算完成消息")
|
|
public Result prePayCompletion(@ApiParam(name="data",value="json串",defaultValue = "{}")
|
|
|
|
|
|
public Result prePayCompletion(@ApiParam(name="data",value="json串",defaultValue = "{\"CODE\":1,\"RECIPE_NO\":\"0\",\"ORDER_NO\":\"DB0537136\"}")
|
|
@RequestParam(value = "data",required = true) String data){
|
|
@RequestParam(value = "data",required = true) String data){
|
|
try {
|
|
try {
|
|
|
|
|
|
@ -103,7 +103,7 @@ public class PrescriptionController extends BaseController{
|
|
@ApiOperation("字典获取接口")
|
|
@ApiOperation("字典获取接口")
|
|
public Result getDictForI(@ApiParam(name="dictName",value="字典名称",defaultValue = "IV_PHYSIC_DICT")
|
|
public Result getDictForI(@ApiParam(name="dictName",value="字典名称",defaultValue = "IV_PHYSIC_DICT")
|
|
@RequestParam(value = "dictName",required = true) String dictName,
|
|
@RequestParam(value = "dictName",required = true) String dictName,
|
|
@ApiParam(name="hospital",value="医院code",defaultValue = "3501111")
|
|
|
|
|
|
@ApiParam(name="hospital",value="医院code",defaultValue = "3502050200")
|
|
@RequestParam(value = "hospital",required = true) String hospital)
|
|
@RequestParam(value = "hospital",required = true) String hospital)
|
|
{
|
|
{
|
|
try {
|
|
try {
|
|
@ -142,11 +142,11 @@ public class PrescriptionController extends BaseController{
|
|
public Result getLastRecipe(@ApiParam(name="cardNo",value="病人卡号",defaultValue = "")
|
|
public Result getLastRecipe(@ApiParam(name="cardNo",value="病人卡号",defaultValue = "")
|
|
@RequestParam(value = "cardNo",required = true) String cardNo,
|
|
@RequestParam(value = "cardNo",required = true) String cardNo,
|
|
@ApiParam(name="recipeNo",value="第一次获取上一方时传入0,第二次获取上一方时传入第一次返回的医嘱号,以此类推",defaultValue = "")
|
|
@ApiParam(name="recipeNo",value="第一次获取上一方时传入0,第二次获取上一方时传入第一次返回的医嘱号,以此类推",defaultValue = "")
|
|
@RequestParam(value = "recipeNo",required = true) String recipeNo,
|
|
|
|
|
|
@RequestParam(value = "recipeNo",required = false) String recipeNo,
|
|
@ApiParam(name="applyTimeFrom",value="开始时间",defaultValue = "")
|
|
@ApiParam(name="applyTimeFrom",value="开始时间",defaultValue = "")
|
|
@RequestParam(value = "applyTimeFrom",required = true) String applyTimeFrom,
|
|
|
|
|
|
@RequestParam(value = "applyTimeFrom",required = false) String applyTimeFrom,
|
|
@ApiParam(name="applyTimeEnd",value="结束时间",defaultValue = "")
|
|
@ApiParam(name="applyTimeEnd",value="结束时间",defaultValue = "")
|
|
@RequestParam(value = "applyTimeEnd",required = true) String applyTimeEnd)
|
|
|
|
|
|
@RequestParam(value = "applyTimeEnd",required = false) String applyTimeEnd)
|
|
{
|
|
{
|
|
try {
|
|
try {
|
|
|
|
|
|
@ -174,7 +174,7 @@ public class PrescriptionController extends BaseController{
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@RequestMapping(value = "getDispUnSettleFeeList",method = RequestMethod.POST)
|
|
|
|
|
|
@RequestMapping(value = "getDispUnSettleFeeInfoList",method = RequestMethod.POST)
|
|
@ApiOperation("查询处方结算结果列表")
|
|
@ApiOperation("查询处方结算结果列表")
|
|
public Result getDispUnSettleFeeList(@ApiParam(name="cardNo",value="病人卡号",defaultValue = "")
|
|
public Result getDispUnSettleFeeList(@ApiParam(name="cardNo",value="病人卡号",defaultValue = "")
|
|
@RequestParam(value = "cardNo",required = true) String cardNo,
|
|
@RequestParam(value = "cardNo",required = true) String cardNo,
|
|
@ -182,7 +182,7 @@ public class PrescriptionController extends BaseController{
|
|
@RequestParam(value = "visitNo",required = true) String visitNo)
|
|
@RequestParam(value = "visitNo",required = true) String visitNo)
|
|
{
|
|
{
|
|
try {
|
|
try {
|
|
String re = prescriptionService.getDispUnSettleFeeList(cardNo,null,null);
|
|
|
|
|
|
String re = prescriptionService.getDispUnSettleFeeInfoList(cardNo,visitNo);
|
|
|
|
|
|
return Result.success("查询处方结算结果列表!",re);
|
|
return Result.success("查询处方结算结果列表!",re);
|
|
} catch (Exception ex) {
|
|
} catch (Exception ex) {
|