Commit 0657b028 authored by 竹天卫's avatar 竹天卫

bug修复

parent daf2fceb
......@@ -663,9 +663,9 @@ public class CheckCountUtil {
*/
public static String countVad1(Map<String, String> resultMap, Map<String, String> countMap) {
BigDecimal count = null;
if( StringUtils.isNotBlank(countMap.get("样重V1")) &&
StringUtils.isNotBlank(countMap.get("皿重V1")) &&
StringUtils.isNotBlank(countMap.get("烧重V1")) &&
if( StringUtils.isNotBlank(resultMap.get("样重V1")) &&
StringUtils.isNotBlank(resultMap.get("皿重V1")) &&
StringUtils.isNotBlank(resultMap.get("烧重V1")) &&
StringUtils.isNotBlank(countMap.get("报出_Mad"))
){
BigDecimal YZ_V1 = getBigDecimal(resultMap.get("样重V1").trim());
......@@ -689,9 +689,9 @@ public class CheckCountUtil {
*/
public static String countVad2(Map<String, String> resultMap, Map<String, String> countMap) {
BigDecimal count = null;
if( StringUtils.isNotBlank(countMap.get("样重V2")) &&
StringUtils.isNotBlank(countMap.get("皿重V2")) &&
StringUtils.isNotBlank(countMap.get("烧重V2")) &&
if( StringUtils.isNotBlank(resultMap.get("样重V2")) &&
StringUtils.isNotBlank(resultMap.get("皿重V2")) &&
StringUtils.isNotBlank(resultMap.get("烧重V2")) &&
StringUtils.isNotBlank(countMap.get("报出_Mad"))
){
BigDecimal YZ_V2 = getBigDecimal(resultMap.get("样重V2"));
......
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