Commit 800e0b6b authored by tangwei's avatar tangwei

修改bug

parent 6bf1f04f
......@@ -258,7 +258,7 @@ public class IdxBizFanWeightController extends BaseController {
for (IdxBizFanWeight listdatum : listdata) {
for (IdxBizFanWeight idxBizPvWeight : list) {
if (idxBizPvWeight.getSequenceNbr().equals(listdatum.getSequenceNbr())) {
listdatum.setValue(idxBizPvWeight.getValue());
listdatum.setValue(Float.valueOf(value.get("data").toString()));
break;
} else {
listdatum.setValue(formattedNum);
......
......@@ -274,7 +274,7 @@ public class IdxBizPvWeightController extends BaseController {
for (IdxBizPvWeight listdatum : listdata) {
for (IdxBizPvWeight idxBizPvWeight : list) {
if (idxBizPvWeight.getSequenceNbr().equals(listdatum.getSequenceNbr())) {
listdatum.setValue(idxBizPvWeight.getValue());
listdatum.setValue(Float.valueOf(value.get("data").toString()));
break;
} else {
listdatum.setValue(formattedNum);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment