Trad: Et encore de la traduction
This commit is contained in:
parent
c2c9c328fa
commit
698d5de5c0
@ -21,7 +21,8 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/** \file htdocs/comm/prospect/fiche.php
|
/**
|
||||||
|
\file htdocs/comm/prospect/fiche.php
|
||||||
\ingroup prospect
|
\ingroup prospect
|
||||||
\brief Page de la fiche prospect
|
\brief Page de la fiche prospect
|
||||||
\version $Revision$
|
\version $Revision$
|
||||||
@ -32,6 +33,8 @@ require("../../contact.class.php");
|
|||||||
require("../../actioncomm.class.php");
|
require("../../actioncomm.class.php");
|
||||||
|
|
||||||
$langs->load('companies');
|
$langs->load('companies');
|
||||||
|
$langs->load('projects');
|
||||||
|
$langs->load('propal');
|
||||||
|
|
||||||
$user->getrights('propale');
|
$user->getrights('propale');
|
||||||
$user->getrights('fichinter');
|
$user->getrights('fichinter');
|
||||||
@ -157,16 +160,15 @@ if ($socid > 0)
|
|||||||
print '<tr><td>'.$langs->trans("Status").'</td><td colspan="2">'.$societe->statut_commercial.'</td>';
|
print '<tr><td>'.$langs->trans("Status").'</td><td colspan="2">'.$societe->statut_commercial.'</td>';
|
||||||
print '<td> ';
|
print '<td> ';
|
||||||
print '<a href="fiche.php?id='.$societe->id.'&stcomm=-1&action=cstc">';
|
print '<a href="fiche.php?id='.$societe->id.'&stcomm=-1&action=cstc">';
|
||||||
print '<img align="absmiddle" src="'.DOL_URL_ROOT.'/theme/'.MAIN_THEME.'/img/stcomm-1.png" border="0" alt="Ne pas contacter" title="Ne pas contacter">';
|
print img_action(0,-1);
|
||||||
print '</a> <a href="fiche.php?id='.$societe->id.'&stcomm=0&action=cstc">';
|
print '</a> <a href="fiche.php?id='.$societe->id.'&stcomm=0&action=cstc">';
|
||||||
print '<img align="absmiddle" src="'.DOL_URL_ROOT.'/theme/'.MAIN_THEME.'/img/stcomm0.png" border="0" alt="Jamais contactée" title="Jamais contactée">';
|
print img_action(0,0);
|
||||||
print '</a> <a href="fiche.php?id='.$societe->id.'&stcomm=1&action=cstc">';
|
print '</a> <a href="fiche.php?id='.$societe->id.'&stcomm=1&action=cstc">';
|
||||||
print '<img align="absmiddle" src="'.DOL_URL_ROOT.'/theme/'.MAIN_THEME.'/img/stcomm1.png" border="0" alt="A contacter" title="A contacter">';
|
print img_action(0,1);
|
||||||
print '</a> <a href="fiche.php?id='.$societe->id.'&stcomm=2&action=cstc">';
|
print '</a> <a href="fiche.php?id='.$societe->id.'&stcomm=2&action=cstc">';
|
||||||
print '<img align="absmiddle" src="'.DOL_URL_ROOT.'/theme/'.MAIN_THEME.'/img/stcomm2.png" border="0" alt="Contact en cours" title="Contact en cours">';
|
print img_action(0,2);
|
||||||
print '</a> <a href="fiche.php?id='.$societe->id.'&stcomm=3&action=cstc">';
|
print '</a> <a href="fiche.php?id='.$societe->id.'&stcomm=3&action=cstc">';
|
||||||
print '<img align="absmiddle" src="'.DOL_URL_ROOT.'/theme/'.MAIN_THEME.'/img/stcomm3.png" border="0" alt="Contactée" title="Contactée">';
|
print img_action(0,3);
|
||||||
|
|
||||||
print '</a>';
|
print '</a>';
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
print "</table><br></div>";
|
print "</table><br></div>";
|
||||||
@ -183,7 +185,7 @@ if ($socid > 0)
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
$var = true;
|
$var = true;
|
||||||
print '<table class="noborder" width="100%">';
|
print '<table class="border" width="100%">';
|
||||||
$sql = "SELECT s.nom, s.idp, p.rowid as propalid, p.price, p.ref, p.remise, ".$db->pdate("p.datep")." as dp, c.label as statut, c.id as statutid";
|
$sql = "SELECT s.nom, s.idp, p.rowid as propalid, p.price, p.ref, p.remise, ".$db->pdate("p.datep")." as dp, c.label as statut, c.id as statutid";
|
||||||
$sql .= " FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."propal as p, ".MAIN_DB_PREFIX."c_propalst as c WHERE p.fk_soc = s.idp AND p.fk_statut = c.id";
|
$sql .= " FROM ".MAIN_DB_PREFIX."societe as s, ".MAIN_DB_PREFIX."propal as p, ".MAIN_DB_PREFIX."c_propalst as c WHERE p.fk_soc = s.idp AND p.fk_statut = c.id";
|
||||||
$sql .= " AND s.idp = $societe->id ORDER BY p.datep DESC";
|
$sql .= " AND s.idp = $societe->id ORDER BY p.datep DESC";
|
||||||
@ -193,7 +195,11 @@ if ($socid > 0)
|
|||||||
$num = $db->num_rows();
|
$num = $db->num_rows();
|
||||||
if ($num >0 )
|
if ($num >0 )
|
||||||
{
|
{
|
||||||
print "<tr $bc[$var]><td colspan=\"4\"><a href=\"../propal.php?socidp=$societe->id\">Liste des propositions commerciales ($num)</td></tr>";
|
print "<tr $bc[$var]><td colspan=\"4\">";
|
||||||
|
print '<table width="100%" class="noborder"><tr><td>'.$langs->trans("LastProposals").'</td>';
|
||||||
|
print '<td align="right"><a href="../propal.php?socidp='.$societe->id.'">'.$langs->trans("AllPropals").' ('.$num.')</a></td>';
|
||||||
|
print '</tr></table>';
|
||||||
|
print '</td></tr>';
|
||||||
$var=!$var;
|
$var=!$var;
|
||||||
}
|
}
|
||||||
$i = 0; $now = time(); $lim = 3600 * 24 * 15 ;
|
$i = 0; $now = time(); $lim = 3600 * 24 * 15 ;
|
||||||
@ -202,15 +208,15 @@ if ($socid > 0)
|
|||||||
$objp = $db->fetch_object();
|
$objp = $db->fetch_object();
|
||||||
print "<tr $bc[$var]>";
|
print "<tr $bc[$var]>";
|
||||||
print "<td><a href=\"../propal.php?propalid=$objp->propalid\">";
|
print "<td><a href=\"../propal.php?propalid=$objp->propalid\">";
|
||||||
print img_file();
|
print img_object($langs->trans("ShowPropal"),"propal");
|
||||||
print "</a> <a href=\"../propal.php?propalid=$objp->propalid\">$objp->ref</a>\n";
|
print " $objp->ref</a>\n";
|
||||||
if ( ($now - $objp->dp) > $lim && $objp->statutid == 1 )
|
if ( ($now - $objp->dp) > $lim && $objp->statutid == 1 )
|
||||||
{
|
{
|
||||||
print " <b>> 15 jours</b>";
|
print " <b>> 15 jours</b>";
|
||||||
}
|
}
|
||||||
print "</td><td align=\"right\">".strftime("%d %B %Y",$objp->dp)."</TD>\n";
|
print "</td><td align=\"right\">".strftime("%d %B %Y",$objp->dp)."</td>\n";
|
||||||
print "<td align=\"right\">".price($objp->price)."</TD>\n";
|
print "<td align=\"right\">".price($objp->price)."</td>\n";
|
||||||
print "<td align=\"center\">$objp->statut</TD></tr>\n";
|
print "<td align=\"center\">$objp->statut</td></tr>\n";
|
||||||
$var=!$var;
|
$var=!$var;
|
||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
@ -375,8 +381,8 @@ if ($socid > 0)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
print '<a href="'.DOL_URL_ROOT.'/comm/action/fiche.php?id='.$obj->id.'">'.img_file().'</a> ';
|
print '<a href="'.DOL_URL_ROOT.'/comm/action/fiche.php?id='.$obj->id.'">'.img_object($langs->trans("ShowAction"),"task").' ';
|
||||||
print '<a href="'.DOL_URL_ROOT.'/comm/action/fiche.php?id='.$obj->id.'">'.$obj->libelle.'</a>';
|
print $obj->libelle.'</a>';
|
||||||
}
|
}
|
||||||
print '</td>';
|
print '</td>';
|
||||||
|
|
||||||
|
|||||||
@ -246,7 +246,7 @@ if ( $db->query($sql) )
|
|||||||
$obj = $db->fetch_object();
|
$obj = $db->fetch_object();
|
||||||
$var=!$var;
|
$var=!$var;
|
||||||
print "<tr $bc[$var]><td width=\"12%\"><a href=\"".DOL_URL_ROOT."/comm/prospect/fiche.php?id=".$obj->idp."\">";
|
print "<tr $bc[$var]><td width=\"12%\"><a href=\"".DOL_URL_ROOT."/comm/prospect/fiche.php?id=".$obj->idp."\">";
|
||||||
print img_object($langs->trans("ShowContact"),"contact");
|
print img_object($langs->trans("ShowCompany"),"company");
|
||||||
print ' '.$obj->nom.'</a></td></tr>';
|
print ' '.$obj->nom.'</a></td></tr>';
|
||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -167,7 +167,7 @@ if ($result)
|
|||||||
print "<td align=\"center\">".$obj->stcomm."</td>";
|
print "<td align=\"center\">".$obj->stcomm."</td>";
|
||||||
print "<td align=\"center\">".dolibarr_print_date($obj->datec)."</td>";
|
print "<td align=\"center\">".dolibarr_print_date($obj->datec)."</td>";
|
||||||
|
|
||||||
$sts = array(-1,0,1,2);
|
$sts = array(-1,0,1,2,3);
|
||||||
print '<td>';
|
print '<td>';
|
||||||
foreach ($sts as $key => $value)
|
foreach ($sts as $key => $value)
|
||||||
{
|
{
|
||||||
|
|||||||
@ -76,5 +76,6 @@ TE_OTHER=Other
|
|||||||
ChangeDoNotContact=Change status to 'Do not contact'
|
ChangeDoNotContact=Change status to 'Do not contact'
|
||||||
ChangeNeverContacted=Change status to 'Never contacted'
|
ChangeNeverContacted=Change status to 'Never contacted'
|
||||||
ChangeToContact=Change status to 'To contact'
|
ChangeToContact=Change status to 'To contact'
|
||||||
|
ChangeContactInProcess=Change status to 'Contact in process'
|
||||||
ChangeContactDone=Change status to 'Contact done'
|
ChangeContactDone=Change status to 'Contact done'
|
||||||
ProspectsByStatus=Prospects by status
|
ProspectsByStatus=Prospects by status
|
||||||
@ -16,6 +16,7 @@ ConfirmDeleteProp=Are you sure you want to delete this commercial proposal ?
|
|||||||
LastPropals=Last %s proposals
|
LastPropals=Last %s proposals
|
||||||
LastClosedProposals=Last %s closed proposals
|
LastClosedProposals=Last %s closed proposals
|
||||||
AllPropals=All proposals
|
AllPropals=All proposals
|
||||||
|
LastProposals=Last proposals
|
||||||
SearchAProposal=Search a proposal
|
SearchAProposal=Search a proposal
|
||||||
ProposalsStatistics=Commercial proposals' statistics
|
ProposalsStatistics=Commercial proposals' statistics
|
||||||
NumberOfProposalsByMonth=Number by month
|
NumberOfProposalsByMonth=Number by month
|
||||||
|
|||||||
@ -76,5 +76,6 @@ TE_OTHER=Autre
|
|||||||
ChangeDoNotContact=Changer statut à 'Ne pas contacter'
|
ChangeDoNotContact=Changer statut à 'Ne pas contacter'
|
||||||
ChangeNeverContacted=Changer statut à 'Jamais contacté'
|
ChangeNeverContacted=Changer statut à 'Jamais contacté'
|
||||||
ChangeToContact=Changer statut à 'A contacter'
|
ChangeToContact=Changer statut à 'A contacter'
|
||||||
ChangeContactDone=Changer statut à 'Contact réalisé
|
ChangeContactInProcess=Changer statut à 'Contact en cours'
|
||||||
|
ChangeContactDone=Changer statut à 'Contact réalisé'
|
||||||
ProspectsByStatus=Prospects par statut
|
ProspectsByStatus=Prospects par statut
|
||||||
@ -16,6 +16,7 @@ ConfirmDeleteProp=Etes-vous s
|
|||||||
LastPropals=Les %s dernieres propales
|
LastPropals=Les %s dernieres propales
|
||||||
LastClosedProposals=Les %s dernières propositions commerciales fermées
|
LastClosedProposals=Les %s dernières propositions commerciales fermées
|
||||||
AllPropals=Toutes les propales
|
AllPropals=Toutes les propales
|
||||||
|
LastProposals=Dernières propositions
|
||||||
SearchAProposal=Rechercher une propale
|
SearchAProposal=Rechercher une propale
|
||||||
ProposalsStatistics=Statistiques des propositions commerciales
|
ProposalsStatistics=Statistiques des propositions commerciales
|
||||||
NumberOfProposalsByMonth=Nombre par mois
|
NumberOfProposalsByMonth=Nombre par mois
|
||||||
|
|||||||
@ -383,9 +383,10 @@ function img_action($alt = "default", $numaction)
|
|||||||
if ($numaction == -1) $alt=$langs->trans("ChangeDoNotContact");
|
if ($numaction == -1) $alt=$langs->trans("ChangeDoNotContact");
|
||||||
if ($numaction == 0) $alt=$langs->trans("ChangeNeverContacted");
|
if ($numaction == 0) $alt=$langs->trans("ChangeNeverContacted");
|
||||||
if ($numaction == 1) $alt=$langs->trans("ChangeToContact");
|
if ($numaction == 1) $alt=$langs->trans("ChangeToContact");
|
||||||
if ($numaction == 2) $alt=$langs->trans("ChangeContactDone");
|
if ($numaction == 2) $alt=$langs->trans("ChangeContactInProcess");
|
||||||
|
if ($numaction == 3) $alt=$langs->trans("ChangeContactDone");
|
||||||
}
|
}
|
||||||
return '<img src="'.DOL_URL_ROOT.'/theme/'.$conf->theme.'/img/stcomm'.$numaction.'.png" border="0" alt="'.$alt.'" title="'.$alt.'">';
|
return '<img align="absmiddle" src="'.DOL_URL_ROOT.'/theme/'.$conf->theme.'/img/stcomm'.$numaction.'.png" border="0" alt="'.$alt.'" title="'.$alt.'">';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user