|
@@ -24,15 +24,36 @@
|
|
|
* \ingroup banque
|
|
|
* \brief File to build payment reports
|
|
|
*/
|
|
|
+
|
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/pdf.lib.php';
|
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
|
|
|
+require_once DOL_DOCUMENT_ROOT.'/core/class/commondocgenerator.class.php';
|
|
|
|
|
|
|
|
|
/**
|
|
|
- * Classe permettant de generer les rapports de paiement
|
|
|
+ * Class to manage reporting of payments
|
|
|
*/
|
|
|
-class pdf_paiement
|
|
|
+class pdf_paiement extends CommonDocGenerator
|
|
|
{
|
|
|
+ public $tab_top;
|
|
|
+
|
|
|
+ public $line_height;
|
|
|
+
|
|
|
+ public $line_per_page;
|
|
|
+
|
|
|
+ public $tab_height;
|
|
|
+
|
|
|
+ public $posxdate;
|
|
|
+
|
|
|
+ public $posxpaymenttype;
|
|
|
+ public $posxinvoice;
|
|
|
+ public $posxbankaccount;
|
|
|
+ public $posxinvoiceamount;
|
|
|
+ public $posxpaymentamount;
|
|
|
+
|
|
|
+ public $doc_type;
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* Constructor
|
|
|
*
|