Browse Source

长处方统计

trick9191 7 years ago
parent
commit
f0aa6e20ed

+ 2 - 0
patient-co/patient-co-wlyy/src/main/java/com/yihu/wlyy/service/app/prescription/PrescriptionInfoService.java

@ -1074,6 +1074,8 @@ public class PrescriptionInfoService extends BaseService {
                " p.sex, " +
                " p.photo, " +
                " pr.`status`, " +
                " pr.patient," +
                " pr.admin_team_id," +
                " pr.`code`, " +
                " LEFT(pr.create_time,19) AS createTime, " +
                " pr.doctor, " +

+ 1 - 1
patient-co/patient-co-wlyy/src/main/java/com/yihu/wlyy/service/app/statistics/StatisticsService.java

@ -5300,7 +5300,7 @@ public class StatisticsService extends BaseService {
            }
        }
        rs = jdbcTemplate.queryForList(sql);
        if("1".equals(level)){
        if("1".equals(lowlevel)){
            statisticsAllService.translateTeamLeaderName2(rs);
        }
        return rs;

+ 1 - 1
patient-co/patient-co-wlyy/src/main/java/com/yihu/wlyy/web/doctor/prescription/PrescriptionInfoController.java

@ -25,7 +25,7 @@ import org.springframework.web.bind.annotation.*;
import java.util.List;
/**
 * Created by Trick on 2017/7/25.
 * Created by Trick on 2017/7/25
 */
@RestController
@RequestMapping(value = "/doctor/prescriptionInfo")