|
|
@@ -1720,7 +1720,7 @@ func (this *OilTechnologyServiceController) GetCompareTmpSupplier() {
|
|
|
SupplierTypeCode := this.GetString("SupplierTypeCode")
|
|
|
Code := this.GetString("Code")
|
|
|
Name := this.GetString("Name")
|
|
|
- Remark := this.GetString("Remark")
|
|
|
+ Conditions := this.GetString("Conditions")
|
|
|
IsDelete := this.GetString("IsDelete")
|
|
|
CreateOn := this.GetString("CreateOn")
|
|
|
CreateUserId := this.GetString("CreateUserId")
|
|
|
@@ -1753,8 +1753,12 @@ func (this *OilTechnologyServiceController) GetCompareTmpSupplier() {
|
|
|
where = where + " and Name like '%" + Name + "%'"
|
|
|
}
|
|
|
|
|
|
- if Remark != "" {
|
|
|
- where = where + " and Remark like '%" + Remark + "%'"
|
|
|
+ if Conditions == "2"{
|
|
|
+ where = where + " and MinClassId = '0'"
|
|
|
+ } else if Conditions == "3"{
|
|
|
+ where = where + " and Checked = '0'"
|
|
|
+ } else if Conditions == "4"{
|
|
|
+ where = where + " and Checked = '1"
|
|
|
}
|
|
|
|
|
|
if IsDelete != "" {
|