|
@ -40,6 +40,10 @@ public class PrescriptionLogController extends BaseController {
|
|
// (-3 支付过期 -2 患者自己取消 -1 审核不通过 , 0 待审核, 2调整中 10 审核通过/开方中 , 20开方完成/待支付, 21 支付失败 , 30 支付成功/待配药 ,
|
|
// (-3 支付过期 -2 患者自己取消 -1 审核不通过 , 0 待审核, 2调整中 10 审核通过/开方中 , 20开方完成/待支付, 21 支付失败 , 30 支付成功/待配药 ,
|
|
// 40配药成功/待配送 41配送失败 42配送中 43配送到服务站 100配送到患者手中/已完成)
|
|
// 40配药成功/待配送 41配送失败 42配送中 43配送到服务站 100配送到患者手中/已完成)
|
|
Integer[] types = new Integer[]{
|
|
Integer[] types = new Integer[]{
|
|
|
|
PrescriptionLog.PrescriptionLogStatus.revieweding.getValue(),
|
|
|
|
PrescriptionLog.PrescriptionLogStatus.changeing.getValue(),
|
|
|
|
PrescriptionLog.PrescriptionLogStatus.reviewed_success.getValue(),
|
|
|
|
PrescriptionLog.PrescriptionLogStatus.wait_pay.getValue(),
|
|
PrescriptionLog.PrescriptionLogStatus.pay_success.getValue(),
|
|
PrescriptionLog.PrescriptionLogStatus.pay_success.getValue(),
|
|
PrescriptionLog.PrescriptionLogStatus.wait_expressage.getValue(),
|
|
PrescriptionLog.PrescriptionLogStatus.wait_expressage.getValue(),
|
|
PrescriptionLog.PrescriptionLogStatus.expressageing.getValue(),
|
|
PrescriptionLog.PrescriptionLogStatus.expressageing.getValue(),
|
|
@ -64,6 +68,7 @@ public class PrescriptionLogController extends BaseController {
|
|
*/
|
|
*/
|
|
@RequestMapping(value = "/orderFollow", method = RequestMethod.GET)
|
|
@RequestMapping(value = "/orderFollow", method = RequestMethod.GET)
|
|
@ApiOperation(value = "订单状态跟踪")
|
|
@ApiOperation(value = "订单状态跟踪")
|
|
|
|
|
|
public String orderFollow(
|
|
public String orderFollow(
|
|
@RequestParam(required = true) @ApiParam(value = "处方code", name = "prescriptionCode") String prescriptionCode) {
|
|
@RequestParam(required = true) @ApiParam(value = "处方code", name = "prescriptionCode") String prescriptionCode) {
|
|
try {
|
|
try {
|