|
@ -1303,7 +1303,7 @@ public class MedicineOrderService extends BaseJpaService<Mediicineorder, Mediici
|
|
|
"FROM\n" +
|
|
|
"\tt_medicine_shipment_log AS t\n" +
|
|
|
"WHERE \n" +
|
|
|
"\tt.order_id = '" + mediicineorder.getId() + "'";
|
|
|
"\tt.order_id = '" + order.getId() + "'";
|
|
|
List<Map<String, Object>> tempList = hibenateUtils.createSQLQuery(tempSql);
|
|
|
map.put("drugList", tempList);
|
|
|
orderList.add(map);
|
|
@ -1389,7 +1389,7 @@ public class MedicineOrderService extends BaseJpaService<Mediicineorder, Mediici
|
|
|
"FROM\n" +
|
|
|
"\tt_medicine_shipment_log AS t\n" +
|
|
|
"WHERE \n" +
|
|
|
"\tt.order_id = '" + mediicineorder.getId() + "'";
|
|
|
"\tt.order_id = '" + order.getId() + "'";
|
|
|
List<Map<String, Object>> tempList = hibenateUtils.createSQLQuery(tempSql);
|
|
|
map.put("drugList", tempList);
|
|
|
orderList.add(map);
|