Skip to content

Commit

Permalink
update src/main/java/org/isf/medicalstockward/rest/MedicalStockWardCo…
Browse files Browse the repository at this point in the history
…ntroller.java
  • Loading branch information
ArnaudFofou committed Nov 21, 2024
1 parent 723adc5 commit b790890
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public MedicalStockWardController(
* @throws OHServiceException When failed to get ward medicals
*/
@GetMapping(value = "/medicalstockward/{ward_code}")
public List<MedicalWardDTO> getMedicalsWard(@PathVariable("ward_code") char wardId) throws OHServiceException {
public List<MedicalWardDTO> getMedicalsWard(@PathVariable("ward_code") String wardId) throws OHServiceException {
// FIXME: provide provision for boolean ,false?
List<MedicalWard> medWards = movWardBrowserManager.getMedicalsWard(wardId, true);

Expand Down

0 comments on commit b790890

Please sign in to comment.