Behebt einfach nur Conflicts.
Conflicts:
SL/TransNumber.pm
call_sub($display_form);
# saving the history
if(!exists $form->{addition}) {
- $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
+ $form->{snumbers} = "${inv}number" . "_" . $form->{"${inv}number"};
$form->{addition} = "PRINTED";
$form->save_history;
}
# saving the history
if(!exists $form->{addition}) {
- $form->{snumbers} = qq|ordnumber_| . $form->{ordnumber};
+ $form->{snumbers} = "${inv}number" . "_" . $form->{"${inv}number"};
if($form->{media} =~ /printer/) {
$form->{addition} = "PRINTED";
}
$::lxdebug->enter_sub;
$::auth->assert('cash');
+ # reset difference as it doesn't always arrive here empty
+ $::form->{difference} = 0;
+
RC->payment_transactions(\%::myconfig, $::form);
my $i;
<tr>
<th align=right nowrap>[% 'Difference' | $T8 %]</th>
<td width=10%></td>
- <td align=right><input name=null size=11 value="[% LxERP.format_amount(difference, 2, 0) %]"></td>
+ <td align=right><input name=null size=11 value="[% LxERP.format_amount(difference, 2, 0) %]" readonly></td>
<input type=hidden name=difference value="[% LxERP.format_amount(difference, 2, 0) %]">
</tr>
</table>