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 182-188 Link Here
182
                               [% END %]
182
                               [% END %]
183
                          </select>
183
                          </select>
184
                      </td>
184
                      </td>
185
                      <td><input type="checkbox" name="encumber_open" id="encumber_new" value="1" /></td>
185
                      <td><input type="checkbox" name="encumber_open" id="encumber_new" value="new" /></td>
186
                      <td><input type="hidden" name="delete" value=""></td>
186
                      <td><input type="hidden" name="delete" value=""></td>
187
                  </tr>
187
                  </tr>
188
                </table>
188
                </table>
189
- 

Return to bug 19166