From: erickson Date: Wed, 18 Mar 2009 14:55:16 +0000 (+0000) Subject: no need to flesh fund, since we're grabbing those anyway. set ischanged when item... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=19e1329265e425808226f5953f6f6806d2c38811;p=evergreen%2Ftadl.git no need to flesh fund, since we're grabbing those anyway. set ischanged when item changes git-svn-id: svn://svn.open-ils.org/ILS/trunk@12574 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/web/js/ui/default/acq/common/li_table.js b/Open-ILS/web/js/ui/default/acq/common/li_table.js index e197e77d19..136ecf96d5 100644 --- a/Open-ILS/web/js/ui/default/acq/common/li_table.js +++ b/Open-ILS/web/js/ui/default/acq/common/li_table.js @@ -134,7 +134,6 @@ function AcqLiTable() { params: [self.authtoken, liId, { flesh_attrs: true, flesh_li_details: true, - flesh_fund: true, flesh_fund_debit: true }], oncomplete: function(r) { @@ -239,7 +238,11 @@ function AcqLiTable() { }); widget.build(); dojo.connect(widget.widget, 'onChange', - function() { copy[field](widget.getFormattedValue()) }); + function() { + copy[field](widget.getFormattedValue()) + copy.ischanged(true); + } + ); } );