|
|
@@ -45,11 +45,12 @@ func (this *OilContractReviewController) GetEntityList() {
|
|
|
}
|
|
|
Id := this.GetString("Id")
|
|
|
ContractClass := this.GetString("ContractClass")
|
|
|
- WorkflowId := this.GetString("WorkflowId")
|
|
|
- BusinessKey := this.GetString("BusinessKey")
|
|
|
- ProcessKey := this.GetString("ProcessKey")
|
|
|
- BackRemark := this.GetString("BackRemark")
|
|
|
- CreateOn := this.GetString("CreateOn")
|
|
|
+ ContractId := this.GetString("ContractId")
|
|
|
+ WorkflowId := this.GetString("WorkflowId")
|
|
|
+ BusinessKey := this.GetString("BusinessKey")
|
|
|
+ ProcessKey := this.GetString("ProcessKey")
|
|
|
+ BackRemark := this.GetString("BackRemark")
|
|
|
+ CreateOn := this.GetString("CreateOn")
|
|
|
|
|
|
if Id != "" {
|
|
|
where = where + " and r.Id like '%" + Id + "%'"
|
|
|
@@ -59,6 +60,9 @@ func (this *OilContractReviewController) GetEntityList() {
|
|
|
where = where + " and c.ContractClass = '" + ContractClass + "'"
|
|
|
}
|
|
|
|
|
|
+ if ContractId != "" {
|
|
|
+ where = where + " and r.ContractId = '" + ContractId + "'"
|
|
|
+ }
|
|
|
|
|
|
if WorkflowId != "" {
|
|
|
where = where + " and r.WorkflowId like '%" + WorkflowId + "%'"
|