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

(-)a/C4/Acquisition.pm (-3 / +6 lines)
Lines 1456-1463 sub ModReceiveOrder { Link Here
1456
        );
1456
        );
1457
1457
1458
        if ( not $order->{subscriptionid} && defined $order->{order_internalnote} ) {
1458
        if ( not $order->{subscriptionid} && defined $order->{order_internalnote} ) {
1459
            $dbh->do(q|UPDATE aqorders
1459
            $dbh->do(
1460
                SET order_internalnote = ?|, {}, $order->{order_internalnote});
1460
                q|UPDATE aqorders
1461
                SET order_internalnote = ?
1462
                WHERE ordernumber = ?|, {},
1463
                $order->{order_internalnote}, $order->{ordernumber}
1464
            );
1461
        }
1465
        }
1462
1466
1463
        # Recalculate tax_value
1467
        # Recalculate tax_value
1464
- 

Return to bug 22565