Fixes in item wise purchase details report

This commit is contained in:
Nabin Hait 2012-09-10 12:23:13 +05:30
parent 07325a0b37
commit 55cb365e4f
2 changed files with 2 additions and 2 deletions

View file

@ -86,7 +86,7 @@ set_field_tip = function(n,txt) {
if(cur_frm.fields_dict[n])
cur_frm.fields_dict[n].comment_area.innerHTML = replace_newlines(txt);
else
errprint('[set_field_tip] Unable to set field tip: ' + n);
console.log('[set_field_tip] Unable to set field tip: ' + n);
}
}

View file

@ -343,7 +343,7 @@ _r.ReportBuilder.prototype.load_criteria = function(criteria_name) {
try {
report.customize_filters(this);
} catch(err) {
errprint('Error in "customize_filters":\n' + err);
console.log('Error in "customize_filters":\n' + err);
}
}