|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/* Copyright (C) 2003 Rodolphe Quiedeville <[email protected]> |
|
4
|
|
|
* Copyright (C) 2004-2012 Laurent Destailleur <[email protected]> |
|
5
|
|
|
* Copyright (C) 2005-2012 Regis Houssin <[email protected]> |
|
6
|
|
|
* Copyright (C) 2012 Juanjo Menent <[email protected]> |
|
7
|
|
|
* Copyright (C) 2014 Marcos García <[email protected]> |
|
8
|
|
|
* Copyright (C) 2024 Rafael San José <[email protected]> |
|
9
|
|
|
* |
|
10
|
|
|
* This program is free software; you can redistribute it and/or modify |
|
11
|
|
|
* it under the terms of the GNU General Public License as published by |
|
12
|
|
|
* the Free Software Foundation; either version 3 of the License, or |
|
13
|
|
|
* (at your option) any later version. |
|
14
|
|
|
* |
|
15
|
|
|
* This program is distributed in the hope that it will be useful, |
|
16
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
17
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
18
|
|
|
* GNU General Public License for more details. |
|
19
|
|
|
* |
|
20
|
|
|
* You should have received a copy of the GNU General Public License |
|
21
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. |
|
22
|
|
|
* or see https://www.gnu.org/ |
|
23
|
|
|
*/ |
|
24
|
|
|
|
|
25
|
|
|
namespace Dolibarr\Code\Propale\Classes; |
|
26
|
|
|
|
|
27
|
|
|
use Dolibarr\Code\Core\Classes\CommonDocGenerator; |
|
28
|
|
|
|
|
29
|
|
|
/** |
|
30
|
|
|
* \file htdocs/core/modules/propale/modules_propale.php |
|
31
|
|
|
* \ingroup propale |
|
32
|
|
|
* \brief Fichier contenant la class mere de generation des propales en PDF |
|
33
|
|
|
* et la class mere de numerotation des propales |
|
34
|
|
|
*/ |
|
35
|
|
|
|
|
36
|
|
|
/** |
|
37
|
|
|
* Class mere des modeles de propale |
|
38
|
|
|
*/ |
|
39
|
|
|
abstract class ModelePDFPropales extends CommonDocGenerator |
|
40
|
|
|
{ |
|
41
|
|
|
public $posxpicture; |
|
42
|
|
|
public $posxtva; |
|
43
|
|
|
public $posxup; |
|
44
|
|
|
public $posxqty; |
|
45
|
|
|
public $posxunit; |
|
46
|
|
|
public $posxdesc; |
|
47
|
|
|
public $posxdiscount; |
|
48
|
|
|
public $postotalht; |
|
49
|
|
|
|
|
50
|
|
|
public $tva; |
|
51
|
|
|
public $tva_array; |
|
52
|
|
|
public $localtax1; |
|
53
|
|
|
public $localtax2; |
|
54
|
|
|
|
|
55
|
|
|
public $atleastonediscount = 0; |
|
56
|
|
|
public $atleastoneratenotnull = 0; |
|
57
|
|
|
|
|
58
|
|
|
|
|
59
|
|
|
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps |
|
60
|
|
|
|
|
61
|
|
|
/** |
|
62
|
|
|
* Return list of active generation modules |
|
63
|
|
|
* |
|
64
|
|
|
* @param DoliDB $db Database handler |
|
|
|
|
|
|
65
|
|
|
* @param integer $maxfilenamelength Max length of value to show |
|
66
|
|
|
* @return array List of templates |
|
67
|
|
|
*/ |
|
68
|
|
|
public static function liste_modeles($db, $maxfilenamelength = 0) |
|
69
|
|
|
{ |
|
70
|
|
|
// phpcs:enable |
|
71
|
|
|
$type = 'propal'; |
|
72
|
|
|
$list = array(); |
|
73
|
|
|
|
|
74
|
|
|
include_once DOL_DOCUMENT_ROOT . '/core/lib/functions2.lib.php'; |
|
75
|
|
|
$list = getListOfModels($db, $type, $maxfilenamelength); |
|
76
|
|
|
|
|
77
|
|
|
return $list; |
|
|
|
|
|
|
78
|
|
|
} |
|
79
|
|
|
} |
|
80
|
|
|
|