2011-02-18 17:12:22 +00:00
|
|
|
<?php
|
|
|
|
|
/* Copyright (C) 2003-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
|
|
|
* Copyright (C) 2004-2007 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
|
|
|
* Copyright (C) 2004 Eric Seigne <eric.seigne@ryxeo.com>
|
2018-10-27 12:43:12 +00:00
|
|
|
* Copyright (C) 2005-2009 Regis Houssin <regis.houssin@inodbox.com>
|
2011-02-18 17:12:22 +00:00
|
|
|
* Copyright (C) 2006 Andre Cianfarani <acianfa@free.fr>
|
|
|
|
|
* Copyright (C) 2011 Juanjo Menent <jmenent@2byte.es>
|
2013-08-24 13:59:49 +00:00
|
|
|
* Copyright (C) 2013 Philippe Grand <philippe.grand@atoo-net.com>
|
Created a method generateDocument for several classes
Which are: Commande, Contrat, Livraison, Facture, Projet, Propal, Task, Expedition, CommandeFournisseur, FactureFournisseur and therefore deprecated the following methods supplier_order_pdf_create, supplier_invoice_pdf_create, delivery_order_pdf_create, task_pdf_create, propale_pdf_create, project_pdf_create, facture_pdf_create, expedition_pdf_create, commande_pdf_create
2014-09-16 10:30:37 +00:00
|
|
|
* Copyright (C) 2014 Marcos García <marcosgdf@gmail.com>
|
2024-08-17 17:32:52 +00:00
|
|
|
* Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
|
2011-02-18 17:12:22 +00:00
|
|
|
*
|
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2013-01-16 14:36:08 +00:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2011-02-18 17:12:22 +00:00
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2019-09-23 19:55:30 +00:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
* or see https://www.gnu.org/
|
2011-02-18 17:12:22 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
2011-10-24 12:11:49 +00:00
|
|
|
* \file htdocs/core/modules/contract/modules_contract.php
|
2011-02-18 17:12:22 +00:00
|
|
|
* \ingroup contract
|
2013-09-02 09:53:07 +00:00
|
|
|
* \brief File with parent class for generating contracts to PDF and File of class to manage contract numbering
|
2011-02-18 17:12:22 +00:00
|
|
|
*/
|
|
|
|
|
|
2023-08-09 12:50:28 +00:00
|
|
|
require_once DOL_DOCUMENT_ROOT.'/core/class/commondocgenerator.class.php';
|
|
|
|
|
require_once DOL_DOCUMENT_ROOT.'/core/class/commonnumrefgenerator.class.php';
|
2013-08-24 13:59:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Parent class to manage intervention document templates
|
|
|
|
|
*/
|
|
|
|
|
abstract class ModelePDFContract extends CommonDocGenerator
|
|
|
|
|
{
|
2020-10-31 13:32:18 +00:00
|
|
|
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
|
2013-08-24 13:59:49 +00:00
|
|
|
/**
|
|
|
|
|
* Return list of active generation modules
|
|
|
|
|
*
|
2024-08-14 17:21:10 +00:00
|
|
|
* @param DoliDB $db Database handler
|
|
|
|
|
* @param int<0,max> $maxfilenamelength Max length of value to show
|
|
|
|
|
* @return string|int<-1,0> List of templates, 0 if no module, -1 if error
|
2013-08-24 13:59:49 +00:00
|
|
|
*/
|
2020-10-31 13:32:18 +00:00
|
|
|
public static function liste_modeles($db, $maxfilenamelength = 0)
|
2013-08-24 13:59:49 +00:00
|
|
|
{
|
2020-10-31 13:32:18 +00:00
|
|
|
// phpcs:enable
|
2020-04-10 08:59:32 +00:00
|
|
|
$type = 'contract';
|
2021-02-09 13:00:26 +00:00
|
|
|
$list = array();
|
2013-08-24 13:59:49 +00:00
|
|
|
|
|
|
|
|
include_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
|
2021-02-09 13:00:26 +00:00
|
|
|
$list = getListOfModels($db, $type, $maxfilenamelength);
|
2013-08-24 13:59:49 +00:00
|
|
|
|
2021-02-09 13:00:26 +00:00
|
|
|
return $list;
|
2013-08-24 13:59:49 +00:00
|
|
|
}
|
2024-08-14 17:21:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
|
|
|
|
|
/**
|
|
|
|
|
* Function to build a document on disk
|
|
|
|
|
*
|
|
|
|
|
* @param Contrat $object Object source to build document
|
|
|
|
|
* @param Translate $outputlangs Lang output object
|
|
|
|
|
* @param string $srctemplatepath Full path of source filename for generator using a template file
|
|
|
|
|
* @param int<0,1> $hidedetails Do not show line details
|
|
|
|
|
* @param int<0,1> $hidedesc Do not show desc
|
|
|
|
|
* @param int<0,1> $hideref Do not show ref
|
|
|
|
|
* @return int<-1,1> 1 if OK, <=0 if KO
|
|
|
|
|
*/
|
|
|
|
|
abstract public function write_file($object, $outputlangs, $srctemplatepath = '', $hidedetails = 0, $hidedesc = 0, $hideref = 0);
|
|
|
|
|
// phpcs:enable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
|
2013-08-24 13:59:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2012-03-15 08:26:14 +00:00
|
|
|
/**
|
|
|
|
|
* Parent class for all contract numbering modules
|
|
|
|
|
*/
|
2024-08-17 17:32:52 +00:00
|
|
|
abstract class ModelNumRefContracts extends CommonNumRefGenerator
|
2011-02-18 17:12:22 +00:00
|
|
|
{
|
2024-08-17 17:32:52 +00:00
|
|
|
/**
|
|
|
|
|
* Return next value
|
|
|
|
|
*
|
|
|
|
|
* @param Societe $objsoc third party object
|
|
|
|
|
* @param Contrat $contract contract object
|
2024-08-19 00:05:27 +00:00
|
|
|
* @return string|int<-1,0> Next value if OK, -1 or 0 if KO
|
2024-08-17 17:32:52 +00:00
|
|
|
*/
|
|
|
|
|
abstract public function getNextValue($objsoc, $contract);
|
2024-09-04 18:17:31 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Return an example of numbering
|
|
|
|
|
*
|
|
|
|
|
* @return string Example
|
|
|
|
|
*/
|
|
|
|
|
abstract public function getExample();
|
2011-02-18 17:12:22 +00:00
|
|
|
}
|