bankconciliate.php 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <?php
  2. /* Copyright (C) 2012 Laurent Destailleur <eldy@users.sourceforge.net>
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. /**
  18. * \file htdocs/core/ajax/bankconciliate.php
  19. * \brief File to set data for bank concilation
  20. */
  21. if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL','1'); // Disables token renewal
  22. if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU','1');
  23. if (! defined('NOREQUIREHTML')) define('NOREQUIREHTML','1');
  24. if (! defined('NOREQUIREAJAX')) define('NOREQUIREAJAX','1');
  25. if (! defined('NOREQUIRESOC')) define('NOREQUIRESOC','1');
  26. //if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1'); // Required to knwo date format for dol_print_date
  27. require '../../main.inc.php';
  28. require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
  29. require_once DOL_DOCUMENT_ROOT.'/compta/bank/class/account.class.php';
  30. $action=GETPOST('action');
  31. /*
  32. * View
  33. */
  34. // Ajout directives pour resoudre bug IE
  35. //header('Cache-Control: Public, must-revalidate');
  36. //header('Pragma: public');
  37. //top_htmlhead("", "", 1); // Replaced with top_httphead. An ajax page does not need html header.
  38. top_httphead();
  39. //print '<!-- Ajax page called with url '.$_SERVER["PHP_SELF"].'?'.$_SERVER["QUERY_STRING"].' -->'."\n";
  40. if (($user->rights->banque->modifier || $user->rights->banque->consolidate) && $action == 'dvnext')
  41. {
  42. // Increase date
  43. $al =new AccountLine($db);
  44. $al->datev_next($_GET["rowid"]);
  45. $al->fetch($_GET["rowid"]);
  46. print '<span>'.dol_print_date($db->jdate($al->datev),"day").'</span>';
  47. exit;
  48. }
  49. if (($user->rights->banque->modifier || $user->rights->banque->consolidate) && $action == 'dvprev')
  50. {
  51. // Decrease date
  52. $al =new AccountLine($db);
  53. $al->datev_previous($_GET["rowid"]);
  54. $al->fetch($_GET["rowid"]);
  55. print '<span>'.dol_print_date($db->jdate($al->datev),"day").'</span>';
  56. exit;
  57. }