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

(-)a/acqui/invoice.pl (-3 / +2 lines)
Lines 84-91 elsif ( $op && $op eq 'mod' ) { Link Here
84
    ModInvoice(
84
    ModInvoice(
85
        invoiceid             => $invoiceid,
85
        invoiceid             => $invoiceid,
86
        invoicenumber         => $invoicenumber,
86
        invoicenumber         => $invoicenumber,
87
        shipmentdate          => output_pref( { str => scalar $input->param('shipmentdate'), dateformat => 'iso', dateonly => 1 } ),
87
        shipmentdate          => scalar output_pref( { str => scalar $input->param('shipmentdate'), dateformat => 'iso', dateonly => 1 } ),
88
        billingdate           => output_pref( { str => scalar $input->param('billingdate'),  dateformat => 'iso', dateonly => 1 } ),
88
        billingdate           => scalar output_pref( { str => scalar $input->param('billingdate'),  dateformat => 'iso', dateonly => 1 } ),
89
        shipmentcost          => $shipmentcost,
89
        shipmentcost          => $shipmentcost,
90
        shipmentcost_budgetid => $shipment_budget_id
90
        shipmentcost_budgetid => $shipment_budget_id
91
    );
91
    );
92
- 

Return to bug 19694