|
|
@@ -163,8 +163,8 @@ public class dbstockbill extends Controller {
|
|
|
ArrayList<Long> ids = rows.toArrayList("st_dbstockbillid", new ArrayList<>());
|
|
|
HashMap<Long, Integer> reportMap = Report.getViewCount(this,"st_dbstockbill",ids);
|
|
|
for(Row row :rows){
|
|
|
- if(reportMap.containsKey(row.getString("st_dbstockbillid"))){
|
|
|
- row.put("printcount",reportMap.get(row.getString("st_dbstockbillid")));
|
|
|
+ if(reportMap.containsKey(row.getLong("st_dbstockbillid"))){
|
|
|
+ row.put("printcount",reportMap.get(row.getLong("st_dbstockbillid")));
|
|
|
}
|
|
|
}
|
|
|
|