Début gestion des remises et avoirs sur les propals suivant le meme model que les factures
This commit is contained in:
parent
908d9ebee5
commit
56308fc32b
@ -536,6 +536,7 @@ if ($_GET['propalid'] > 0)
|
|||||||
|
|
||||||
print '<table class="border" width="100%">';
|
print '<table class="border" width="100%">';
|
||||||
|
|
||||||
|
// Ref
|
||||||
print '<tr><td>'.$langs->trans('Ref').'</td><td colspan="5">'.$propal->ref_url.'</td></tr>';
|
print '<tr><td>'.$langs->trans('Ref').'</td><td colspan="5">'.$propal->ref_url.'</td></tr>';
|
||||||
|
|
||||||
$rowspan=9;
|
$rowspan=9;
|
||||||
@ -561,7 +562,7 @@ if ($_GET['propalid'] > 0)
|
|||||||
if ($conf->projet->enabled) $rowspan++;
|
if ($conf->projet->enabled) $rowspan++;
|
||||||
|
|
||||||
// Notes
|
// Notes
|
||||||
print '<td valign="top" colspan="2" width="50%" rowspan="'.$rowspan.'">'.$langs->trans('Note').' :<br>'. nl2br($propal->note).'</td>';
|
print '<td valign="top" colspan="2" width="50%" rowspan="'.$rowspan.'">'.$langs->trans('NotePublic').' :<br>'. nl2br($propal->note_public).'</td>';
|
||||||
print '</tr>';
|
print '</tr>';
|
||||||
|
|
||||||
// Date fin propal
|
// Date fin propal
|
||||||
@ -729,7 +730,7 @@ if ($_GET['propalid'] > 0)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Remise globale
|
// Remise globale
|
||||||
/*
|
/* TODO Remise a mettre sur meme principe que factures
|
||||||
print '<tr><td>';
|
print '<tr><td>';
|
||||||
print '<table class="nobordernopadding" width="100%"><tr><td>';
|
print '<table class="nobordernopadding" width="100%"><tr><td>';
|
||||||
print $langs->trans('GlobalDiscount');
|
print $langs->trans('GlobalDiscount');
|
||||||
|
|||||||
@ -104,8 +104,12 @@ if ($propalid > 0)
|
|||||||
if ($propal->fetch($propalid))
|
if ($propal->fetch($propalid))
|
||||||
{
|
{
|
||||||
$propref = sanitize_string($propal->ref);
|
$propref = sanitize_string($propal->ref);
|
||||||
|
|
||||||
$upload_dir = $conf->propal->dir_output.'/'.$propref;
|
$upload_dir = $conf->propal->dir_output.'/'.$propref;
|
||||||
|
|
||||||
|
$societe = new Societe($db);
|
||||||
|
$societe->fetch($propal->socidp);
|
||||||
|
|
||||||
$h=0;
|
$h=0;
|
||||||
|
|
||||||
$head[$h][0] = DOL_URL_ROOT.'/comm/propal.php?propalid='.$propal->id;
|
$head[$h][0] = DOL_URL_ROOT.'/comm/propal.php?propalid='.$propal->id;
|
||||||
@ -169,9 +173,26 @@ if ($propalid > 0)
|
|||||||
|
|
||||||
|
|
||||||
print '<table class="border"width="100%">';
|
print '<table class="border"width="100%">';
|
||||||
|
|
||||||
|
// Ref
|
||||||
print '<tr><td width="30%">'.$langs->trans('Ref').'</td><td colspan="3">'.$propal->ref_url.'</td></tr>';
|
print '<tr><td width="30%">'.$langs->trans('Ref').'</td><td colspan="3">'.$propal->ref_url.'</td></tr>';
|
||||||
|
|
||||||
|
// Société
|
||||||
|
print '<tr><td>'.$langs->trans('Company').'</td><td colspan="5">';
|
||||||
|
if ($societe->client == 1)
|
||||||
|
{
|
||||||
|
$url ='fiche.php?socid='.$societe->id;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$url = DOL_URL_ROOT.'/comm/prospect/fiche.php?socid='.$societe->id;
|
||||||
|
}
|
||||||
|
print '<a href="'.$url.'">'.$societe->nom.'</a></td>';
|
||||||
|
print '</tr>';
|
||||||
|
|
||||||
print '<tr><td>'.$langs->trans("NbOfAttachedFiles").'</td><td colspan="3">'.sizeof($filearray).'</td></tr>';
|
print '<tr><td>'.$langs->trans("NbOfAttachedFiles").'</td><td colspan="3">'.sizeof($filearray).'</td></tr>';
|
||||||
print '<tr><td>'.$langs->trans("TotalSizeOfAttachedFiles").'</td><td colspan="3">'.$totalsize.' '.$langs->trans("bytes").'</td></tr>';
|
print '<tr><td>'.$langs->trans("TotalSizeOfAttachedFiles").'</td><td colspan="3">'.$totalsize.' '.$langs->trans("bytes").'</td></tr>';
|
||||||
|
|
||||||
print '</table>';
|
print '</table>';
|
||||||
|
|
||||||
print '</div>';
|
print '</div>';
|
||||||
|
|||||||
@ -143,26 +143,29 @@ if ($_GET['propalid'])
|
|||||||
|
|
||||||
print '<table class="border" width="100%">';
|
print '<table class="border" width="100%">';
|
||||||
|
|
||||||
print '<tr><td>'.$langs->trans('Ref').'</td><td colspan="3">'.$propal->ref_url.'</td></tr>';
|
print '<tr><td width="25%">'.$langs->trans('Ref').'</td><td colspan="3">'.$propal->ref_url.'</td></tr>';
|
||||||
|
|
||||||
print '<tr><td>'.$langs->trans('Company').'</td><td>';
|
// Société
|
||||||
|
print '<tr><td>'.$langs->trans('Company').'</td><td colspan="5">';
|
||||||
if ($societe->client == 1)
|
if ($societe->client == 1)
|
||||||
{
|
{
|
||||||
$url = DOL_URL_ROOT.'/comm/fiche.php?socid='.$societe->id;
|
$url ='fiche.php?socid='.$societe->id;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$url = DOL_URL_ROOT.'/comm/prospect/fiche.php?socid='.$societe->id;
|
$url = DOL_URL_ROOT.'/comm/prospect/fiche.php?socid='.$societe->id;
|
||||||
}
|
}
|
||||||
print '<a href="'.$url.'">'.$societe->nom.'</a></td>';
|
print '<a href="'.$url.'">'.$societe->nom.'</a></td>';
|
||||||
print '<td align="left" width="25%">Conditions de réglement</td>';
|
|
||||||
print '<td width="25%">'.' '.'</td>';
|
|
||||||
print '</tr>';
|
print '</tr>';
|
||||||
|
|
||||||
|
// Date
|
||||||
print '<tr><td>'.$langs->trans('Date').'</td><td>';
|
print '<tr><td>'.$langs->trans('Date').'</td><td>';
|
||||||
print dolibarr_print_date($propal->date,'%a %d %B %Y');
|
print dolibarr_print_date($propal->date,'%a %d %B %Y');
|
||||||
print '</td>';
|
print '</td>';
|
||||||
|
print '</tr>';
|
||||||
|
|
||||||
|
// Date fin propal
|
||||||
|
print '<tr>';
|
||||||
print '<td>'.$langs->trans('DateEndPropal').'</td><td>';
|
print '<td>'.$langs->trans('DateEndPropal').'</td><td>';
|
||||||
if ($propal->fin_validite)
|
if ($propal->fin_validite)
|
||||||
{
|
{
|
||||||
|
|||||||
@ -175,9 +175,10 @@ if ($_GET["propalid"] > 0)
|
|||||||
|
|
||||||
print '<table class="border" width="100%">';
|
print '<table class="border" width="100%">';
|
||||||
|
|
||||||
|
// Ref
|
||||||
print '<tr><td>'.$langs->trans('Ref').'</td><td colspan="5">'.$propal->ref_url.'</td></tr>';
|
print '<tr><td>'.$langs->trans('Ref').'</td><td colspan="5">'.$propal->ref_url.'</td></tr>';
|
||||||
|
|
||||||
$rowspan=6;
|
$rowspan=9;
|
||||||
|
|
||||||
// Société
|
// Société
|
||||||
print '<tr><td>'.$langs->trans('Company').'</td><td colspan="5">';
|
print '<tr><td>'.$langs->trans('Company').'</td><td colspan="5">';
|
||||||
@ -197,7 +198,15 @@ if ($_GET["propalid"] > 0)
|
|||||||
print dolibarr_print_date($propal->date,'%a %d %B %Y');
|
print dolibarr_print_date($propal->date,'%a %d %B %Y');
|
||||||
print '</td>';
|
print '</td>';
|
||||||
|
|
||||||
print '<td>'.$langs->trans('DateEndPropal').'</td><td>';
|
if ($conf->projet->enabled) $rowspan++;
|
||||||
|
|
||||||
|
// Note
|
||||||
|
print '<td valign="top" colspan="2" width="50%" rowspan="'.$rowspan.'">'.$langs->trans('NotePublic').' :<br>'. nl2br($propal->note_public).'</td>';
|
||||||
|
print '</tr>';
|
||||||
|
|
||||||
|
// Date fin propal
|
||||||
|
print '<tr>';
|
||||||
|
print '<td>'.$langs->trans('DateEndPropal').'</td><td colspan="3">';
|
||||||
if ($propal->fin_validite)
|
if ($propal->fin_validite)
|
||||||
{
|
{
|
||||||
print dolibarr_print_date($propal->fin_validite,'%a %d %B %Y');
|
print dolibarr_print_date($propal->fin_validite,'%a %d %B %Y');
|
||||||
@ -227,13 +236,16 @@ if ($_GET["propalid"] > 0)
|
|||||||
$html->form_conditions_reglement($_SERVER['PHP_SELF'].'?propalid='.$propal->id,$propal->cond_reglement_id,'none');
|
$html->form_conditions_reglement($_SERVER['PHP_SELF'].'?propalid='.$propal->id,$propal->cond_reglement_id,'none');
|
||||||
}
|
}
|
||||||
print '</td>';
|
print '</td>';
|
||||||
|
|
||||||
|
// Mode de paiement
|
||||||
|
print '<tr>';
|
||||||
print '<td width="25%">';
|
print '<td width="25%">';
|
||||||
print '<table class="nobordernopadding" width="100%"><tr><td>';
|
print '<table class="nobordernopadding" width="100%"><tr><td>';
|
||||||
print $langs->trans('PaymentMode');
|
print $langs->trans('PaymentMode');
|
||||||
print '</td>';
|
print '</td>';
|
||||||
if ($_GET['action'] != 'editmode' && $propal->brouillon) print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editmode&facid='.$propal->id.'">'.img_edit($langs->trans('SetMode'),1).'</a></td>';
|
if ($_GET['action'] != 'editmode' && $propal->brouillon) print '<td align="right"><a href="'.$_SERVER["PHP_SELF"].'?action=editmode&facid='.$propal->id.'">'.img_edit($langs->trans('SetMode'),1).'</a></td>';
|
||||||
print '</tr></table>';
|
print '</tr></table>';
|
||||||
print '</td><td width="25%">';
|
print '</td><td colspan="3">';
|
||||||
if ($_GET['action'] == 'editmode')
|
if ($_GET['action'] == 'editmode')
|
||||||
{
|
{
|
||||||
$html->form_modes_reglement($_SERVER['PHP_SELF'].'?propalid='.$propal->id,$propal->mode_reglement_id,'mode_reglement_id');
|
$html->form_modes_reglement($_SERVER['PHP_SELF'].'?propalid='.$propal->id,$propal->mode_reglement_id,'mode_reglement_id');
|
||||||
@ -249,51 +261,25 @@ if ($_GET["propalid"] > 0)
|
|||||||
print '<tr>';
|
print '<tr>';
|
||||||
print '<td>'.$langs->trans('MailTo').'</td>';
|
print '<td>'.$langs->trans('MailTo').'</td>';
|
||||||
|
|
||||||
$dests=$societe->contact_array($societe->id);
|
if ($propal->statut == 0 && $user->rights->propale->creer)
|
||||||
$numdest = count($dests);
|
|
||||||
if ($numdest==0)
|
|
||||||
{
|
{
|
||||||
print '<td colspan="3">';
|
print '<td colspan="3">';
|
||||||
print '<font class="error">Cette societe n\'a pas de contact, veuillez en créer un avant de faire votre proposition commerciale</font><br>';
|
$html->select_contacts($societe->id, $propal->contactid, 'none');
|
||||||
print '<a href="'.DOL_URL_ROOT.'/contact/fiche.php?socid='.$societe->id.'&action=create&backtoreferer=1">'.$langs->trans('AddContact').'</a>';
|
|
||||||
print '</td>';
|
print '</td>';
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if ($propal->statut == 0 && $user->rights->propale->creer)
|
if (!empty($propal->contactid))
|
||||||
{
|
{
|
||||||
print '<td colspan="3">';
|
print '<td colspan="3">';
|
||||||
// print '<form action="propal.php?propalid='.$propal->id.'" method="post">';
|
$html->form_contacts($_SERVER['PHP_SELF'].'?propalid='.$propal->id,$societe,$propal->contactid,'none');
|
||||||
// print '<input type="hidden" name="action" value="set_contact">';
|
|
||||||
$html->select_contacts($societe->id, $propal->contactid, 'none');
|
|
||||||
// print '</td><td>';
|
|
||||||
// print '<input type="submit" class="button" value="'.$langs->trans('Modify').'">';
|
|
||||||
// print '</form>';
|
|
||||||
print '</td>';
|
print '</td>';
|
||||||
}
|
}
|
||||||
else
|
else {
|
||||||
{
|
print '<td colspan="3"> </td>';
|
||||||
if (!empty($propal->contactid))
|
|
||||||
{
|
|
||||||
print '<td colspan="3">';
|
|
||||||
require_once(DOL_DOCUMENT_ROOT.'/contact.class.php');
|
|
||||||
$contact=new Contact($db);
|
|
||||||
$contact->fetch($propal->contactid);
|
|
||||||
print '<a href="'.DOL_URL_ROOT.'/contact/fiche.php?id='.$propal->contactid.'" title="'.$langs->trans('ShowContact').'">';
|
|
||||||
print $contact->firstname.' '.$contact->name;
|
|
||||||
print '</a>';
|
|
||||||
print '</td>';
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
print '<td colspan="3"> </td>';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($conf->projet->enabled) $rowspan++;
|
|
||||||
|
|
||||||
print '<td valign="top" colspan="2" width="50%" rowspan="'.$rowspan.'">'.$langs->trans('Note').' :<br>'. nl2br($propal->note).'</td></tr>';
|
|
||||||
|
|
||||||
// Projet
|
// Projet
|
||||||
if ($conf->projet->enabled)
|
if ($conf->projet->enabled)
|
||||||
{
|
{
|
||||||
@ -312,12 +298,7 @@ if ($_GET["propalid"] > 0)
|
|||||||
if ($propal->statut == 0 && $user->rights->propale->creer)
|
if ($propal->statut == 0 && $user->rights->propale->creer)
|
||||||
{
|
{
|
||||||
print '<td colspan="3">';
|
print '<td colspan="3">';
|
||||||
// print '<form action="propal.php?propalid='.$propal->id.'" method="post">';
|
|
||||||
// print '<input type="hidden" name="action" value="set_project">';
|
|
||||||
$html->select_projects($societe->id, $propal->projetidp, 'projetidp');
|
$html->select_projects($societe->id, $propal->projetidp, 'projetidp');
|
||||||
// print '</td><td>';
|
|
||||||
// print '<input type="submit" class="button" value="'.$langs->trans('Modify').'">';
|
|
||||||
// print '</form>';
|
|
||||||
print '</td>';
|
print '</td>';
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -341,24 +322,19 @@ if ($_GET["propalid"] > 0)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Remise globale
|
// Remise globale
|
||||||
|
/* TODO Remise a mettre sur meme principe que factures
|
||||||
print '<tr><td height="10" nowrap>'.$langs->trans('GlobalDiscount').'</td>';
|
print '<tr><td height="10" nowrap>'.$langs->trans('GlobalDiscount').'</td>';
|
||||||
if ($propal->brouillon == 1 && $user->rights->propale->creer)
|
if ($propal->brouillon == 1 && $user->rights->propale->creer)
|
||||||
{
|
{
|
||||||
// print '<form action="propal.php?propalid='.$propal->id.'" method="post">';
|
|
||||||
// print '<input type="hidden" name="action" value="setremise">';
|
|
||||||
print '<td colspan="3">'.$propal->remise_percent.'%';
|
print '<td colspan="3">'.$propal->remise_percent.'%';
|
||||||
// print '</td><td>';
|
|
||||||
// print '<input type="submit" class="button" value="'.$langs->trans('Modify').'">';
|
|
||||||
// print ' <a href="propal/aideremise.php?propalid='.$propal->id.'">?</a>';
|
|
||||||
print '</td>';
|
print '</td>';
|
||||||
// print '</form>';
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
print '<td colspan="3">'.$propal->remise_percent.'%</td>';
|
print '<td colspan="3">'.$propal->remise_percent.'%</td>';
|
||||||
}
|
}
|
||||||
print '</tr>';
|
print '</tr>';
|
||||||
|
*/
|
||||||
print '<tr><td height="10">'.$langs->trans('AmountHT').'</td>';
|
print '<tr><td height="10">'.$langs->trans('AmountHT').'</td>';
|
||||||
print '<td align="right" colspan="2"><b>'.price($propal->price).'</b></td>';
|
print '<td align="right" colspan="2"><b>'.price($propal->price).'</b></td>';
|
||||||
print '<td>'.$langs->trans("Currency".$conf->monnaie).'</td></tr>';
|
print '<td>'.$langs->trans("Currency".$conf->monnaie).'</td></tr>';
|
||||||
@ -368,6 +344,7 @@ if ($_GET["propalid"] > 0)
|
|||||||
print '<tr><td height="10">'.$langs->trans('AmountTTC').'</td><td align="right" colspan="2">'.price($propal->total_ttc).'</td>';
|
print '<tr><td height="10">'.$langs->trans('AmountTTC').'</td><td align="right" colspan="2">'.price($propal->total_ttc).'</td>';
|
||||||
print '<td>'.$langs->trans("Currency".$conf->monnaie).'</td></tr>';
|
print '<td>'.$langs->trans("Currency".$conf->monnaie).'</td></tr>';
|
||||||
|
|
||||||
|
|
||||||
// Statut
|
// Statut
|
||||||
print '<tr><td height="10">'.$langs->trans('Status').'</td><td align="left" colspan="3">'.$propal->getLibStatut(4).'</td></tr>';
|
print '<tr><td height="10">'.$langs->trans('Status').'</td><td align="left" colspan="3">'.$propal->getLibStatut(4).'</td></tr>';
|
||||||
print '</table><br>';
|
print '</table><br>';
|
||||||
|
|||||||
@ -54,14 +54,15 @@ class Propal
|
|||||||
var $remise;
|
var $remise;
|
||||||
var $products;
|
var $products;
|
||||||
var $products_qty;
|
var $products_qty;
|
||||||
var $note;
|
var $price;
|
||||||
var $price;
|
|
||||||
var $status;
|
var $status;
|
||||||
var $fin_validite;
|
var $fin_validite;
|
||||||
var $cond_reglement_id;
|
var $cond_reglement_id;
|
||||||
var $cond_reglement_code;
|
var $cond_reglement_code;
|
||||||
var $mode_reglement_id;
|
var $mode_reglement_id;
|
||||||
var $mode_reglement_code;
|
var $mode_reglement_code;
|
||||||
|
var $note;
|
||||||
|
var $note_public;
|
||||||
|
|
||||||
var $labelstatut=array();
|
var $labelstatut=array();
|
||||||
var $labelstatut_short=array();
|
var $labelstatut_short=array();
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user