Merge branch 'dev-7201' into entreprise

* dev-7201:
  Bug 1786: Comptabilité analytique : TVA non déductible bloque
  http_input , trim on array is invalid
  Test : correct test for Acc_Ledger_Factory : payment status
  Bug in reconcile for bank amount: total_invoice is null for FIN and ODS
  Bug : search
  Bug #1783 : les nombres commençant par zéro ne sont pas supportés
  zero is considered as empty value
  http_input replace empty by a value
  export historic card csv : column wrong
  Remove direct access to $http
  Documentation + bug cosmetic about TVA_SIDED : total operation shown instead of total_invoice (VAT REVERSED)
  Fix cosmetic + export histo CSV with operation filter
  Round VAT
  add forgotten file
  Change logo
  warning about session_start
  Acc_Ledger_Search , fix small bug + Test file
  Documentation
  TEST fix bug in acc_balanceTest
This commit is contained in:
Dany De Bontridder 2020-01-17 20:27:49 +01:00
commit cb0a8491de
28 changed files with 319 additions and 75 deletions

View file

@ -0,0 +1,10 @@
begin;
alter table user_filter rename unpaid to operation_filter;
alter table user_filter alter column operation_filter type text;
update user_filter set operation_filter = 'paid' where operation_filter is not null;
update user_filter set operation_filter = 'all' where operation_filter is null;
comment on column user_filter.operation_filter is 'Status of the operation : paid, unpaid or all operation';
alter table user_filter alter operation_filter set not null;
insert into version (val,v_description) values (141,'Search filter with operation status');
commit ;