dolibarr 21.0.0-alpha
modules_supplier_payment.php
1<?php
2/* Copyright (C) 2015 Juanjo Menent <jmenent@2byte.es>
3 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>.
17 * or see https://www.gnu.org/
18 */
19
20require_once DOL_DOCUMENT_ROOT.'/core/class/commondocgenerator.class.php';
21require_once DOL_DOCUMENT_ROOT.'/core/class/commonnumrefgenerator.class.php';
22
23
28{
29 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
37 public static function liste_modeles($db, $maxfilenamelength = 0)
38 {
39 // phpcs:enable
40 $type = 'supplier_payment';
41 $list = array();
42
43 include_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
44 $list = getListOfModels($db, $type, $maxfilenamelength);
45
46 return $list;
47 }
48
49
50 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
62 abstract public function write_file($object, $outputlangs, $srctemplatepath = '', $hidedetails = 0, $hidedesc = 0, $hideref = 0);
63}
64
71{
79 abstract public function getNextValue($objsoc, $object);
80
86 abstract public function getExample();
87}
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:58
Parent class for documents (PDF, ODT, ...) generators.
Parent class for number ref generators.
ModeleNumRefSupplierPayments.
getExample()
Return an example of numbering.
getNextValue($objsoc, $object)
Return next free value.
Parent class for supplier invoices models.
static liste_modeles($db, $maxfilenamelength=0)
Return list of active generation modules.
write_file($object, $outputlangs, $srctemplatepath='', $hidedetails=0, $hidedesc=0, $hideref=0)
Function to build document.
getListOfModels($db, $type, $maxfilenamelength=0)
Return list of activated modules usable for document generation.