Explorar el Código

fix in general ledger report: account filter options to be filtered by company

version-14
Anand Doshi hace 13 años
padre
commit
e7b8eaca1c
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. +3
    -3
      js/wn/views/grid_report.js

+ 3
- 3
js/wn/views/grid_report.js Ver fichero

@@ -144,7 +144,7 @@ wn.views.GridReport = Class.extend({
});
this.filter_inputs.range && this.filter_inputs.range.change(function() {
me.set_route();
me.set_route();
});
},
init_filter_values: function() {
@@ -186,7 +186,7 @@ wn.views.GridReport = Class.extend({
}

if(input) {
input && (input.get(0).opts = v);
input && (input.get(0).opts = v);
if(v.cssClass) {
input.addClass(v.cssClass);
}
@@ -270,7 +270,7 @@ wn.views.GridReport = Class.extend({
this.wrapper.find(".processing").toggle(true);
this.wrapper.find(".processing").delay(2000).fadeOut(300);
this.render();
this.render_plot();
this.render_plot && this.render_plot();
},
setup_dataview_columns: function() {
this.dataview_columns = $.map(this.columns, function(col) {


Cargando…
Cancelar
Guardar