View | Details | Raw Unified | Return to bug 34708
Collapse All | Expand All

(-)a/acqui/neworderempty.pl (-1 / +1 lines)
Lines 349-355 foreach my $r (@{$budgets}) { Link Here
349
$template->param( sort1 => $data->{'sort1'} );
349
$template->param( sort1 => $data->{'sort1'} );
350
$template->param( sort2 => $data->{'sort2'} );
350
$template->param( sort2 => $data->{'sort2'} );
351
351
352
if ($basketobj->effective_create_items eq 'ordering' && !$ordernumber) {
352
if ($basketobj->effective_create_items eq 'ordering') {
353
    # Check if ACQ framework exists
353
    # Check if ACQ framework exists
354
    my $marc = GetMarcStructure(1, 'ACQ', { unsafe => 1 } );
354
    my $marc = GetMarcStructure(1, 'ACQ', { unsafe => 1 } );
355
    unless($marc) {
355
    unless($marc) {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/neworderempty.tt (-3 / +2 lines)
Lines 490-496 Link Here
490
    [% UNLESS subscriptionid || basket.is_standing %][% # it is a suggestion, we have not items %]
490
    [% UNLESS subscriptionid || basket.is_standing %][% # it is a suggestion, we have not items %]
491
      [% IF (AcqCreateItemOrdering) %]
491
      [% IF (AcqCreateItemOrdering) %]
492
492
493
      <div id="items_list" class="page-section" style="display:none">
493
      <div id="items_list" class="page-section">
494
          <p><strong>Items list</strong></p>
494
          <p><strong>Items list</strong></p>
495
          <div style="width:100%;overflow:auto;">
495
          <div style="width:100%;overflow:auto;">
496
              <table>
496
              <table>
Lines 544-550 Link Here
544
                    [% IF basket.is_standing %]
544
                    [% IF basket.is_standing %]
545
                        <input type="text" readonly="readonly" size="20" id="quantity" name="quantity" value="1" />
545
                        <input type="text" readonly="readonly" size="20" id="quantity" name="quantity" value="1" />
546
                    [% ELSE %]
546
                    [% ELSE %]
547
                        <input type="text" readonly="readonly" size="20" id="quantity" name="quantity" value="0" />
547
                        <input type="text" readonly="readonly" size="20" id="quantity" name="quantity" value="[% quantityrec | html %]" />
548
                    [% END %]
548
                    [% END %]
549
                [% ELSE %]
549
                [% ELSE %]
550
                    [% IF basket.is_standing %]
550
                    [% IF basket.is_standing %]
551
- 

Return to bug 34708