Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudFofou committed Jan 22, 2025
1 parent 676fef3 commit ec83902
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1855,7 +1855,7 @@ public Object getValueAt(int r, int c) {
if (lot.getDueDate().isBefore(TimeTools.getDateToday0())) {
statuses.add(EXPIRED);
}
if (lot.getMainStoreQuantity() == 0) {
if (lot.getWardsTotalQuantity() == 0) {
statuses.add(EMPTY);
}
return String.join(",", statuses);
Expand Down

0 comments on commit ec83902

Please sign in to comment.