[open-ils-commits] r12574 - trunk/Open-ILS/web/js/ui/default/acq/common (erickson)
svn at svn.open-ils.org
svn at svn.open-ils.org
Wed Mar 18 10:55:18 EDT 2009
Author: erickson
Date: 2009-03-18 10:55:16 -0400 (Wed, 18 Mar 2009)
New Revision: 12574
Modified:
trunk/Open-ILS/web/js/ui/default/acq/common/li_table.js
Log:
no need to flesh fund, since we're grabbing those anyway. set ischanged when item changes
Modified: trunk/Open-ILS/web/js/ui/default/acq/common/li_table.js
===================================================================
--- trunk/Open-ILS/web/js/ui/default/acq/common/li_table.js 2009-03-18 14:44:14 UTC (rev 12573)
+++ trunk/Open-ILS/web/js/ui/default/acq/common/li_table.js 2009-03-18 14:55:16 UTC (rev 12574)
@@ -134,7 +134,6 @@
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 @@
});
widget.build();
dojo.connect(widget.widget, 'onChange',
- function() { copy[field](widget.getFormattedValue()) });
+ function() {
+ copy[field](widget.getFormattedValue())
+ copy.ischanged(true);
+ }
+ );
}
);
More information about the open-ils-commits
mailing list