27require
'../../main.inc.php';
28require_once DOL_DOCUMENT_ROOT.
'/core/lib/member.lib.php';
29require_once DOL_DOCUMENT_ROOT.
'/adherents/class/adherent.class.php';
33$graphheight = round($graphwidth * $mapratio);
39if ($user->socid > 0) {
41 $socid = $user->socid;
50$langs->loadLangs(array(
"companies",
"members"));
59$title = $langs->trans(
"MembersStatisticsByProperties");
60$help_url =
'EN:Module_Services_En|FR:Module_Services|ES:Módulo_Servicios|DE:Modul_Mitglieder';
62llxHeader(
'', $title, $help_url,
'', 0, 0, array(
'https://www.google.com/jsapi'),
'',
'',
'mod-member page-stats_byproperties');
70$sql =
"SELECT COUNT(DISTINCT d.rowid) as nb, COUNT(s.rowid) as nbsubscriptions,";
71$sql .=
" MAX(d.datevalid) as lastdate, MAX(s.dateadh) as lastsubscriptiondate,";
72$sql .=
" d.morphy as code";
73$sql .=
" FROM ".MAIN_DB_PREFIX.
"adherent as d";
74$sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"subscription as s ON s.fk_adherent = d.rowid";
75$sql .=
" WHERE d.entity IN (".getEntity(
'adherent').
")";
76$sql .=
" AND d.statut <> ".Adherent::STATUS_DRAFT;
77$sql .=
" GROUP BY d.morphy";
78$foundphy = $foundmor = 0;
82$resql = $db->query($sql);
84 $num = $db->num_rows($resql);
87 $obj = $db->fetch_object($resql);
89 if ($obj->code ==
'phy') {
92 if ($obj->code ==
'mor') {
96 $data[$obj->code] = array(
'label' => $obj->code,
'nb' => $obj->nb,
'nbsubscriptions' => $obj->nbsubscriptions,
'lastdate' => $db->jdate($obj->lastdate),
'lastsubscriptiondate' => $db->jdate($obj->lastsubscriptiondate));
105$sql =
"SELECT COUNT(DISTINCT d.rowid) as nb, COUNT(s.rowid) as nbsubscriptions,";
106$sql .=
" MAX(d.datevalid) as lastdate, MAX(s.dateadh) as lastsubscriptiondate,";
107$sql .=
" d.morphy as code";
108$sql .=
" FROM ".MAIN_DB_PREFIX.
"adherent as d";
109$sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"subscription as s ON s.fk_adherent = d.rowid";
110$sql .=
" WHERE d.entity IN (".getEntity(
'adherent').
")";
111$sql .=
" AND d.statut >= 1";
112$sql .=
" GROUP BY d.morphy";
113$foundphy = $foundmor = 0;
116dol_syslog(
"Count member still active", LOG_DEBUG);
117$resql = $db->query($sql);
119 $num = $db->num_rows($resql);
122 $obj = $db->fetch_object($resql);
124 if ($obj->code ==
'phy') {
127 if ($obj->code ==
'mor') {
131 $data[$obj->code][
'nbactive'] = $obj->nb;
148 print
'<span class="opacitymedium">'.$langs->trans(
"NoValidatedMemberYet").
'</span><br>';
151 print
'<span class="opacitymedium">'.$langs->trans(
"MembersByNature").
'</span><br>';
156print
'<div class="div-table-responsive">';
158print
'<table class="liste centpercent noborder">';
159print
'<tr class="liste_titre">';
160print
'<th>'.$langs->trans(
"MemberNature").
'</th>';
161print
'<th class="right">'.$langs->trans(
"NbOfMembers").
' <span class="opacitymedium">('.$langs->trans(
"AllTime").
')</span></th>';
162print
'<th class="right">'.$langs->trans(
"NbOfActiveMembers").
'</th>';
163print
'<th class="center">'.$langs->trans(
"LastMemberDate").
'</th>';
164print
'<th class="right">'.$langs->trans(
"NbOfSubscriptions").
'</th>';
165print
'<th class="center">'.$langs->trans(
"LatestSubscriptionDate").
'</th>';
169 $data[] = array(
'label' =>
'phy',
'nb' =>
'0',
'nbactive' =>
'0',
'lastdate' =>
'',
'lastsubscriptiondate' =>
'');
172 $data[] = array(
'label' =>
'mor',
'nb' =>
'0',
'nbactive' =>
'0',
'lastdate' =>
'',
'lastsubscriptiondate' =>
'');
175foreach ($data as $val) {
177 $nbsubscriptions = isset($val[
'nbsubscriptions']) ? $val[
'nbsubscriptions'] : 0;
178 $nbactive = $val[
'nbactive'];
180 print
'<tr class="oddeven">';
181 print
'<td>'.$memberstatic->getmorphylib($val[
'label']).
'</td>';
182 print
'<td class="right">'.$nb.
'</td>';
183 print
'<td class="right">'.$nbactive.
'</td>';
184 print
'<td class="center">'.dol_print_date($val[
'lastdate'],
'dayhour').
'</td>';
185 print
'<td class="right">'.$nbsubscriptions.
'</td>';
186 print
'<td class="center">'.dol_print_date($val[
'lastsubscriptiondate'],
'dayhour').
'</td>';
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Class to manage members of a foundation.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
dol_now($mode='auto')
Return date for now.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
member_stats_prepare_head($object)
Return array head with list of tabs to view object stats information.
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.