29require
'../../main.inc.php';
30require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
31require_once DOL_DOCUMENT_ROOT.
'/comm/propal/class/propal.class.php';
32require_once DOL_DOCUMENT_ROOT.
'/core/lib/propal.lib.php';
36$hookmanager->initHooks(array(
'proposalindex'));
39$langs->loadLangs(array(
'propal',
'companies'));
46if (isset($user->socid) && $user->socid > 0) {
48 $socid = $user->socid;
58$propalstatic =
new Propal($db);
59$companystatic =
new Societe($db);
62$help_url =
"EN:Module_Commercial_Proposals|FR:Module_Propositions_commerciales|ES:Módulo_Presupuestos";
64llxHeader(
"", $langs->trans(
"ProspectionArea"), $help_url);
68print
'<div class="fichecenter">';
69print
'<div class="fichethirdleft">';
80if (isModEnabled(
"propal")) {
81 $sql =
"SELECT p.rowid, p.ref, p.ref_client, p.total_ht, p.total_tva, p.total_ttc";
82 $sql .=
", s.rowid as socid, s.nom as name, s.client, s.canvas, s.code_client, s.code_fournisseur, s.email, s.entity, s.code_compta";
83 $sql .=
" FROM ".MAIN_DB_PREFIX.
"propal as p";
84 $sql .=
", ".MAIN_DB_PREFIX.
"societe as s";
85 $sql .=
" WHERE p.entity IN (".getEntity($propalstatic->element).
")";
86 $sql .=
" AND p.fk_soc = s.rowid";
87 $sql .=
" AND p.fk_statut =".Propal::STATUS_DRAFT;
90 if (!$user->hasRight(
'societe',
'client',
'voir')) {
91 $search_sale = $user->id;
94 if ($search_sale && $search_sale !=
'-1') {
95 if ($search_sale == -2) {
96 $sql .=
" AND NOT EXISTS (SELECT sc.fk_soc FROM ".MAIN_DB_PREFIX.
"societe_commerciaux as sc WHERE sc.fk_soc = p.fk_soc)";
97 } elseif ($search_sale > 0) {
98 $sql .=
" AND EXISTS (SELECT sc.fk_soc FROM ".MAIN_DB_PREFIX.
"societe_commerciaux as sc WHERE sc.fk_soc = p.fk_soc AND sc.fk_user = ".((int) $search_sale).
")";
103 $sql .=
" AND p.fk_soc = ".((int) $socid);
106 $resql = $db->query($sql);
108 $num = $db->num_rows($resql);
109 $nbofloop = min($num, (!
getDolGlobalString(
'MAIN_MAXLIST_OVERLOAD') ? 500 : $conf->global->MAIN_MAXLIST_OVERLOAD));
116 while ($i < $nbofloop) {
117 $obj = $db->fetch_object($resql);
119 $propalstatic->id = $obj->rowid;
120 $propalstatic->ref = $obj->ref;
121 $propalstatic->ref_client = $obj->ref_client;
122 $propalstatic->total_ht = $obj->total_ht;
123 $propalstatic->total_tva = $obj->total_tva;
124 $propalstatic->total_ttc = $obj->total_ttc;
126 $companystatic->id = $obj->socid;
127 $companystatic->name = $obj->name;
128 $companystatic->client = $obj->client;
129 $companystatic->code_client = $obj->code_client;
130 $companystatic->code_fournisseur = $obj->code_fournisseur;
131 $companystatic->canvas = $obj->canvas;
132 $companystatic->entity = $obj->entity;
133 $companystatic->email = $obj->email;
134 $companystatic->code_compta = $obj->code_compta;
136 print
'<tr class="oddeven">';
137 print
'<td class="nowrap">'.$propalstatic->getNomUrl(1).
'</td>';
138 print
'<td class="nowrap">'.$companystatic->getNomUrl(1,
'customer', 16).
'</td>';
139 print
'<td class="nowrap right">'.price(
getDolGlobalString(
'MAIN_DASHBOARD_USE_TOTAL_HT') ? $obj->total_ht : $obj->total_ttc).
'</td>';
143 $total += (
getDolGlobalString(
'MAIN_DASHBOARD_USE_TOTAL_HT') ? $obj->total_ht : $obj->total_ttc);
157print
'<div class="fichetwothirdright">';
163$sql =
"SELECT c.rowid, c.entity, c.ref, c.fk_statut as status, date_cloture as datec, c.tms as datem,";
164$sql .=
" s.nom as socname, s.rowid as socid, s.canvas, s.client, s.email, s.code_compta";
165$sql .=
" FROM ".MAIN_DB_PREFIX.
"propal as c,";
166$sql .=
" ".MAIN_DB_PREFIX.
"societe as s";
167$sql .=
" WHERE c.entity IN (".getEntity($propalstatic->element).
")";
168$sql .=
" AND c.fk_soc = s.rowid";
171if (!$user->hasRight(
'societe',
'client',
'voir')) {
172 $search_sale = $user->id;
175if ($search_sale && $search_sale !=
'-1') {
176 if ($search_sale == -2) {
177 $sql .=
" AND NOT EXISTS (SELECT sc.fk_soc FROM ".MAIN_DB_PREFIX.
"societe_commerciaux as sc WHERE sc.fk_soc = c.fk_soc)";
178 } elseif ($search_sale > 0) {
179 $sql .=
" AND EXISTS (SELECT sc.fk_soc FROM ".MAIN_DB_PREFIX.
"societe_commerciaux as sc WHERE sc.fk_soc = c.fk_soc AND sc.fk_user = ".((int) $search_sale).
")";
184 $sql .=
" AND c.fk_soc = ".((int) $socid);
186$sql .=
" ORDER BY c.tms DESC";
188$sql .= $db->plimit($max, 0);
190$resql = $db->query($sql);
192 $num = $db->num_rows($resql);
194 startSimpleTable($langs->trans(
"LastModifiedProposals", $max),
"comm/propal/list.php",
"sortfield=p.tms&sortorder=DESC", 2, -1,
'propal');
199 $obj = $db->fetch_object($resql);
201 $propalstatic->id = $obj->rowid;
202 $propalstatic->ref = $obj->ref;
204 $companystatic->id = $obj->socid;
205 $companystatic->name = $obj->socname;
206 $companystatic->client = $obj->client;
207 $companystatic->canvas = $obj->canvas;
208 $companystatic->email = $obj->email;
209 $companystatic->code_compta = $obj->code_compta;
213 $urlsource = $_SERVER[
'PHP_SELF'].
'?id='.$obj->rowid;
215 print
'<tr class="oddeven">';
217 print
'<td class="nowrap">';
218 print
'<table class="nobordernopadding">';
219 print
'<tr class="nocellnopadd">';
220 print
'<td width="96" class="nobordernopadding nowrap">'.$propalstatic->getNomUrl(1).
'</td>';
221 print
'<td width="16" class="nobordernopadding nowrap"></td>';
222 print
'<td width="16" class="nobordernopadding right">'.$formfile->getDocumentsLink($propalstatic->element, $filename, $filedir).
'</td>';
227 print
'<td>'.$companystatic->getNomUrl(1,
'customer').
'</td>';
229 $datem = $db->jdate($obj->datem);
230 print
'<td class="center" title="'.dol_escape_htmltag($langs->trans(
"DateModification").
': '.
dol_print_date($datem,
'dayhour',
'tzuserrel')).
'">';
234 print
'<td class="right">'.$propalstatic->LibStatut($obj->status, 3).
'</td>';
252if (isModEnabled(
"propal") && $user->hasRight(
'propal',
'lire')) {
253 $sql =
"SELECT s.nom as socname, s.rowid as socid, s.canvas, s.client, s.email, s.code_compta";
254 $sql .=
", p.rowid as propalid, p.entity, p.total_ttc, p.total_ht, p.ref, p.fk_statut, p.datep as dp, p.fin_validite as dfv";
255 $sql .=
" FROM ".MAIN_DB_PREFIX.
"societe as s";
256 $sql .=
", ".MAIN_DB_PREFIX.
"propal as p";
257 $sql .=
" WHERE p.fk_soc = s.rowid";
258 $sql .=
" AND p.entity IN (".getEntity($propalstatic->element).
")";
259 $sql .=
" AND p.fk_statut = ".Propal::STATUS_VALIDATED;
262 if (!$user->hasRight(
'societe',
'client',
'voir')) {
263 $search_sale = $user->id;
266 if ($search_sale && $search_sale !=
'-1') {
267 if ($search_sale == -2) {
268 $sql .=
" AND NOT EXISTS (SELECT sc.fk_soc FROM ".MAIN_DB_PREFIX.
"societe_commerciaux as sc WHERE sc.fk_soc = p.fk_soc)";
269 } elseif ($search_sale > 0) {
270 $sql .=
" AND EXISTS (SELECT sc.fk_soc FROM ".MAIN_DB_PREFIX.
"societe_commerciaux as sc WHERE sc.fk_soc = p.fk_soc AND sc.fk_user = ".((int) $search_sale).
")";
275 $sql .=
" AND p.fk_soc = ".((int) $socid);
277 $sql .=
" ORDER BY p.rowid DESC";
279 $resql = $db->query($sql);
282 $num = $db->num_rows($resql);
283 $nbofloop = min($num, (!
getDolGlobalString(
'MAIN_MAXLIST_OVERLOAD') ? 500 : $conf->global->MAIN_MAXLIST_OVERLOAD));
288 while ($i < $nbofloop) {
289 $obj = $db->fetch_object($resql);
291 $propalstatic->id = $obj->propalid;
292 $propalstatic->ref = $obj->ref;
294 $companystatic->id = $obj->socid;
295 $companystatic->name = $obj->socname;
296 $companystatic->client = $obj->client;
297 $companystatic->canvas = $obj->canvas;
298 $companystatic->email = $obj->email;
299 $companystatic->code_compta = $obj->code_compta;
303 $urlsource = $_SERVER[
'PHP_SELF'].
'?id='.$obj->propalid;
305 $warning = ($db->jdate($obj->dfv) < ($now - $conf->propal->cloture->warning_delay)) ?
img_warning($langs->trans(
"Late")) :
'';
307 print
'<tr class="oddeven">';
310 print
'<td class="nowrap" width="140">';
311 print
'<table class="nobordernopadding">';
312 print
'<tr class="nocellnopadd">';
313 print
'<td class="nobordernopadding nowrap">'.$propalstatic->getNomUrl(1).
'</td>';
314 print
'<td width="18" class="nobordernopadding nowrap">'.$warning.
'</td>';
315 print
'<td width="16" align="center" class="nobordernopadding">'.$formfile->getDocumentsLink($propalstatic->element, $filename, $filedir).
'</td>';
320 print
'<td class="tdoverflowmax150">'.$companystatic->getNomUrl(1,
'customer', 44).
'</td>';
321 print
'<td class="right">'.dol_print_date($db->jdate($obj->dp),
'day').
'</td>';
322 print
'<td class="right">'.price(
getDolGlobalString(
'MAIN_DASHBOARD_USE_TOTAL_HT') ? $obj->total_ht : $obj->total_ttc).
'</td>';
323 print
'<td align="center" width="14">'.$propalstatic->LibStatut($obj->fk_statut, 3).
'</td>';
328 $total += (
getDolGlobalString(
'MAIN_DASHBOARD_USE_TOTAL_HT') ? $obj->total_ht : $obj->total_ttc);
343$parameters = array(
'user' => $user);
344$reshook = $hookmanager->executeHooks(
'dashboardPropals', $parameters, $object);
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Class to manage proposals.
const STATUS_DRAFT
Draft status.
const STATUS_VALIDATED
Validated status.
Class to manage third parties objects (customers, suppliers, prospects...)
finishSimpleTable($addLineBreak=false)
Add the correct HTML close tags for "startSimpleTable(...)" (use after the last table line)
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
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).
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
addSummaryTableLine($tableColumnCount, $num, $nbofloop=0, $total=0, $noneWord="None", $extraRightColumn=false)
Add a summary line to the current open table ("None", "XMoreLines" or "Total xxx")
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
startSimpleTable($header, $link="", $arguments="", $emptyColumns=0, $number=-1, $pictofulllist='')
Start a table with headers and a optional clickable number (don't forget to use "finishSimpleTable()"...
getCustomerProposalPieChart($socid=0)
Return a HTML table that contains a pie chart of customer proposals.
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.