|
|
@@ -47,7 +47,7 @@ func (this *LimsCheckEquipmentListController) GetEntityList() {
|
|
|
Spec := this.GetString("Spec")
|
|
|
SpecId := this.GetString("SpecId")
|
|
|
Manufacturer := this.GetString("Manufacturer")
|
|
|
- Status := this.GetString("Status")
|
|
|
+ status := this.GetString("Status")
|
|
|
|
|
|
if Id != "" {
|
|
|
where = where + " and Id like '%" + Id + "%'"
|
|
|
@@ -93,8 +93,8 @@ func (this *LimsCheckEquipmentListController) GetEntityList() {
|
|
|
where = where + " and Manufacturer like '%" + Manufacturer + "%'"
|
|
|
}
|
|
|
|
|
|
- if Status != "" {
|
|
|
- where = where + " and Status like '%" + Status + "%'"
|
|
|
+ if status != "" {
|
|
|
+ where = where + " and Status like '%" + status + "%'"
|
|
|
}
|
|
|
|
|
|
/** if CreateOn != "" {
|