2004-10-19 20:58:50 +02:00
< ? php
2004-01-30 11:06:34 +01:00
/* Copyright ( C ) 2002 - 2004 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
2015-03-17 10:52:27 +01:00
* Copyright ( C ) 2006 - 2015 Laurent Destailleur < eldy @ users . sourceforge . net >
2025-02-03 11:24:16 +01:00
* Copyright ( C ) 2024 - 2025 MDW < mdeweerd @ users . noreply . github . com >
2024-04-06 17:38:39 +02:00
* Copyright ( C ) 2024 Frédéric France < frederic . france @ free . fr >
2003-09-01 00:05:54 +02: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 15:36:08 +01:00
* the Free Software Foundation ; either version 3 of the License , or
2003-09-01 00:05:54 +02: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 21:55:30 +02:00
* along with this program . If not , see < https :// www . gnu . org / licenses />.
2003-09-01 00:05:54 +02:00
*/
2007-05-28 15:14:50 +02:00
/**
2016-09-24 06:48:40 +02:00
* \file htdocs / adherents / class / subscription . class . php
* \ingroup member
* \brief File of class to manage subscriptions of foundation members
2009-10-10 18:00:35 +02:00
*/
2004-07-28 00:46:33 +02:00
2017-11-15 11:39:11 +01:00
//namespace DolibarrMember;
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/core/class/commonobject.class.php' ;
2010-04-17 16:49:27 +02:00
2004-07-28 00:46:33 +02:00
2007-05-28 15:14:50 +02:00
/**
2012-11-15 14:52:19 +01:00
* Class to manage subscriptions of foundation members
2009-10-10 18:00:35 +02:00
*/
2016-09-24 06:48:40 +02:00
class Subscription extends CommonObject
2003-09-01 00:05:54 +02:00
{
2020-10-31 14:32:18 +01:00
/**
* @ var string ID to identify managed object
*/
public $element = 'subscription' ;
/**
* @ var string Name of table without prefix where object is stored
*/
public $table_element = 'subscription' ;
/**
* @ var string String with name of icon for myobject . Must be the part after the 'object_' into object_myobject . png
*/
public $picto = 'payment' ;
/**
* Date creation record ( datec )
*
* @ var integer
*/
public $datec ;
/**
* Date modification record ( tms )
*
* @ var integer
*/
public $datem ;
/**
* Subscription start date ( date subscription )
*
* @ var integer
*/
public $dateh ;
/**
* Subscription end date
*
* @ var integer
*/
public $datef ;
/**
* @ var int ID
*/
public $fk_type ;
2020-12-30 21:41:44 +01:00
/**
* @ var int Member ID
*/
2020-10-31 14:32:18 +01:00
public $fk_adherent ;
2020-12-30 21:41:44 +01:00
/**
* @ var double amount subscription
*/
2020-10-31 14:32:18 +01:00
public $amount ;
/**
2023-06-08 09:55:08 +02:00
* @ var int ID of bank in llx_bank
2020-10-31 14:32:18 +01:00
*/
public $fk_bank ;
2023-06-08 09:55:08 +02:00
/**
2025-02-05 00:40:06 +01:00
* @ var array < string , array { type : string , label : string , enabled : int < 0 , 2 >| string , position : int , notnull ? : int , visible : int <- 6 , 6 >| string , alwayseditable ? : int < 0 , 1 > , noteditable ? : int < 0 , 1 > , default ? : string , index ? : int , foreignkey ? : string , searchall ? : int < 0 , 1 > , isameasure ? : int < 0 , 1 > , css ? : string , csslist ? : string , help ? : string , showoncombobox ? : int < 0 , 4 > , disabled ? : int < 0 , 1 > , arrayofkeyval ? : array < int | string , string > , autofocusoncreate ? : int < 0 , 1 > , comment ? : string , copytoclipboard ? : int < 1 , 2 > , validate ? : int < 0 , 1 > , showonheader ? : int < 0 , 1 > } > Array with all fields and their property . Do not use it as a static var . It may be modified by constructor .
2023-06-08 09:55:08 +02:00
*/
2020-10-31 14:32:18 +01:00
public $fields = array (
2024-03-11 17:38:38 +01:00
'rowid' => array ( 'type' => 'integer' , 'label' => 'TechnicalID' , 'enabled' => 1 , 'visible' => - 1 , 'notnull' => 1 , 'position' => 10 ),
'tms' => array ( 'type' => 'timestamp' , 'label' => 'DateModification' , 'enabled' => 1 , 'visible' => - 1 , 'notnull' => 1 , 'position' => 15 ),
'datec' => array ( 'type' => 'datetime' , 'label' => 'DateCreation' , 'enabled' => 1 , 'visible' => - 1 , 'position' => 20 ),
'fk_adherent' => array ( 'type' => 'integer' , 'label' => 'Member' , 'enabled' => 1 , 'visible' => - 1 , 'position' => 25 ),
'dateadh' => array ( 'type' => 'datetime' , 'label' => 'DateSubscription' , 'enabled' => 1 , 'visible' => - 1 , 'position' => 30 ),
'datef' => array ( 'type' => 'datetime' , 'label' => 'DateEndSubscription' , 'enabled' => 1 , 'visible' => - 1 , 'position' => 35 ),
'subscription' => array ( 'type' => 'double(24,8)' , 'label' => 'Amount' , 'enabled' => 1 , 'visible' => - 1 , 'position' => 40 , 'isameasure' => 1 ),
'fk_bank' => array ( 'type' => 'integer' , 'label' => 'BankId' , 'enabled' => 1 , 'visible' => - 1 , 'position' => 45 ),
'note' => array ( 'type' => 'html' , 'label' => 'Note' , 'enabled' => 1 , 'visible' => - 1 , 'position' => 50 ),
'fk_type' => array ( 'type' => 'integer' , 'label' => 'MemberType' , 'enabled' => 1 , 'visible' => - 1 , 'position' => 55 ),
'fk_user_creat' => array ( 'type' => 'integer:User:user/class/user.class.php' , 'label' => 'UserAuthor' , 'enabled' => 1 , 'visible' => - 2 , 'position' => 60 ),
'fk_user_valid' => array ( 'type' => 'integer:User:user/class/user.class.php' , 'label' => 'UserValidation' , 'enabled' => 1 , 'visible' => - 1 , 'position' => 65 ),
2020-10-31 14:32:18 +01:00
);
/**
* Constructor
*
* @ param DoliDB $db Database handler
*/
public function __construct ( $db )
{
$this -> db = $db ;
2024-05-05 00:34:19 +02:00
$this -> ismultientitymanaged = 'fk_adherent@adherent' ;
2020-10-31 14:32:18 +01:00
}
/**
2023-06-08 09:55:08 +02:00
* Function who permitted creation of the subscription
2020-10-31 14:32:18 +01:00
*
* @ param User $user User that create
2024-01-12 18:07:53 +01:00
* @ param int $notrigger 0 = launch triggers after , 1 = disable triggers
2023-12-06 15:46:39 +01:00
* @ return int Return integer < 0 if KO , Id subscription created if OK
2020-10-31 14:32:18 +01:00
*/
2024-01-12 18:07:53 +01:00
public function create ( $user , $notrigger = 0 )
2020-10-31 14:32:18 +01:00
{
global $langs ;
$error = 0 ;
$now = dol_now ();
// Check parameters
if ( $this -> datef <= $this -> dateh ) {
$this -> error = $langs -> trans ( " ErrorBadValueForDate " );
return - 1 ;
}
2020-12-30 21:41:44 +01:00
if ( empty ( $this -> datec )) {
$this -> datec = $now ;
}
2020-10-31 14:32:18 +01:00
$this -> db -> begin ();
require_once DOL_DOCUMENT_ROOT . '/adherents/class/adherent.class.php' ;
$member = new Adherent ( $this -> db );
$result = $member -> fetch ( $this -> fk_adherent );
if ( $this -> fk_type == null ) { // If type not defined, we use the type of member
$type = $member -> typeid ;
} else {
$type = $this -> fk_type ;
}
2025-01-23 14:20:47 +01:00
$sql = " INSERT INTO " . MAIN_DB_PREFIX . " subscription (fk_adherent, fk_type, datec, dateadh, datef, subscription, note, fk_user_creat) " ;
2025-02-03 11:24:16 +01:00
$sql .= " VALUES ( " . (( int ) $this -> fk_adherent ) . " , ' " . $this -> db -> escape (( string ) $type ) . " ', ' " . $this -> db -> idate ( $now ) . " ', " ;
2020-10-31 14:32:18 +01:00
$sql .= " ' " . $this -> db -> idate ( $this -> dateh ) . " ', " ;
$sql .= " ' " . $this -> db -> idate ( $this -> datef ) . " ', " ;
2021-06-14 13:51:09 +02:00
$sql .= " " . (( float ) $this -> amount ) . " , " ;
2025-01-23 14:20:47 +01:00
$sql .= " ' " . $this -> db -> escape ( $this -> note_public ? $this -> note_public : $this -> note ) . " ', " ;
$sql .= " " . (( int ) ( $this -> user_creation_id > 0 ? $this -> user_creation_id : $user -> id ));
$sql .= " ) " ;
2020-10-31 14:32:18 +01:00
$resql = $this -> db -> query ( $sql );
if ( ! $resql ) {
$error ++ ;
$this -> errors [] = $this -> db -> lasterror ();
}
if ( ! $error ) {
$this -> id = $this -> db -> last_insert_id ( MAIN_DB_PREFIX . $this -> table_element );
$this -> fk_type = $type ;
}
2024-03-17 23:06:11 +01:00
if ( ! empty ( $this -> linkedObjectsIds ) && empty ( $this -> linked_objects )) { // To use new linkedObjectsIds instead of old linked_objects
$this -> linked_objects = $this -> linkedObjectsIds ; // TODO Replace linked_objects with linkedObjectsIds
}
// Add object linked
if ( ! $error && $this -> id && ! empty ( $this -> linked_objects ) && is_array ( $this -> linked_objects )) {
foreach ( $this -> linked_objects as $origin => $tmp_origin_id ) {
if ( is_array ( $tmp_origin_id )) { // New behaviour, if linked_object can have several links per type, so is something like array('contract'=>array(id1, id2, ...))
foreach ( $tmp_origin_id as $origin_id ) {
$ret = $this -> add_object_linked ( $origin , $origin_id );
if ( ! $ret ) {
$this -> error = $this -> db -> lasterror ();
$error ++ ;
}
}
} else { // Old behaviour, if linked_object has only one link per type, so is something like array('contract'=>id1))
$origin_id = $tmp_origin_id ;
$ret = $this -> add_object_linked ( $origin , $origin_id );
if ( ! $ret ) {
$this -> error = $this -> db -> lasterror ();
$error ++ ;
}
}
}
}
2020-10-31 14:32:18 +01:00
if ( ! $error && ! $notrigger ) {
2020-11-08 18:52:26 +01:00
$this -> context = array ( 'member' => $member );
2020-10-31 14:32:18 +01:00
// Call triggers
$result = $this -> call_trigger ( 'MEMBER_SUBSCRIPTION_CREATE' , $user );
2020-12-30 21:41:44 +01:00
if ( $result < 0 ) {
$error ++ ;
}
2020-10-31 14:32:18 +01:00
// End call triggers
}
// Commit or rollback
if ( $error ) {
$this -> db -> rollback ();
return - 1 ;
} else {
$this -> db -> commit ();
return $this -> id ;
}
}
/**
* Method to load a subscription
*
* @ param int $rowid Id subscription
2023-12-06 15:46:39 +01:00
* @ return int Return integer < 0 if KO , = 0 if not found , > 0 if OK
2020-10-31 14:32:18 +01:00
*/
public function fetch ( $rowid )
{
$sql = " SELECT rowid, fk_type, fk_adherent, datec, " ;
$sql .= " tms, " ;
$sql .= " dateadh as dateh, " ;
$sql .= " datef, " ;
2022-01-23 19:20:13 +01:00
$sql .= " subscription, note as note_public, fk_bank " ;
2020-10-31 14:32:18 +01:00
$sql .= " FROM " . MAIN_DB_PREFIX . " subscription " ;
2023-06-08 09:55:08 +02:00
$sql .= " WHERE rowid = " . (( int ) $rowid );
2020-10-31 14:32:18 +01:00
dol_syslog ( get_class ( $this ) . " ::fetch " , LOG_DEBUG );
$resql = $this -> db -> query ( $sql );
if ( $resql ) {
if ( $this -> db -> num_rows ( $resql )) {
$obj = $this -> db -> fetch_object ( $resql );
$this -> id = $obj -> rowid ;
$this -> ref = $obj -> rowid ;
$this -> fk_type = $obj -> fk_type ;
$this -> fk_adherent = $obj -> fk_adherent ;
$this -> datec = $this -> db -> jdate ( $obj -> datec );
$this -> datem = $this -> db -> jdate ( $obj -> tms );
$this -> dateh = $this -> db -> jdate ( $obj -> dateh );
$this -> datef = $this -> db -> jdate ( $obj -> datef );
$this -> amount = $obj -> subscription ;
2022-01-23 19:20:13 +01:00
$this -> note = $obj -> note_public ; // deprecated
$this -> note_public = $obj -> note_public ;
2020-10-31 14:32:18 +01:00
$this -> fk_bank = $obj -> fk_bank ;
return 1 ;
} else {
return 0 ;
}
} else {
$this -> error = $this -> db -> lasterror ();
return - 1 ;
}
}
/**
* Update subscription
*
* @ param User $user User who updated
* @ param int $notrigger 0 = Disable triggers
2023-12-01 19:51:32 +01:00
* @ return int Return integer < 0 if KO , > 0 if OK
2020-10-31 14:32:18 +01:00
*/
public function update ( $user , $notrigger = 0 )
{
$error = 0 ;
$this -> db -> begin ();
2020-12-01 02:41:19 +01:00
if ( ! is_numeric ( $this -> amount )) {
$this -> error = 'BadValueForParameterAmount' ;
return - 1 ;
}
2020-11-27 14:24:15 +01:00
2022-01-23 19:20:13 +01:00
if ( empty ( $this -> note_public ) && ! empty ( $this -> note )) { // For backward compatibility
$this -> note_public = $this -> note ;
}
2020-10-31 14:32:18 +01:00
$sql = " UPDATE " . MAIN_DB_PREFIX . " subscription SET " ;
2021-06-09 15:36:47 +02:00
$sql .= " fk_type = " . (( int ) $this -> fk_type ) . " , " ;
$sql .= " fk_adherent = " . (( int ) $this -> fk_adherent ) . " , " ;
2023-06-08 09:55:08 +02:00
$sql .= " note = " . ( $this -> note_public ? " ' " . $this -> db -> escape ( $this -> note_public ) . " ' " : 'null' ) . " , " ;
2024-03-05 00:15:33 +01:00
$sql .= " subscription = " . ( float ) price2num ( $this -> amount ) . " , " ;
2023-06-08 09:55:08 +02:00
$sql .= " dateadh = ' " . $this -> db -> idate ( $this -> dateh ) . " ', " ;
$sql .= " datef = ' " . $this -> db -> idate ( $this -> datef ) . " ', " ;
$sql .= " datec = ' " . $this -> db -> idate ( $this -> datec ) . " ', " ;
2021-06-09 15:36:47 +02:00
$sql .= " fk_bank = " . ( $this -> fk_bank ? (( int ) $this -> fk_bank ) : 'null' );
2021-08-27 16:33:03 +02:00
$sql .= " WHERE rowid = " . (( int ) $this -> id );
2020-10-31 14:32:18 +01:00
dol_syslog ( get_class ( $this ) . " ::update " , LOG_DEBUG );
$resql = $this -> db -> query ( $sql );
if ( $resql ) {
require_once DOL_DOCUMENT_ROOT . '/adherents/class/adherent.class.php' ;
$member = new Adherent ( $this -> db );
$result = $member -> fetch ( $this -> fk_adherent );
$result = $member -> update_end_date ( $user );
if ( ! $error && ! $notrigger ) {
2024-03-11 17:38:38 +01:00
$this -> context = array ( 'member' => $member );
2020-10-31 14:32:18 +01:00
// Call triggers
$result = $this -> call_trigger ( 'MEMBER_SUBSCRIPTION_MODIFY' , $user );
2020-12-30 21:41:44 +01:00
if ( $result < 0 ) {
$error ++ ;
} //Do also here what you must do to rollback action if trigger fail
2020-10-31 14:32:18 +01:00
// End call triggers
}
} else {
$error ++ ;
$this -> error = $this -> db -> lasterror ();
}
// Commit or rollback
if ( $error ) {
$this -> db -> rollback ();
return - 1 ;
} else {
$this -> db -> commit ();
return $this -> id ;
}
}
/**
* Delete a subscription
*
2024-09-12 21:16:42 +02:00
* @ param User $user User that delete
* @ param int < 0 , 1 > $notrigger 0 = launch triggers after , 1 = disable triggers
* @ return int Return integer < 0 if KO , 0 if not found , > 0 if OK
2020-10-31 14:32:18 +01:00
*/
2024-01-12 17:47:54 +01:00
public function delete ( $user , $notrigger = 0 )
2020-10-31 14:32:18 +01:00
{
$error = 0 ;
// It subscription is linked to a bank transaction, we get it
if ( $this -> fk_bank > 0 ) {
require_once DOL_DOCUMENT_ROOT . '/compta/bank/class/account.class.php' ;
$accountline = new AccountLine ( $this -> db );
$result = $accountline -> fetch ( $this -> fk_bank );
2024-09-12 21:16:42 +02:00
} else {
$accountline = null ;
2020-10-31 14:32:18 +01:00
}
$this -> db -> begin ();
if ( ! $error ) {
if ( ! $notrigger ) {
// Call triggers
$result = $this -> call_trigger ( 'MEMBER_SUBSCRIPTION_DELETE' , $user );
2020-12-30 21:41:44 +01:00
if ( $result < 0 ) {
$error ++ ;
} // Do also here what you must do to rollback action if trigger fail
2020-10-31 14:32:18 +01:00
// End call triggers
}
}
if ( ! $error ) {
2021-06-09 15:36:47 +02:00
$sql = " DELETE FROM " . MAIN_DB_PREFIX . " subscription WHERE rowid = " . (( int ) $this -> id );
2020-10-31 14:32:18 +01:00
dol_syslog ( get_class ( $this ) . " ::delete " , LOG_DEBUG );
$resql = $this -> db -> query ( $sql );
if ( $resql ) {
$num = $this -> db -> affected_rows ( $resql );
if ( $num ) {
require_once DOL_DOCUMENT_ROOT . '/adherents/class/adherent.class.php' ;
$member = new Adherent ( $this -> db );
$result = $member -> fetch ( $this -> fk_adherent );
$result = $member -> update_end_date ( $user );
if ( $this -> fk_bank > 0 && is_object ( $accountline ) && $accountline -> id > 0 ) { // If we found bank account line (this means this->fk_bank defined)
2022-03-25 14:43:48 +01:00
$result = $accountline -> delete ( $user ); // Return false if refused because line is reconciled
2020-10-31 14:32:18 +01:00
if ( $result > 0 ) {
$this -> db -> commit ();
return 1 ;
} else {
$this -> error = $accountline -> error ;
$this -> db -> rollback ();
return - 1 ;
}
} else {
$this -> db -> commit ();
return 1 ;
}
} else {
$this -> db -> commit ();
return 0 ;
}
} else {
$error ++ ;
$this -> error = $this -> db -> lasterror ();
}
}
// Commit or rollback
if ( $error ) {
$this -> db -> rollback ();
return - 1 ;
} else {
$this -> db -> commit ();
return 1 ;
}
}
/**
2024-08-07 01:20:43 +02:00
* Return clickable name ( with picto eventually )
2020-10-31 14:32:18 +01:00
*
* @ param int $withpicto 0 = No picto , 1 = Include picto into link , 2 = Only picto
* @ param int $notooltip 1 = Disable tooltip
* @ param string $option Page for link ( '' , 'nolink' , ... )
* @ param string $morecss Add more css on link
* @ param int $save_lastsearch_value - 1 = Auto , 0 = No save of lastsearch_values when clicking , 1 = Save lastsearch_values whenclicking
* @ return string Chaine avec URL
*/
public function getNomUrl ( $withpicto = 0 , $notooltip = 0 , $option = '' , $morecss = '' , $save_lastsearch_value = - 1 )
{
global $langs ;
$result = '' ;
$langs -> load ( " members " );
2020-11-23 12:29:38 +01:00
$label = img_picto ( '' , $this -> picto ) . ' <u class="paddingrightonly">' . $langs -> trans ( " Subscription " ) . '</u>' ;
/* if ( isset ( $this -> statut )) {
$label .= ' ' . $this -> getLibStatut ( 5 );
} */
$label .= '<br><b>' . $langs -> trans ( 'Ref' ) . ':</b> ' . $this -> ref ;
if ( ! empty ( $this -> dateh )) {
$label .= '<br><b>' . $langs -> trans ( 'DateStart' ) . ':</b> ' . dol_print_date ( $this -> dateh , 'day' );
}
if ( ! empty ( $this -> datef )) {
$label .= '<br><b>' . $langs -> trans ( 'DateEnd' ) . ':</b> ' . dol_print_date ( $this -> datef , 'day' );
}
2020-10-31 14:32:18 +01:00
2021-03-14 12:20:23 +01:00
$url = DOL_URL_ROOT . '/adherents/subscription/card.php?rowid=' . (( int ) $this -> id );
2020-10-31 14:32:18 +01:00
if ( $option != 'nolink' ) {
// Add param to save lastsearch_values or not
$add_save_lastsearch_values = ( $save_lastsearch_value == 1 ? 1 : 0 );
2023-09-10 17:41:22 +02:00
if ( $save_lastsearch_value == - 1 && isset ( $_SERVER [ " PHP_SELF " ]) && preg_match ( '/list\.php/' , $_SERVER [ " PHP_SELF " ])) {
2020-12-30 21:41:44 +01:00
$add_save_lastsearch_values = 1 ;
}
if ( $add_save_lastsearch_values ) {
$url .= '&save_lastsearch_values=1' ;
}
2020-10-31 14:32:18 +01:00
}
$linkstart = '<a href="' . $url . '" class="classfortooltip" title="' . dol_escape_htmltag ( $label , 1 ) . '">' ;
$linkend = '</a>' ;
$result .= $linkstart ;
2020-12-30 21:41:44 +01:00
if ( $withpicto ) {
$result .= img_object (( $notooltip ? '' : $label ), ( $this -> picto ? $this -> picto : 'generic' ), ( $notooltip ? (( $withpicto != 2 ) ? 'class="paddingright"' : '' ) : 'class="' . (( $withpicto != 2 ) ? 'paddingright ' : '' ) . 'classfortooltip"' ), 0 , 0 , $notooltip ? 0 : 1 );
}
if ( $withpicto != 2 ) {
$result .= $this -> ref ;
}
2020-10-31 14:32:18 +01:00
$result .= $linkend ;
return $result ;
}
/**
2023-04-08 15:08:55 +02:00
* Return the label of the status
2020-10-31 14:32:18 +01:00
*
2023-04-08 15:08:55 +02:00
* @ param int $mode 0 = long label , 1 = short label , 2 = Picto + short label , 3 = Picto , 4 = Picto + long label , 5 = Short label + Picto , 6 = Long label + Picto
* @ return string Label of status
2020-10-31 14:32:18 +01:00
*/
public function getLibStatut ( $mode = 0 )
{
return '' ;
}
// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
/**
2023-04-08 15:08:55 +02:00
* Return the label of a given status
2020-10-31 14:32:18 +01:00
*
2023-04-08 15:08:55 +02:00
* @ param int $status Id status
* @ param int $mode 0 = long label , 1 = short label , 2 = Picto + short label , 3 = Picto , 4 = Picto + long label , 5 = Short label + Picto , 6 = Long label + Picto
* @ return string Label of status
2020-10-31 14:32:18 +01:00
*/
2023-04-08 15:08:55 +02:00
public function LibStatut ( $status , $mode = 0 )
2020-10-31 14:32:18 +01:00
{
// phpcs:enable
2023-04-08 15:08:55 +02:00
//$langs->load("members");
2020-10-31 14:32:18 +01:00
return '' ;
}
/**
* Load information of the subscription object
*
* @ param int $id Id subscription
* @ return void
*/
public function info ( $id )
{
2025-01-23 14:20:47 +01:00
$sql = 'SELECT c.rowid, c.datec, c.tms as datem, c.fk_user_creat' ;
2020-10-31 14:32:18 +01:00
$sql .= ' FROM ' . MAIN_DB_PREFIX . 'subscription as c' ;
2021-03-14 11:48:39 +01:00
$sql .= ' WHERE c.rowid = ' . (( int ) $id );
2020-10-31 14:32:18 +01:00
2022-05-15 22:29:19 +02:00
$resql = $this -> db -> query ( $sql );
if ( $resql ) {
if ( $this -> db -> num_rows ( $resql )) {
$obj = $this -> db -> fetch_object ( $resql );
2020-10-31 14:32:18 +01:00
$this -> id = $obj -> rowid ;
$this -> date_creation = $this -> db -> jdate ( $obj -> datec );
$this -> date_modification = $this -> db -> jdate ( $obj -> datem );
2025-01-23 14:20:47 +01:00
$this -> user_creation_id = $obj -> fk_user_creat ;
2020-10-31 14:32:18 +01:00
}
2022-05-15 22:29:19 +02:00
$this -> db -> free ( $resql );
2020-10-31 14:32:18 +01:00
} else {
dol_print_error ( $this -> db );
}
}
2022-12-19 15:19:12 +01:00
/**
2024-08-07 01:20:43 +02:00
* Return clickable link of object ( with eventually picto )
2022-12-19 15:19:12 +01:00
*
2025-02-03 11:24:16 +01:00
* @ param string $option Where point the link ( 0 => main card , 1 , 2 => shipment , 'nolink' => No link )
* @ param ? array { selected ? : int | bool , adherent_type ? : AdherentType , member ? : Adherent , bank ? : Account } $arraydata Array of data
* @ return string HTML Code for Kanban thumb .
2022-12-19 15:19:12 +01:00
*/
2023-01-18 22:27:52 +01:00
public function getKanbanView ( $option = '' , $arraydata = null )
2022-12-19 15:19:12 +01:00
{
2023-03-07 22:04:40 +01:00
$selected = ( empty ( $arraydata [ 'selected' ]) ? 0 : $arraydata [ 'selected' ]);
2022-12-19 15:19:12 +01:00
$return = '<div class="box-flex-item box-flex-grow-zero">' ;
$return .= '<div class="info-box info-box-sm">' ;
$return .= '<span class="info-box-icon bg-infobox-action">' ;
$return .= img_picto ( '' , $this -> picto );
$return .= '</span>' ;
$return .= '<div class="info-box-content">' ;
2023-07-02 20:01:37 +02:00
$return .= '<span class="info-box-ref inline-block tdoverflowmax150 valignmiddle">' ;
2024-05-29 22:19:52 +02:00
$return .= $this -> getNomUrl ( 0 );
2023-10-01 20:15:01 +02:00
$return .= '</span>' ;
2023-10-17 15:43:56 +02:00
if ( $selected >= 0 ) {
$return .= '<input id="cb' . $this -> id . '" class="flat checkforselect fright" type="checkbox" name="toselect[]" value="' . $this -> id . '"' . ( $selected ? ' checked="checked"' : '' ) . '>' ;
}
2022-12-19 15:19:12 +01:00
if ( property_exists ( $this , 'dateh' ) || property_exists ( $this , 'datef' )) {
2023-07-02 20:01:37 +02:00
$return .= '<br><span class="info-box-status opacitymedium small">' . dol_print_date ( $this -> dateh , 'day' ) . ' - ' . dol_print_date ( $this -> datef , 'day' ) . '</span>' ;
2022-12-19 15:19:12 +01:00
}
2022-12-19 15:19:18 +01:00
2023-07-02 20:01:37 +02:00
if ( ! empty ( $arraydata [ 'member' ]) && is_object ( $arraydata [ 'member' ])) {
2024-05-29 22:19:52 +02:00
$return .= '<br><div class="inline-block tdoverflowmax150">' . $arraydata [ 'member' ] -> getNomUrl ( - 4 ) . '</div>' ;
2022-12-19 15:19:12 +01:00
}
2023-07-02 20:01:37 +02:00
2022-12-19 15:19:12 +01:00
if ( property_exists ( $this , 'amount' )) {
2024-05-29 22:19:52 +02:00
$return .= '<br><span class="amount inline-block">' . price ( $this -> amount ) . '</span>' ;
2023-07-02 20:01:37 +02:00
if ( ! empty ( $arraydata [ 'bank' ])) {
$return .= ' <span class="info-box-label ">' . $arraydata [ 'bank' ] -> getNomUrl ( - 1 ) . '</span>' ;
}
2022-12-19 15:19:12 +01:00
}
$return .= '</div>' ;
$return .= '</div>' ;
$return .= '</div>' ;
return $return ;
}
2003-09-01 00:05:54 +02:00
}