dolibarr  17.0.4
calcmens.php
Go to the documentation of this file.
1 <?php
2 /* TVI
3  * Copyright (C) 2015 Florian HENRY <florian.henry@open-concept.pro>
4  * Copyright (C) 2020 Maxime DEMAREST <maxime@indelog.fr>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program. If not, see <https://www.gnu.org/licenses/>.
18  */
19 
26 if (!defined('NOTOKENRENEWAL')) {
27  define('NOTOKENRENEWAL', '1'); // Disables token renewal
28 }
29 if (!defined('NOREQUIREMENU')) {
30  define('NOREQUIREMENU', '1');
31 }
32 if (!defined('NOREQUIREAJAX')) {
33  define('NOREQUIREAJAX', '1');
34 }
35 
36 // Load Dolibarr environment
37 require '../main.inc.php';
38 require DOL_DOCUMENT_ROOT.'/core/lib/loan.lib.php';
39 
40 $mens = price2num(GETPOST('mens'));
41 $capital = price2num(GETPOST('capital'));
42 $rate = price2num(GETPOST('rate'));
43 $echance = GETPOST('echeance', 'int');
44 $nbterm = GETPOST('nbterm', 'int');
45 
46 top_httphead();
47 
48 $output = array();
49 
50 $output = loanCalcMonthlyPayment($mens, $capital, $rate, $echance, $nbterm);
51 
52 echo json_encode($output);
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
loanCalcMonthlyPayment($mens, $capital, $rate, $numactualloadterm, $nbterm)
Calculate remaining loan mensuality and interests.
Definition: loan.lib.php:102
if(!defined('NOREQUIREMENU')) if(!function_exists("llxHeader")) top_httphead($contenttype='text/html', $forcenocache=0)
Show HTTP header.
Definition: main.inc.php:1440