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

(-)a/acqui/invoice.pl (-1 / +1 lines)
Lines 132-138 elsif ( $op && $op eq 'mod_adj' ) { Link Here
132
                reason => $reason[$i],
132
                reason => $reason[$i],
133
                note => $note[$i],
133
                note => $note[$i],
134
                budget_id => $budget_id[$i] || undef,
134
                budget_id => $budget_id[$i] || undef,
135
                encumber_open => $encumber_open[$i],
135
                encumber_open => defined $e_open{ $adjustment_id[$i] } ? 1 : 0,
136
            });
136
            });
137
            $new_adj->store();
137
            $new_adj->store();
138
        }
138
        }
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/invoice.tt (-2 / +1 lines)
Lines 183-189 Link Here
183
                               [% END %]
183
                               [% END %]
184
                          </select>
184
                          </select>
185
                      </td>
185
                      </td>
186
                      <td><input type="checkbox" name="encumber_open" id="encumber_new" value="1" /></td>
186
                      <td><input type="checkbox" name="encumber_open" id="encumber_new" value="new" /></td>
187
                      <td><input type="hidden" name="delete" value=""></td>
187
                      <td><input type="hidden" name="delete" value=""></td>
188
                  </tr>
188
                  </tr>
189
                </table>
189
                </table>
190
- 

Return to bug 19166