修复com.kingdee.util.StringUtils找不到问题-龚宇杰
This commit is contained in:
parent
eaf0f35379
commit
27ddcd823f
|
@ -1,6 +1,5 @@
|
|||
package zf47.jdgz1.fi.em.plugin.form;
|
||||
|
||||
import com.kingdee.util.StringUtils;
|
||||
import kd.bos.bill.AbstractBillPlugIn;
|
||||
import kd.bos.cache.ThreadCache;
|
||||
import kd.bos.dataentity.entity.DynamicObject;
|
||||
|
@ -119,7 +118,7 @@ public class TripPersonCohabitPlugin extends AbstractBillPlugIn implements Plugi
|
|||
|
||||
String genderI = travelerI.getString("gender");
|
||||
String genderJ = travelerJ.getString("gender");
|
||||
if (!genderI.equals("0") && StringUtils.equals(genderI, genderJ)) {
|
||||
if (!genderI.equals("0") && genderI.equals(genderJ)) {
|
||||
cohabitPersons.put(travelerI.getLong("id"), travelerJ.getLong("id"));
|
||||
cohabitPersons.put(travelerJ.getLong("id"), travelerI.getLong("id"));
|
||||
|
||||
|
|
Loading…
Reference in New Issue