Commit b5f36190 authored by hongguangwu's avatar hongguangwu

Common.isNotNull

parent 1a735e05
......@@ -144,9 +144,9 @@ public class SalaryAccountUtil implements Serializable {
for (Map.Entry<String, TSalaryConfigStandard> entry : salaryConfigMap.entrySet()) {
cellValueObj = getFieldValueByName(entry.getKey(), temp);
scs = entry.getValue();
if (cellValueObj != null && scs != null) {
if (Common.isNotNull(cellValueObj) && scs != null) {
cellValueStr = getStringValByObject(cellValueObj);
if (!StringUtils.isNotBlank(cellValueStr)) {
if (Common.isEmpty(cellValueStr)) {
errorFlag = false;
error = "第" + (i + 2) + "行:" + entry.getKey() + "列_不识别对象类型";
errorList.add(new ErrorMessage((i + 2), error));
......
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