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

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

Return to bug 15376