|
|
@@ -387,6 +387,11 @@ public class ObjectToDocumentUtils {
|
|
|
ClassAndTableNameUtils.combineField(tableName, SaleQuotationSimpleInfo.OVERDUE_FIELD),
|
|
|
String.valueOf(saleQuotation.getOverdue()), Store.YES));
|
|
|
}
|
|
|
+ if (null != saleQuotation.getAgreed()) {
|
|
|
+ document.add(new StringField(
|
|
|
+ ClassAndTableNameUtils.combineField(tableName, SaleQuotationSimpleInfo.AGREED_FIELD),
|
|
|
+ String.valueOf(saleQuotation.getAgreed()), Store.YES));
|
|
|
+ }
|
|
|
document.add(
|
|
|
new StringField(ClassAndTableNameUtils.combineField(tableName, SaleQuotationSimpleInfo.STATUS_FIELD),
|
|
|
String.valueOf(saleQuotation.getStatus()), Store.YES));
|