Subversion Repositories SmartDukaan

Rev

Rev 31767 | Rev 31821 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 31767 Rev 31773
Line 279... Line 279...
279
	}
279
	}
280
 
280
 
281
	public boolean isAnyColor() {
281
	public boolean isAnyColor() {
282
		if(this.color != null) {
282
		if(this.color != null) {
283
			String lowerCaseColor = this.color.toLowerCase();
283
			String lowerCaseColor = this.color.toLowerCase();
284
			return lowerCaseColor.equals("any color") || lowerCaseColor.equals("f_any color");
284
			return lowerCaseColor.equals("any color") || lowerCaseColor.equals("f_any color") || lowerCaseColor.equals("any colour") || lowerCaseColor.equals("f_any colour");
285
		}
285
		}
286
		return false;
286
		return false;
287
	}
287
	}
288
 
288
 
289
}
289
}
290
290