@@ -, +, @@ --- cataloguing/additem.pl | 2 -- cataloguing/value_builder/dateaccessioned.pl | 13 ++++++++++--- .../prog/en/modules/cataloguing/additem.tt | 7 ------- 3 files changed, 10 insertions(+), 12 deletions(-) --- a/cataloguing/additem.pl +++ a/cataloguing/additem.pl @@ -308,8 +308,6 @@ my ($template, $loggedinuser, $cookie) my $today_iso = C4::Dates->today('iso'); -$template->param(today_iso => $today_iso); - my $tagslib = &GetMarcStructure(1,$frameworkcode); my $record = GetMarcBiblio($biblionumber); my $oldrecord = TransformMarcToKoha($dbh,$record); --- a/cataloguing/value_builder/dateaccessioned.pl +++ a/cataloguing/value_builder/dateaccessioned.pl @@ -18,7 +18,7 @@ # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. use strict; -#use warnings; FIXME - Bug 2505 +use warnings; =head1 @@ -71,14 +71,21 @@ function Focus$function_name(subfield_managed, id, force) { // summary += i + ": " + document.f.tag[i].value + " " + document.f.subfield[i].value + ": " + document.f.field_value[i].value + "\\n"; //} //alert("Got focus, subfieldmanaged: " + subfield_managed + "\\n" + summary); - set_to_today(id); // defined in additem.pl HEAD + set_to_today(id); return 0; } function Clic$function_name(id) { - set_to_today(id, 1); // defined in additem.pl HEAD + set_to_today(id, 1); return 0; } + +function set_to_today(id, force) { + if (! id) { alert(_("Bad id ") + id + _(" sent to set_to_today()")); return 0; } + if (\$("#" + id).val() == '' || \$("#" + id).val() == '0000-00-00' || force) { + \$("#" + id).val("$date"); + } +} //]]> END_OF_JS --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt @@ -157,13 +157,6 @@ $(document).ready(function() { function () {$(this).attr("class","" );} ); }); - -function set_to_today(id, force) { - if (! id) { alert(_("Bad id ") + id + _(" sent to set_to_today()")); return 0; } - if ($("#" + id).val() == '' || $("#" + id).val() == '0000-00-00' || force) { - $("#" + id).val("[% today_iso %]"); - } -} //]]> --