27 require
'../../main.inc.php';
28 require_once DOL_DOCUMENT_ROOT.
'/fourn/class/fournisseur.class.php';
29 require_once DOL_DOCUMENT_ROOT.
'/fourn/class/fournisseur.facture.class.php';
30 require_once DOL_DOCUMENT_ROOT.
'/contact/class/contact.class.php';
31 require_once DOL_DOCUMENT_ROOT.
'/core/lib/fourn.lib.php';
32 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
33 if (!empty($conf->projet->enabled)) {
34 require_once DOL_DOCUMENT_ROOT.
'/projet/class/project.class.php';
37 $langs->loadLangs(array(
"bills",
"other",
"companies"));
41 $action =
GETPOST(
'action',
'aZ09');
44 if ($user->socid) $socid = $user->socid;
45 $result =
restrictedArea($user,
'fournisseur', $id,
'facture_fourn',
'facture');
54 if ($action ==
'addcontact' && $user->rights->fournisseur->facture->creer)
56 $result = $object->fetch($id, $ref);
58 if ($result > 0 && $id > 0)
62 $result = $object->add_contact($contactid, $typeid,
GETPOST(
"source",
'aZ09'));
67 header(
"Location: ".
$_SERVER[
'PHP_SELF'].
"?id=".$object->id);
70 if ($object->error ==
'DB_ERROR_RECORD_ALREADY_EXISTS')
72 $langs->load(
"errors");
73 setEventMessages($langs->trans(
"ErrorThisContactIsAlreadyDefinedAsThisType"), null,
'errors');
81 elseif ($action ==
'swapstatut' && $user->rights->fournisseur->facture->creer)
83 if ($object->fetch($id))
85 $result = $object->swapContactStatus(
GETPOST(
'ligne'));
92 elseif ($action ==
'deletecontact' && $user->rights->fournisseur->facture->creer)
95 $result = $object->delete_contact($_GET[
"lineid"]);
99 header(
"Location: ".
$_SERVER[
'PHP_SELF'].
"?id=".$object->id);
111 $title = $langs->trans(
'SupplierInvoice').
" - ".$langs->trans(
'ContactsAddresses');
112 $helpurl =
"EN:Module_Suppliers_Invoices|FR:Module_Fournisseurs_Factures|ES:Módulo_Facturas_de_proveedores";
115 $form =
new Form($db);
117 $contactstatic =
new Contact($db);
118 $userstatic =
new User($db);
127 if ($id > 0 || !empty($ref))
129 if ($object->fetch($id, $ref) > 0)
131 $object->fetch_thirdparty();
133 $alreadypaid = $object->getSommePaiement();
139 $linkback =
'<a href="'.DOL_URL_ROOT.
'/fourn/facture/list.php?restore_lastsearch_values=1'.(!empty($socid) ?
'&socid='.$socid :
'').
'">'.$langs->trans(
"BackToList").
'</a>';
141 $morehtmlref =
'<div class="refidno">';
143 $morehtmlref .= $form->editfieldkey(
"RefSupplier",
'ref_supplier', $object->ref_supplier, $object, 0,
'string',
'', 0, 1);
144 $morehtmlref .= $form->editfieldval(
"RefSupplier",
'ref_supplier', $object->ref_supplier, $object, 0,
'string',
'', null, null,
'', 1);
146 $morehtmlref .=
'<br>'.$langs->trans(
'ThirdParty').
' : '.$object->thirdparty->getNomUrl(1);
147 if (empty($conf->global->MAIN_DISABLE_OTHER_LINK) && $object->thirdparty->id > 0) $morehtmlref .=
' (<a href="'.DOL_URL_ROOT.
'/fourn/facture/list.php?socid='.$object->thirdparty->id.
'&search_company='.urlencode($object->thirdparty->name).
'">'.$langs->trans(
"OtherBills").
'</a>)';
149 if (!empty($conf->projet->enabled))
151 $langs->load(
"projects");
152 $morehtmlref .=
'<br>'.$langs->trans(
'Project').
' ';
153 if ($user->rights->facture->creer)
155 if ($action !=
'classify')
157 $morehtmlref .=
' : ';
158 if ($action ==
'classify') {
160 $morehtmlref .=
'<form method="post" action="'.$_SERVER[
'PHP_SELF'].
'?id='.$object->id.
'">';
161 $morehtmlref .=
'<input type="hidden" name="action" value="classin">';
162 $morehtmlref .=
'<input type="hidden" name="token" value="'.newToken().
'">';
163 $morehtmlref .= $formproject->select_projects($object->socid, $object->fk_project,
'projectid', $maxlength, 0, 1, 0, 1, 0, 0,
'', 1);
164 $morehtmlref .=
'<input type="submit" class="button valignmiddle" value="'.$langs->trans(
"Modify").
'">';
165 $morehtmlref .=
'</form>';
167 $morehtmlref .= $form->form_project(
$_SERVER[
'PHP_SELF'].
'?id='.$object->id, $object->socid, $object->fk_project,
'none', 0, 0, 0, 1);
170 if (!empty($object->fk_project)) {
172 $proj->fetch($object->fk_project);
173 $morehtmlref .=
'<a href="'.DOL_URL_ROOT.
'/projet/card.php?id='.$object->fk_project.
'" title="'.$langs->trans(
'ShowProject').
'">';
174 $morehtmlref .= $proj->ref;
175 $morehtmlref .=
'</a>';
181 $morehtmlref .=
'</div>';
183 $object->totalpaye = $alreadypaid;
185 dol_banner_tab($object,
'ref', $linkback, 1,
'ref',
'ref', $morehtmlref);
187 print '<div class="fichecenter">';
188 print '<div class="underbanner clearboth"></div>';
190 print '<table class="border centpercent tableforfield">';
193 print '<tr><td class="titlefield">'.$langs->trans(
'Type').
'</td><td colspan="4">';
194 print $object->getLibType();
198 $facreplaced->fetch($object->fk_facture_source);
199 print ' ('.$langs->transnoentities(
"ReplaceInvoice", $facreplaced->getNomUrl(1)).
')';
204 $facusing->fetch($object->fk_facture_source);
205 print ' ('.$langs->transnoentities(
"CorrectInvoice", $facusing->getNomUrl(1)).
')';
208 $facidavoir = $object->getListIdAvoirFromInvoice();
209 if (count($facidavoir) > 0)
211 print ' ('.$langs->transnoentities(
"InvoiceHasAvoir");
213 foreach ($facidavoir as $fid)
215 if ($i == 0)
print ' ';
218 $facavoir->fetch($fid);
219 print $facavoir->getNomUrl(1);
226 $facthatreplace->fetch($facidnext);
227 print ' ('.$langs->transnoentities(
"ReplacedByInvoice", $facthatreplace->getNomUrl(1)).
')';
232 print '<tr><td>'.$form->editfieldkey(
"Label",
'label', $object->label, $object, 0).
'</td><td>';
233 print $form->editfieldval(
"Label",
'label', $object->label, $object, 0);
237 print '<tr><td>'.$langs->trans(
'AmountHT').
'</td><td>'.
price($object->total_ht, 1, $langs, 0, -1, -1, $conf->currency).
'</td></tr>';
238 print '<tr><td>'.$langs->trans(
'AmountVAT').
'</td><td>'.
price($object->total_tva, 1, $langs, 0, -1, -1, $conf->currency).
'</td></tr>';
242 if ($societe->localtax1_assuj ==
"1")
244 print '<tr><td>'.$langs->transcountry(
"AmountLT1", $societe->country_code).
'</td>';
245 print '<td>'.price($object->total_localtax1, 1, $langs, 0, -1, -1, $conf->currency).
'</td>';
248 if ($societe->localtax2_assuj ==
"1")
250 print '<tr><td>'.$langs->transcountry(
"AmountLT2", $societe->country_code).
'</td>';
251 print '<td>'.price($object->total_localtax2, 1, $langs, 0, -1, -1, $conf->currency).
'</td>';
254 print '<tr><td>'.$langs->trans(
'AmountTTC').
'</td><td>'.
price($object->total_ttc, 1, $langs, 0, -1, -1, $conf->currency).
'</td></tr>';
263 include DOL_DOCUMENT_ROOT.
'/core/tpl/contacts.tpl.php';
265 print "ErrorRecordNotFound";
GETPOST($paramname, $check= 'alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
Class to manage Dolibarr users.
const TYPE_REPLACEMENT
Replacement invoice.
Class to manage suppliers invoices.
price($amount, $form=0, $outlangs= '', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code= '')
Function to format a value into an amount for visual output Function used into PDF and HTML pages...
setEventMessages($mesg, $mesgs, $style= 'mesgs', $messagekey= '')
Set event messages in dol_events session object.
Class to manage projects.
restrictedArea($user, $features, $objectid=0, $tableandshare= '', $feature2= '', $dbt_keyfield= 'fk_soc', $dbt_select= 'rowid', $isdraft=0)
Check permissions of a user to show a page and an object.
facturefourn_prepare_head($object)
Prepare array with list of tabs.
print $_SERVER["PHP_SELF"]
Edit parameters.
dol_get_fiche_head($links=array(), $active= '', $title= '', $notab=0, $picto= '', $pictoisfullpath=0, $morehtmlright= '', $morecss= '', $limittoshow=0, $moretabssuffix= '')
Show tabs of a record.
const TYPE_CREDIT_NOTE
Credit note invoice.
print
Draft customers invoices.
dol_print_error($db= '', $error= '', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
dol_get_fiche_end($notab=0)
Return tab footer of a card.
dol_banner_tab($object, $paramid, $morehtml= '', $shownav=1, $fieldid= 'rowid', $fieldref= 'ref', $morehtmlref= '', $moreparam= '', $nodbprefix=0, $morehtmlleft= '', $morehtmlstatus= '', $onlybanner=0, $morehtmlright= '')
Show tab footer of a card.