Bug 13675: Do not set aqorders.budget_id to NULL
authorJonathan Druart <jonathan.druart@biblibre.com>
Fri, 6 Feb 2015 15:19:14 +0000 (16:19 +0100)
committerTomas Cohen Arazi <tomascohen@gmail.com>
Tue, 10 Feb 2015 11:45:44 +0000 (08:45 -0300)
commit2df541712fd691ee817568ed9d14e94bba13424e
tree9dc278bfabb941517da244414d5291b62f3e1b65
parent8f690a135edf531ee3576bc1fb4fa81b0d954477
Bug 13675: Do not set aqorders.budget_id to NULL

C4::Acquisition::ModReceiveOrder updates the aqorders with
budget_id=NULL if no budget_id given in parameter.
Actually the same budget_id should be used.
In tests (especially t/db_dependent/Acquisition/TransferOrder.t),
ModReceiveOrder is not called with a budget_id param and set to NULL the
budget_id value.

test plan:
  prove t/db_dependent/Acquisition/TransferOrder.t
should return green

Note that this bug should not appear using the interface.

Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
The fix makes sense, and running
 $ prove t/db_dependent/Acq*
returns all green. koha-qa.pl also likes it.

Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
C4/Acquisition.pm