|
|
@@ -180,6 +180,7 @@ public class PurchaseApCheckSimpleInfo {
|
|
|
fields.add(VEND_FIELD);
|
|
|
fields.add(ENTERPRISE_FIELD);
|
|
|
fields.add(ITEMS_FIELD);
|
|
|
+ fields.add(CHECKSTATUS_FIELD);
|
|
|
return fields;
|
|
|
}
|
|
|
|
|
|
@@ -194,7 +195,7 @@ public class PurchaseApCheckSimpleInfo {
|
|
|
PurchaseApCheckSimpleInfo other = (PurchaseApCheckSimpleInfo) otherObject;
|
|
|
// 不对从表的数据进行比较
|
|
|
return Objects.equals(id, other.getId()) && Objects.equals(code, other.getCode())
|
|
|
- && Objects.equals(date, other.getDate());
|
|
|
+ && Objects.equals(date, other.getDate()) && Objects.equals(checkstatus, other.getCheckstatus());
|
|
|
}
|
|
|
|
|
|
}
|