|
|
@@ -159,6 +159,11 @@ public class submitedit extends Controller {
|
|
|
where.append("or t3.fagentname like'%").append(whereObject.getString("condition")).append("%' ");
|
|
|
where.append(")");
|
|
|
}
|
|
|
+ if (whereObject.containsKey("tenterprise_userid") && !"".equals(whereObject.getString("tenterprise_userid"))) {
|
|
|
+ where.append(" and(");
|
|
|
+ where.append("t1.tenterprise_userid ='").append(whereObject.getString("tenterprise_userid")).append("' ");
|
|
|
+ where.append(")");
|
|
|
+ }
|
|
|
}
|
|
|
long tsubmiteditmodelid = content.getLongValue("tsubmiteditmodelid");//提报模板ID
|
|
|
SQLFactory costhead = new SQLFactory(this, "提报明细列表查询", pageSize, pageNumber, sort);
|