Subversion Repositories SmartDukaan

Rev

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

Rev 26146 Rev 26148
Line 24... Line 24...
24
			return;
24
			return;
25
		}
25
		}
26
		param = paramsMap[inputName];
26
		param = paramsMap[inputName];
27
		if($(inputElement).val()=="") {
27
		if($(inputElement).val()=="") {
28
			bootbox.alert(`${param.displayName} is required`);
28
			bootbox.alert(`${param.displayName} is required`);
29
			return;
29
			return false;
30
		}
30
		}
31
		if(param.type=='DATE') {
31
		if(param.type=='DATE') {
32
			reportParams[`MANUAL_${inputName}`] = startDate;
32
			reportParams[`MANUAL_${inputName}`] = startDate;
33
		} else if(param.type=='DATE_RANGE') {
33
		} else if(param.type=='DATE_RANGE') {
34
			reportParams[`MANUAL_${inputName}_FROMDATE`] = startDate;
34
			reportParams[`MANUAL_${inputName}_FROMDATE`] = startDate;