36require
'../../main.inc.php';
47require_once DOL_DOCUMENT_ROOT .
'/fourn/class/fournisseur.facture-rec.class.php';
48require_once DOL_DOCUMENT_ROOT .
'/fourn/class/fournisseur.product.class.php';
49require_once DOL_DOCUMENT_ROOT .
'/product/class/product.class.php';
50require_once DOL_DOCUMENT_ROOT .
'/core/class/html.formother.class.php';
52 include_once DOL_DOCUMENT_ROOT .
'/projet/class/project.class.php';
54require_once DOL_DOCUMENT_ROOT .
'/core/class/html.formprojet.class.php';
55require_once DOL_DOCUMENT_ROOT .
'/core/class/doleditor.class.php';
56require_once DOL_DOCUMENT_ROOT .
'/core/lib/invoice.lib.php';
57require_once DOL_DOCUMENT_ROOT .
'/core/class/extrafields.class.php';
60$langs->loadLangs(array(
'bills',
'companies',
'compta',
'admin',
'other',
'products',
'banks',
'suppliers'));
62$action =
GETPOST(
'action',
'alpha');
63$massaction =
GETPOST(
'massaction',
'alpha');
65$confirm =
GETPOST(
'confirm',
'alpha');
66$cancel =
GETPOST(
'cancel',
'alpha');
67$toselect =
GETPOST(
'toselect',
'array:int');
68$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') :
'supplierinvoicetemplatelist';
69$backtopage =
GETPOST(
'backtopage',
'alpha');
70$backtopageforcancel =
GETPOST(
'backtopageforcancel',
'alpha');
75$ref =
GETPOST(
'title',
'alphanohtml') ?
GETPOST(
'title',
'alphanohtml') :
GETPOST(
'ref',
'alphanohtml');
76$label =
GETPOST(
'label',
'alphanohtml');
77$ref_supplier =
GETPOST(
'ref_supplier',
'alphanohtml');
79$year_date_when =
GETPOST(
'year_date_when');
80$month_date_when =
GETPOST(
'month_date_when');
84 $socid = $user->socid;
86$objecttype =
'facture_fourn_rec';
87if ($action ==
"create" || $action ==
"add") {
92$sortfield =
GETPOST(
"sortfield",
'aZ09comma');
93$sortorder =
GETPOST(
"sortorder",
'aZ09comma');
95if (empty($page) || $page == -1) {
98$offset = $limit * $page;
103 $sortfield =
'f.titre';
105$pageprev = $page - 1;
106$pagenext = $page + 1;
109if (($id > 0 || $ref) && $action !=
'create' && $action !=
'add') {
110 $ret =
$object->fetch($id, $ref);
117$hookmanager->initHooks(array(
'supplierinvoicereccard',
'globalcard'));
121$extrafields->fetch_name_optionals_label(
$object->table_element);
123$search_array_options = $extrafields->getOptionalsFromPost(
$object->table_element,
'',
'search_');
125$permissionnote = $user->hasRight(
"fournisseur",
"facture",
"creer") || $user->hasRight(
"supplier_invoice",
"creer");
126$permissiondellink = $user->hasRight(
"fournisseur",
"facture",
"creer") || $user->hasRight(
"supplier_invoice",
"creer");
127$permissiontoedit = $user->hasRight(
"fournisseur",
"facture",
"creer") || $user->hasRight(
"supplier_invoice",
"creer");
128$permissiontoadd = $user->hasRight(
"fournisseur",
"facture",
"creer") || $user->hasRight(
"supplier_invoice",
"creer");
129$permissiontodelete = ($user->hasRight(
"fournisseur",
"facture",
"supprimer") || $user->hasRight(
"supplier_invoice",
"supprimer"));
130$permissiontoeditextra = $permissiontoadd;
131if (
GETPOST(
'attribute',
'aZ09') && isset($extrafields->attributes[
$object->table_element][
'perms'][
GETPOST(
'attribute',
'aZ09')])) {
133 $permissiontoeditextra =
dol_eval((
string) $extrafields->attributes[
$object->table_element][
'perms'][
GETPOST(
'attribute',
'aZ09')]);
136$usercanread = $user->hasRight(
"fournisseur",
"facture",
"lire") || $user->hasRight(
"supplier_invoice",
"lire");
137$usercancreate = $user->hasRight(
"fournisseur",
"facture",
"creer") || $user->hasRight(
"supplier_invoice",
"creer");
138$usercandelete = $user->hasRight(
"fournisseur",
"facture",
"supprimer") || $user->hasRight(
"supplier_invoice",
"supprimer");
139$usercanvalidate = ((!
getDolGlobalString(
'MAIN_USE_ADVANCED_PERMS') && !empty($usercancreate)) || (
getDolGlobalString(
'MAIN_USE_ADVANCED_PERMS') && $user->hasRight(
"fournisseur",
"supplier_invoice_advance",
"validate")));
140$usercansend = (!
getDolGlobalString(
'MAIN_USE_ADVANCED_PERMS') || $user->hasRight(
"fournisseur",
"supplier_invoice_advance",
"send"));
142$usercanproductignorepricemin = ((
getDolGlobalString(
'MAIN_USE_ADVANCED_PERMS') && !$user->hasRight(
"produit",
"ignore_price_min_advance")) || !
getDolGlobalString(
'MAIN_USE_ADVANCED_PERMS'));
143$usercancreatemargin = $user->hasRight(
"margins",
"creer");
144$usercanreadallmargin = $user->hasRight(
"margins",
"liretous");
145$usercancreatewithdrarequest = $user->hasRight(
"prelevement",
"bons",
"creer");
160if (
GETPOST(
'cancel',
'alpha')) {
161 if ($action !=
'updateline') {
169if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend' && $massaction !=
'confirm_presend') {
173$parameters = array(
'socid' => $socid);
174$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
179if (empty($reshook)) {
180 if (
GETPOST(
'cancel',
'alpha')) {
185 include DOL_DOCUMENT_ROOT .
'/core/actions_changeselectedfields.inc.php';
188 include DOL_DOCUMENT_ROOT .
'/core/actions_setnotes.inc.php';
190 include DOL_DOCUMENT_ROOT .
'/core/actions_dellink.inc.php';
192 include DOL_DOCUMENT_ROOT .
'/core/actions_lineupdown.inc.php';
195 if ($action ==
'add' && $permissiontoadd) {
196 if (!
GETPOST(
'title',
'alphanohtml')) {
197 setEventMessages($langs->transnoentities(
"ErrorFieldRequired", $langs->trans(
"Title")),
null,
'errors');
212 if (empty($reyear) || empty($remonth) || empty($reday)) {
213 setEventMessages($langs->transnoentities(
"ErrorFieldRequired", $langs->trans(
"Date")),
null,
'errors');
231 $object->frequency = $frequency;
233 $object->nb_gen_max = $nb_gen_max;
238 $date_next_execution =
dol_mktime($rehour, $remin, 0, $remonth, $reday, $reyear);
239 $object->date_when = $date_next_execution;
241 $ret = $extrafields->setOptionalsFromPost(
null, $object);
253 $onlylines =
GETPOST(
'toselect',
'array:int');
255 $result =
$object->create($user, $oldinvoice->id, 0, $onlylines);
258 $result = $oldinvoice->delete($user, 1);
273 header(
"Location: " . $_SERVER[
'PHP_SELF'] .
'?facid=' .
$object->id);
284 if ($action ==
'confirm_deleteinvoice' && $confirm ==
'yes' && $permissiontodelete) {
287 header(
'Location: ' . DOL_URL_ROOT .
'/fourn/facture/list-rec.php');
293 if ($action ==
'setconditions' && $usercancreate) {
295 } elseif ($action ==
'setmode' && $usercancreate) {
298 } elseif ($action ==
'classin' && $usercancreate) {
301 } elseif ($action ==
'setref_supplier' && $usercancreate) {
302 $result =
$object->setValueFrom(
'ref_supplier', $ref_supplier,
'',
null,
'text',
'', $user);
306 if (
$object->error ==
'DB_ERROR_RECORD_ALREADY_EXISTS') {
307 $langs->load(
"errors");
308 setEventMessages($langs->trans(
'ErrorRefAlreadyExists', $ref_supplier),
null,
'errors');
313 } elseif ($action ==
'settitle' && $permissiontoadd) {
314 $result =
$object->setValueFrom(
'titre', $ref,
'',
null,
'text',
'', $user);
321 if (
$object->error ==
'DB_ERROR_RECORD_ALREADY_EXISTS') {
322 $langs->load(
"errors");
323 setEventMessages($langs->trans(
'ErrorTitreAlreadyExists', $ref),
null,
'errors');
328 } elseif ($action ==
'setbankaccount' && $permissiontoadd) {
331 } elseif ($action ==
'setfrequency' && $permissiontoadd) {
334 } elseif ($action ==
'setdate_when' && $permissiontoadd) {
340 } elseif ($action ==
'setnb_gen_max' && $permissiontoadd) {
343 } elseif ($action ==
'setauto_validate' && $permissiontoadd) {
346 } elseif ($action ==
'setgenerate_pdf' && $permissiontoadd) {
349 } elseif ($action ==
'setmodelpdf' && $permissiontoadd) {
352 } elseif ($action ==
'disable' && $permissiontoadd) {
358 $res =
$object->setValueFrom(
'suspended', 1);
369 } elseif ($action ==
'enable' && $permissiontoadd) {
373 $object->context[
'actionmsg'] = $langs->trans(
"RecordEnabled");
377 $res =
$object->setValueFrom(
'suspended', 0);
388 } elseif ($action ==
'setmulticurrencycode' && $permissiontoadd) {
390 $result =
$object->setMulticurrencyCode(
GETPOST(
'multicurrency_code',
'alpha'));
391 } elseif ($action ==
'setmulticurrencyrate' && $permissiontoadd) {
394 } elseif ($action ==
'setlabel' && $permissiontoadd) {
396 $result =
$object->setValueFrom(
'libelle', $label,
'',
null,
'text',
'', $user);
400 if ($action ==
'confirm_deleteline' && $confirm ==
'yes' && $permissiontoadd) {
411 if ($line->delete($user) > 0) {
412 $result =
$object->update_price(1);
425 } elseif ($action ==
'update_extras' && $permissiontoeditextra) {
428 $attribute_name =
GETPOST(
'attribute',
'aZ09');
431 $ret = $extrafields->setOptionalsFromPost(
null, $object, $attribute_name);
437 $result =
$object->updateExtraField($attribute_name,
'BILLREC_MODIFY');
445 $action =
'edit_extras';
450 if ($action ==
'addline' && $permissiontoadd) {
451 $langs->load(
'errors');
456 $product_desc = (GETPOSTISSET(
'dp_desc') ?
GETPOST(
'dp_desc',
'restricthtml') :
'');
459 $prod_entry_mode =
GETPOST(
'prod_entry_mode',
'alpha');
460 if ($prod_entry_mode ==
'free') {
463 $ref_fournisseur = (GETPOSTISSET(
'fourn_ref') ?
GETPOST(
'fourn_ref',
'restricthtml') :
'');
469 $qty =
GETPOST(
'qty' . $predef,
'alpha');
470 $qty = ($qty ===
'') ?
'' : (float)
price2num(
GETPOST(
'qty' . $predef,
'alpha'),
'MS', 2);
474 $extralabelsline = $extrafields->fetch_name_optionals_label(
$object->table_element_line);
475 $array_options = $extrafields->getOptionalsFromPost(
$object->table_element_line, $predef);
477 if (is_array($extralabelsline)) {
479 foreach ($extralabelsline as $key => $value) {
480 unset($_POST[
"options_" . $key . $predef]);
484 if ((empty($idprod) || $idprod < 0) && ($price_ht < 0) && ((
float) $qty < 0)) {
485 setEventMessages($langs->trans(
'ErrorBothFieldCantBeNegative', $langs->transnoentitiesnoconv(
'UnitPriceHT'), $langs->transnoentitiesnoconv(
'Qty')),
null,
'errors');
488 if ($prod_entry_mode ==
'free' && (empty($idprod) || $idprod < 0) &&
GETPOST(
'type') < 0) {
489 setEventMessages($langs->trans(
'ErrorFieldRequired', $langs->transnoentitiesnoconv(
'Type')),
null,
'errors');
492 if ($prod_entry_mode ==
'free' && (empty($idprod) || $idprod < 0) && (! ($price_ht >= 0) || $price_ht ==
'')) {
493 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"UnitPriceHT")),
null,
'errors');
497 setEventMessages($langs->trans(
'ErrorFieldRequired', $langs->transnoentitiesnoconv(
'Qty')),
null,
'errors');
500 if ($prod_entry_mode ==
'free' && (empty($idprod) || $idprod < 0) && empty($product_desc)) {
501 setEventMessages($langs->trans(
'ErrorFieldRequired', $langs->transnoentitiesnoconv(
'Description')),
null,
'errors');
505 $langs->load(
"errors");
506 setEventMessages($langs->trans(
'ErrorQtyForSupplierInvoiceCantBeNegative'),
null,
'errors');
510 $ref_fournisseur =
null;
511 if ($prod_entry_mode !=
'free' && empty($error)) {
515 if (
GETPOST(
'idprodfournprice',
'alpha') == -1 ||
GETPOST(
'idprodfournprice',
'alpha') ==
'') {
519 if (preg_match(
'/^idprod_([0-9]+)$/',
GETPOST(
'idprodfournprice',
'alpha'), $reg)) {
520 $idprod = (int) $reg[1];
521 $res = $productsupplier->fetch($idprod);
524 if (
getDolGlobalString(
'SUPPLIER_TAKE_FIRST_PRICE_IF_NO_PRICE_FOR_CURRENT_SUPPLIER')) {
526 $productsupplier->get_buyprice(0, -1, $idprod,
'none', $fksoctosearch);
527 if ($productsupplier->fourn_socid != $socid) {
528 $productsupplier->ref_supplier =
'';
531 $fksoctosearch =
$object->thirdparty->id;
532 $productsupplier->get_buyprice(0, -1, $idprod,
'none', $fksoctosearch);
534 } elseif (
GETPOSTINT(
'idprodfournprice') > 0) {
536 $idprod = $productsupplier->get_buyprice(
GETPOSTINT(
'idprodfournprice'), $qtytosearch);
537 $res = $productsupplier->fetch($idprod);
538 $ref_fournisseur = $productsupplier->ref_supplier;
542 if (! $error && ($qty >= 0) && (!empty($product_desc) || (!empty($idprod) && $idprod > 0))) {
548 $ret =
$object->fetch_thirdparty();
553 $price_base_type = (
GETPOST(
'price_base_type',
'alpha') ?
GETPOST(
'price_base_type',
'alpha') :
'HT');
565 if (!empty($idprod) && $idprod > 0) {
567 $prod->fetch($idprod);
574 if (empty($tva_tx)) {
583 $pu_ht = $datapriceofproduct[
'pu_ht'];
584 $pu_ttc = $datapriceofproduct[
'pu_ttc'];
585 $price_min = $datapriceofproduct[
'price_min'];
586 $price_base_type = empty($datapriceofproduct[
'price_base_type']) ?
'HT' : $datapriceofproduct[
'price_base_type'];
587 $tva_tx = $datapriceofproduct[
'tva_tx'];
588 $tva_npr = $datapriceofproduct[
'tva_npr'];
590 $tmpvat =
price2num(preg_replace(
'/\s*\(.*\)/',
'', (
string) $tva_tx));
591 $tmpprodvat =
price2num(preg_replace(
'/\s*\(.*\)/',
'', (
string)
$prod->tva_tx));
594 if (!empty($price_ht)) {
596 $pu_ttc =
price2num((
float) $pu_ht * (1 + ((
float) $tmpvat / 100)),
'MU');
597 } elseif ($tmpvat != $tmpprodvat) {
600 if ($price_base_type !=
'HT') {
601 $pu_ht =
price2num($pu_ttc / (1 + ((
float) $tmpvat / 100)),
'MU');
603 $pu_ttc =
price2num($pu_ht * (1 + ((
float) $tmpvat / 100)),
'MU');
607 $outputlangs = $langs;
613 if (
GETPOST(
'lang_id',
'aZ09')) {
614 $newlang =
GETPOST(
'lang_id',
'aZ09');
616 if (empty($newlang)) {
617 $newlang =
$object->thirdparty->default_lang;
619 if (!empty($newlang)) {
621 $outputlangs->setDefaultLang($newlang);
622 $outputlangs->load(
'products');
625 $desc = (!empty(
$prod->multilangs [$outputlangs->defaultlang] [
"description"])) ?
$prod->multilangs [$outputlangs->defaultlang] [
"description"] :
$prod->
description;
627 $desc =
$prod->description;
637 if (!empty(
$prod->customcode)) {
638 $tmptxt .= $outputlangs->transnoentitiesnoconv(
"CustomsCode") .
': ' .
$prod->customcode;
640 if (!empty(
$prod->customcode) && !empty(
$prod->country_code)) {
643 if (!empty(
$prod->country_code)) {
644 $tmptxt .= $outputlangs->transnoentitiesnoconv(
"CountryOrigin") .
': ' .
getCountry(
$prod->country_code,
'',
$db, $outputlangs, 0);
647 if (!empty(
$prod->customcode)) {
648 $tmptxt .= $langs->transnoentitiesnoconv(
"CustomsCode") .
': ' .
$prod->customcode;
650 if (!empty(
$prod->customcode) && !empty(
$prod->country_code)) {
653 if (!empty(
$prod->country_code)) {
654 $tmptxt .= $langs->transnoentitiesnoconv(
"CountryOrigin") .
': ' .
getCountry(
$prod->country_code,
'',
$db, $langs, 0);
662 $fk_unit =
$prod->fk_unit;
666 $tva_npr = (preg_match(
'/\*/', $tva_tx) ? 1 : 0);
667 $tva_tx = str_replace(
'*',
'', $tva_tx);
668 if (empty($tva_tx)) {
671 $desc = $product_desc;
676 $date_start_fill =
GETPOSTINT(
'date_start_fill');
680 $fournprice = (int) (
GETPOST(
'fournprice' . $predef) ?
GETPOST(
'fournprice' . $predef) :
'');
693 $remise_percent = (float)
price2num($remise_percent);
695 $price_min = (float)
price2num((
float) $price_min);
696 if ($usercanproductignorepricemin && (!empty($price_min) && ($pu_ht * (1 - $remise_percent / 100) < $price_min))) {
697 $mesg = $langs->trans(
"CantBeLessThanMinPrice",
price(
price2num($price_min,
'MU'), 0, $langs, 0, 0, -1,
$conf->currency));
701 $result =
$object->addline($idprod, (
string) $ref_fournisseur, $label, $desc, $pu_ht, $pu_ttc, (
float) $qty, $remise_percent, (
string) $tva_tx, $localtax1_tx, $localtax2_tx, $price_base_type, $type, $date_start_fill, $date_end_fill, $info_bits, $special_code, -1, $fk_unit);
706 unset($_POST[
'prod_entry_mode']);
707 unset($_POST[
'qty']);
708 unset($_POST[
'type']);
709 unset($_POST[
'remise_percent']);
710 unset($_POST[
'price_ht']);
711 unset($_POST[
'multicurrency_price_ht']);
712 unset($_POST[
'price_ttc']);
713 unset($_POST[
'tva_tx']);
714 unset($_POST[
'product_ref']);
715 unset($_POST[
'product_label']);
716 unset($_POST[
'product_desc']);
717 unset($_POST[
'fournprice']);
718 unset($_POST[
'buying_price']);
719 unset($_POST[
'np_marginRate']);
720 unset($_POST[
'np_markRate']);
721 unset($_POST[
'dp_desc']);
722 unset($_POST[
'idprod']);
723 unset($_POST[
'units']);
724 unset($_POST[
'date_starthour']);
725 unset($_POST[
'date_startmin']);
726 unset($_POST[
'date_startsec']);
727 unset($_POST[
'date_startday']);
728 unset($_POST[
'date_startmonth']);
729 unset($_POST[
'date_startyear']);
730 unset($_POST[
'date_endhour']);
731 unset($_POST[
'date_endmin']);
732 unset($_POST[
'date_endsec']);
733 unset($_POST[
'date_endday']);
734 unset($_POST[
'date_endmonth']);
735 unset($_POST[
'date_endyear']);
736 unset($_POST[
'date_start_fill']);
737 unset($_POST[
'date_end_fill']);
738 unset($_POST[
'situations']);
739 unset($_POST[
'progress']);
740 unset($_POST[
'fourn_ref']);
748 } elseif ($action ==
'updateline' && $permissiontoadd && !
GETPOST(
'cancel',
'alpha')) {
749 if (!
$object->fetch($id) > 0) {
758 $ref_fourn =
GETPOST(
'fourn_ref',
'alpha');
767 if (preg_match(
'/\*/', $vat_rate)) {
772 $vat_rate = str_replace(
'*',
'', $vat_rate);
777 $extralabelsline = $extrafields->fetch_name_optionals_label(
$object->table_element_line);
778 $array_options = $extrafields->getOptionalsFromPost(
$object->table_element_line);
781 if ($objectline->fetch(
GETPOSTINT(
'lineid'))) {
782 $objectline->array_options = $array_options;
783 $result = $objectline->insertExtraFields();
789 $position = ($objectline->rang >= 0 ? $objectline->rang : 0);
792 if (is_array($extralabelsline)) {
794 foreach ($extralabelsline as $key => $value) {
795 unset($_POST[
"options_" . $key]);
801 if (!
GETPOST(
'qty',
'alpha')) {
809 if (!empty($productid)) {
811 $product->fetch($productid);
813 $type = $product->type;
815 $price_min = $product->price_min;
817 $price_min = $product->multiprices_min[
$object->thirdparty->price_level];
820 $label = $product->label;
823 if (((
getDolGlobalString(
'MAIN_USE_ADVANCED_PERMS') && !$user->hasRight(
"produit",
"ignore_price_min_advance")) || !
getDolGlobalString(
'MAIN_USE_ADVANCED_PERMS')) && $price_min && ((
float)
price2num($pu_ht) * (1 - (
float) $remise_percent / 100) < (
float)
price2num($price_min))) {
824 setEventMessages($langs->trans(
"CantBeLessThanMinPrice",
price(
price2num($price_min,
'MU'), 0, $langs, 0, 0, -1,
$conf->currency)),
null,
'errors');
829 $label = (
GETPOST(
'product_label') ?
GETPOST(
'product_label') :
'');
833 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"Type")),
null,
'errors');
838 $langs->load(
"errors");
839 setEventMessages($langs->trans(
'ErrorQtyForSupplierInvoiceCantBeNegative'),
null,
'errors');
843 $date_start_fill =
GETPOSTINT(
'date_start_fill');
848 $result =
$object->updateline(
GETPOSTINT(
'lineid'),
GETPOSTINT(
'productid'), $ref_fourn, $label, $description, (
float) $pu_ht, (
float) $qty, (
float) $remise_percent, $vat_rate, $localtax1_rate, $localtax1_rate,
'HT', $type, $date_start_fill, $date_end_fill, $info_bits, $special_code, -1);
852 unset($_POST[
'qty']);
853 unset($_POST[
'type']);
854 unset($_POST[
'productid']);
855 unset($_POST[
'remise_percent']);
856 unset($_POST[
'price_ht']);
857 unset($_POST[
'multicurrency_price_ht']);
858 unset($_POST[
'price_ttc']);
859 unset($_POST[
'tva_tx']);
860 unset($_POST[
'product_ref']);
861 unset($_POST[
'product_label']);
862 unset($_POST[
'product_desc']);
863 unset($_POST[
'fournprice']);
864 unset($_POST[
'buying_price']);
865 unset($_POST[
'np_marginRate']);
866 unset($_POST[
'np_markRate']);
867 unset($_POST[
'dp_desc']);
868 unset($_POST[
'idprod']);
869 unset($_POST[
'units']);
870 unset($_POST[
'date_starthour']);
871 unset($_POST[
'date_startmin']);
872 unset($_POST[
'date_startsec']);
873 unset($_POST[
'date_startday']);
874 unset($_POST[
'date_startmonth']);
875 unset($_POST[
'date_startyear']);
876 unset($_POST[
'date_endhour']);
877 unset($_POST[
'date_endmin']);
878 unset($_POST[
'date_endsec']);
879 unset($_POST[
'date_endday']);
880 unset($_POST[
'date_endmonth']);
881 unset($_POST[
'date_endyear']);
882 unset($_POST[
'situations']);
883 unset($_POST[
'progress']);
884 unset($_POST[
'fourn_ref']);
897$title = $langs->trans(
"RepeatableSupplierInvoice");
899llxHeader(
'', $title, $help_url,
'', 0, 0,
'',
'',
'',
'mod-fourn-facture page-card-rec');
915if ($action ==
'create') {
916 print
load_fiche_titre($langs->trans(
"CreateRepeatableInvoice"),
'',
'bill');
921 if (
$object->fetch($id, $ref) > 0) {
922 $result =
$object->fetch_lines();
924 print
'<form action="' . $_SERVER[
"PHP_SELF"] .
'" method="POST">';
925 print
'<input type="hidden" name="token" value="' . newToken() .
'">';
926 print
'<input type="hidden" name="action" value="add">';
927 print
'<input type="hidden" name="facid" value="' .
$object->id .
'">';
939 print
'<table class="border centpercent">';
944 print
'<tr><td class="titlefieldcreate fieldrequired">' . $langs->trans(
"Title") .
'</td><td>';
945 print
'<input class="flat quatrevingtpercent" type="text" name="title" value="' .
dol_escape_htmltag(
GETPOST(
"title",
'alphanohtml')) .
'" autofocus>';
949 print
'<tr><td class="titlefieldcreate fieldrequired">' . $langs->trans(
"RefSupplier") .
'</td><td>';
950 print
'<input class="flat maxwidth500" type="text" name="ref_supplier" value="' .
$object->ref_supplier .
'">';
954 print
'<tr><td class="titlefieldcreate">' . $langs->trans(
"Supplier") .
'</td><td>' .
$object->thirdparty->getNomUrl(1,
'supplier') .
'</td>';
959 print
"<tr><td>".$langs->trans(
"InvoiceSubtype").
"</td><td>";
960 print $form->getSelectInvoiceSubtype(GETPOSTISSET(
'subtype') ?
GETPOST(
'subtype') :
$object->subtype,
'subtype', 0, 0,
'');
964 $note_public = GETPOSTISSET(
'note_public') ?
GETPOST(
'note_public',
'restricthtml') :
$object->note_public;
965 $note_private = GETPOSTISSET(
'note_private') ?
GETPOST(
'note_private',
'restricthtml') :
$object->note_private;
968 $substitutionarray = getCommonSubstitutionArray($langs, 2,
null, $object);
970 $substitutionarray[
'__INVOICE_PREVIOUS_MONTH__'] = $langs->trans(
"PreviousMonthOfInvoice") .
' (' . $langs->trans(
"Example") .
': ' .
dol_print_date(
dol_time_plus_duree(
$object->date, -1,
'm'),
'%m') .
')';
971 $substitutionarray[
'__INVOICE_MONTH__'] = $langs->trans(
"MonthOfInvoice") .
' (' . $langs->trans(
"Example") .
': ' .
dol_print_date(
$object->date,
'%m') .
')';
972 $substitutionarray[
'__INVOICE_NEXT_MONTH__'] = $langs->trans(
"NextMonthOfInvoice") .
' (' . $langs->trans(
"Example") .
': ' .
dol_print_date(
dol_time_plus_duree(
$object->date, 1,
'm'),
'%m') .
')';
973 $substitutionarray[
'__INVOICE_PREVIOUS_MONTH_TEXT__'] = $langs->trans(
"TextPreviousMonthOfInvoice") .
' (' . $langs->trans(
"Example") .
': ' .
dol_print_date(
dol_time_plus_duree(
$object->date, -1,
'm'),
'%B') .
')';
974 $substitutionarray[
'__INVOICE_MONTH_TEXT__'] = $langs->trans(
"TextMonthOfInvoice") .
' (' . $langs->trans(
"Example") .
': ' .
dol_print_date(
$object->date,
'%B') .
')';
975 $substitutionarray[
'__INVOICE_NEXT_MONTH_TEXT__'] = $langs->trans(
"TextNextMonthOfInvoice") .
' (' . $langs->trans(
"Example") .
': ' .
dol_print_date(
dol_time_plus_duree(
$object->date, 1,
'm'),
'%B') .
')';
976 $substitutionarray[
'__INVOICE_PREVIOUS_YEAR__'] = $langs->trans(
"PreviousYearOfInvoice") .
' (' . $langs->trans(
"Example") .
': ' .
dol_print_date(
dol_time_plus_duree(
$object->date, -1,
'y'),
'%Y') .
')';
977 $substitutionarray[
'__INVOICE_YEAR__'] = $langs->trans(
"YearOfInvoice") .
' (' . $langs->trans(
"Example") .
': ' .
dol_print_date(
$object->date,
'%Y') .
')';
980 $substitutionarray[
'__INVOICE_DATE_NEXT_INVOICE_BEFORE_GEN__'] = $langs->trans(
"DateNextInvoiceBeforeGen") . (isset(
$object->date_when) ?
' (' . $langs->trans(
"Example") .
': ' .dol_print_date(
$object->date_when,
'dayhour') .
')' :
'');
981 $substitutionarray[
'__INVOICE_DATE_NEXT_INVOICE_AFTER_GEN__'] = $langs->trans(
"DateNextInvoiceAfterGen") . (isset(
$object->date_when) ?
' (' . $langs->trans(
"Example") .
': ' .
dol_print_date(
dol_time_plus_duree(
$object->date_when,
$object->frequency,
$object->unit_frequency),
'dayhour') .
')' :
'');
982 $substitutionarray[
'__INVOICE_COUNTER_CURRENT__'] = $langs->trans(
"Count");
983 $substitutionarray[
'__INVOICE_COUNTER_MAX__'] = $langs->trans(
"MaxPeriodNumber");
985 $htmltext =
'<i>' . $langs->trans(
"FollowingConstantsWillBeSubstituted") .
':<br>';
986 foreach ($substitutionarray as $key => $val) {
987 $htmltext .= $key .
' = ' . $langs->trans($val) .
'<br>';
992 print
'<tr><td class="titlefieldcreate">' . $langs->trans(
"Label") .
'</td><td>';
993 print
'<input class="flat quatrevingtpercent" type="text" name="label" value="' .
$object->label .
'">';
997 print
"<tr><td>" . $langs->trans(
"Author") .
"</td><td>" . $user->getFullName($langs) .
"</td></tr>";
1000 print
"<tr><td>" . $langs->trans(
"PaymentConditions") .
"</td><td>";
1001 print $form->getSelectConditionsPaiements(GETPOSTISSET(
'cond_reglement_id') ?
GETPOST(
'cond_reglement_id',
'int') :
$object->cond_reglement_id,
'cond_reglement_id', -1, 0, 0,
'');
1005 print
"<tr><td>" . $langs->trans(
"PaymentMode") .
"</td><td>";
1006 print
img_picto(
'',
'payment',
'class="pictofixedwidth"');
1007 print $form->select_types_paiements(GETPOSTISSET(
'mode_reglement_id') ?
GETPOST(
'mode_reglement_id',
'int') :
$object->mode_reglement_id,
'mode_reglement_id',
'', 0, 1, 0, 0, 1,
'', 1);
1013 $langs->load(
'projects');
1014 print
'<tr><td>' . $langs->trans(
'Project') .
'</td><td>';
1015 $numprojet = $formproject->select_projects((!
getDolGlobalString(
'PROJECT_CAN_ALWAYS_LINK_TO_ALL_SUPPLIERS') ?
$object->thirdparty->id : -1), $projectid,
'projectid', 0, 0, 1, 1, 0, 0, 0,
'', 0, 0,
'');
1016 print
' <a href="' . DOL_URL_ROOT .
'/projet/card.php?socid=' .
$object->thirdparty->id .
'&action=create&status=1&backtopage=' . urlencode($_SERVER[
"PHP_SELF"] .
'?action=create&socid=' .
$object->thirdparty->id . (!empty($id) ?
'&id=' . $id :
'')) .
'">' . $langs->trans(
"AddProject") .
'</a>';
1021 if (
$object->fk_account > 0) {
1022 print
"<tr><td>" . $langs->trans(
'BankAccount') .
"</td><td>";
1023 $form->formSelectAccount($_SERVER[
'PHP_SELF'] .
'?id=' .
$object->id, (
string)
$object->fk_account,
'none');
1031 $extralabels = $extrafields->fetch_name_optionals_label($draft->table_element);
1032 if ($draft->fetch_optionals() > 0) {
1033 $object->array_options = array_merge(
$object->array_options, $draft->array_options);
1036 print
$object->showOptionals($extrafields,
'create', $parameters);
1039 print
"<tr><td>" . $langs->trans(
'Model') .
"</td><td>";
1040 include_once DOL_DOCUMENT_ROOT .
'/core/modules/supplier_invoice/modules_facturefournisseur.php';
1042 print $form->selectarray(
'modelpdf', $list,
getDolGlobalString(
'INVOICE_SUPPLIER_ADDON_PDF'));
1047 print
'<td class="tdtop">';
1048 print $form->textwithpicto($langs->trans(
'NotePublic'), $htmltext, 1,
'help',
'', 0, 2,
'notepublic');
1051 $doleditor =
new DolEditor(
'note_public', $note_public,
'', 80,
'dolibarr_notes',
'In',
false,
false, !
getDolGlobalString(
'FCKEDITOR_ENABLE_NOTE_PUBLIC') ? 0 : 1, ROWS_3,
'90%');
1052 print $doleditor->Create(1);
1055 if (empty($user->socid)) {
1057 print
'<td class="tdtop">';
1058 print $form->textwithpicto($langs->trans(
'NotePrivate'), $htmltext, 1,
'help',
'', 0, 2,
'noteprivate');
1061 $doleditor =
new DolEditor(
'note_private', $note_private,
'', 80,
'dolibarr_notes',
'In',
false,
false, !
getDolGlobalString(
'FCKEDITOR_ENABLE_NOTE_PRIVATE') ? 0 : 1, ROWS_3,
'90%');
1062 print $doleditor->Create(1);
1071 $title = $langs->trans(
"Recurrence");
1074 print
'<span class="opacitymedium">'.$langs->trans(
"ToCreateARecurringInvoiceGeneAuto", $langs->transnoentitiesnoconv(
'Module2300Name')).
'</span><br><br>';
1078 print
'<table class="border centpercent">';
1081 print
'<tr><td class="titlefieldcreate">' . $form->textwithpicto($langs->trans(
"Frequency"), $langs->transnoentitiesnoconv(
'toolTipFrequency')) .
"</td><td>";
1082 print
"<input type='text' class='width50' name='frequency' value='" .
GETPOSTINT(
'frequency') .
"' size='4' /> " . $form->selectarray(
'unit_frequency', array(
'd' => $langs->trans(
'Day'),
'm' => $langs->trans(
'Month'),
'y' => $langs->trans(
'Year')), (
GETPOST(
'unit_frequency') ?
GETPOST(
'unit_frequency') :
'm'));
1086 print
"<tr><td>" . $langs->trans(
'NextDateToExecution') .
"</td><td>";
1088 print $form->selectDate($date_next_execution,
'', 1, 1, 0,
"add", 1, 1);
1092 print
"<tr><td>" . $langs->trans(
"MaxPeriodNumber") .
"</td><td>";
1093 print
'<input type="text" class="width50" name="nb_gen_max" value="' .
GETPOSTINT(
'nb_gen_max') .
'">';
1097 print
"<tr><td>" . $langs->trans(
"StatusOfAutoGeneratedInvoices") .
"</td><td>";
1098 $select = array(
'0' => $langs->trans(
'BillStatusDraft'),
'1' => $langs->trans(
'BillStatusValidated'));
1099 print $form->selectarray(
'auto_validate', $select,
GETPOSTINT(
'auto_validate'));
1104 print
"<tr><td>" . $langs->trans(
"StatusOfGeneratedDocuments") .
"</td><td>";
1105 $select = array(
'0' => $langs->trans(
'DoNotGenerateDoc'),
'1' => $langs->trans(
'AutoGenerateDoc'));
1106 print $form->selectarray(
'generate_pdf', $select,
GETPOSTINT(
'generate_pdf'));
1109 print
'<input type="hidden" name="generate_pdf" value="1">';
1116 $title = $langs->trans(
"ProductsAndServices");
1118 $title = $langs->trans(
"Products");
1120 $title = $langs->trans(
"Services");
1128 print
'<div class="div-table-responsive-no-min">';
1129 print
'<table id="tablelines" class="noborder noshadow" width="100%">';
1143 print $form->buttonsSaveCancel(
"Create");
1158 if ($action ==
'ask_deleteline') {
1159 $formconfirm = $form->formconfirm($_SERVER[
"PHP_SELF"] .
'?id=' .
$object->id .
'&lineid=' . $lineid, $langs->trans(
'DeleteProductLine'), $langs->trans(
'ConfirmDeleteProductLine'),
'confirm_deleteline',
'',
'no', 1);
1163 if ($action ==
'ask_deleteinvoice') {
1164 $formconfirm = $form->formconfirm(
dolBuildUrl($_SERVER[
"PHP_SELF"], [
'id' =>
$object->id]), $langs->trans(
'DeleteRepeatableInvoice'), $langs->trans(
'ConfirmDeleteRepeatableInvoice'),
'confirm_deleteinvoice',
'',
'no', 1);
1170 $author->fetch(
$object->user_creation_id);
1178 $linkback =
'<a href="' . DOL_URL_ROOT .
'/fourn/facture/list-rec.php?restore_lastsearch_values=1' . (!empty($socid) ?
'&socid=' . $socid :
'') .
'">' . $langs->trans(
'BackToList') .
'</a>';
1181 if ($action !=
'edittitle') {
1182 $morehtmlref .= $form->editfieldkey(
$object->title,
'title',
$object->title, $object, (
int) $usercancreate,
'',
'', 0, 2);
1184 $morehtmlref .= $form->editfieldval(
'',
'title',
$object->title, $object, $usercancreate,
'string');
1186 $morehtmlref .=
'<div class="refidno">';
1188 $morehtmlref .= $form->editfieldkey(
"RefSupplier",
'ref_supplier',
$object->ref_supplier, $object, (
int) $usercancreate,
'string',
'', 0, 1);
1189 $morehtmlref .= $form->editfieldval(
"RefSupplier",
'ref_supplier',
$object->ref_supplier, $object, $usercancreate,
'string',
'',
null,
null,
'', 1);
1191 $morehtmlref .=
'<br>' . $langs->trans(
'ThirdParty') .
' : ' .
$object->thirdparty->getNomUrl(1);
1194 if (
isModEnabled(
'project') && $formproject !==
null) {
1195 $langs->load(
'projects');
1196 $morehtmlref .=
'<br>' . $langs->trans(
'Project') .
' ';
1197 if ($usercancreate) {
1198 if ($action !=
'classify') {
1199 $morehtmlref .=
'<a class="editfielda" href="' . $_SERVER[
'PHP_SELF'] .
'?action=classify&token=' . newToken() .
'&id=' .
$object->id .
'">' .
img_edit($langs->transnoentitiesnoconv(
'SetProject')) .
'</a> : ';
1201 if ($action ==
'classify') {
1202 $morehtmlref .=
'<form method="post" action="' . $_SERVER[
'PHP_SELF'] .
'?id=' .
$object->id .
'">';
1203 $morehtmlref .=
'<input type="hidden" name="action" value="classin">';
1204 $morehtmlref .=
'<input type="hidden" name="token" value="' . newToken() .
'">';
1205 $morehtmlref .= $formproject->select_projects((!
getDolGlobalString(
'PROJECT_CAN_ALWAYS_LINK_TO_ALL_SUPPLIERS') ?
$object->socid : -1), (
string)
$object->fk_project,
'projectid', 0, 0, 1, 0, 1, 0, 0,
'', 1);
1206 $morehtmlref .=
'<input type="submit" class="button valignmiddle" value="' . $langs->trans(
"Modify") .
'">';
1207 $morehtmlref .=
'</form>';
1209 $morehtmlref .= $form->form_project($_SERVER[
'PHP_SELF'] .
'?id=' .
$object->id, (
getDolGlobalString(
'PROJECT_CAN_ALWAYS_LINK_TO_ALL_SUPPLIERS') ?
$object->socid : -1),
$object->fk_project,
'none', 0, 0, 0, 1,
'',
'maxwidth300');
1212 if (!empty(
$object->fk_project)) {
1214 $project->fetch(
$object->fk_project);
1215 $morehtmlref .=
' : ' . $project->getNomUrl(1);
1216 if ($project->title) {
1217 $morehtmlref .=
' - ' . $project->title;
1224 $morehtmlref .=
'</div>';
1226 $morehtmlstatus =
'';
1228 dol_banner_tab($object,
'ref', $linkback, 1,
'title',
'none', $morehtmlref,
'', 0,
'', $morehtmlstatus);
1230 print
'<div class="fichecenter">';
1231 print
'<div class="fichehalfleft">';
1232 print
'<div class="underbanner clearboth"></div>';
1234 print
'<table class="border centpercent tableforfield">';
1238 print
"<tr><td>".$langs->trans(
"InvoiceSubtype").
"</td><td>";
1239 print
$object->getSubtypeLabel(
'facture_fourn_rec');
1244 print
'<tr><td class="titlefield">' . $langs->trans(
'Author') .
'</td><td>';
1245 print $author->getNomUrl(-1);
1250 print
'<td>' . $form->editfieldkey(
"Label",
'label',
$object->label, $object, (
int) $usercancreate) .
'</td>';
1251 print
'<td>' . $form->editfieldval(
"Label",
'label',
$object->label, $object, $usercancreate) .
'</td>';
1256 print
'<table class="nobordernopadding centpercent"><tr><td>';
1257 print $langs->trans(
'PaymentConditionsShort');
1259 if ($action !=
'editconditions' && $usercancreate) {
1260 print
'<td class="right"><a class="editfielda" href="' . $_SERVER[
"PHP_SELF"] .
'?action=editconditions&token=' . newToken() .
'&facid=' .
$object->id .
'">' .
img_edit($langs->trans(
'SetConditions'), 1) .
'</a></td>';
1262 print
'</tr></table>';
1264 if ($action ==
'editconditions') {
1265 $form->form_conditions_reglement($_SERVER[
'PHP_SELF'] .
'?facid=' .
$object->id, (
string)
$object->cond_reglement_id,
'cond_reglement_id');
1267 $form->form_conditions_reglement($_SERVER[
'PHP_SELF'] .
'?facid=' .
$object->id, (
string)
$object->cond_reglement_id,
'none');
1274 print
'<table class="nobordernopadding" width="100%"><tr><td>';
1275 print $langs->trans(
'PaymentMode');
1277 if ($action !=
'editmode' && $usercancreate) {
1278 print
'<td class="right"><a class="editfielda" href="' . $_SERVER[
"PHP_SELF"] .
'?action=editmode&token=' . newToken() .
'&facid=' .
$object->id .
'">' .
img_edit($langs->trans(
'SetMode'), 1) .
'</a></td>';
1280 print
'</tr></table>';
1282 if ($action ==
'editmode') {
1283 $form->form_modes_reglement($_SERVER[
'PHP_SELF'] .
'?facid=' .
$object->id, (
string)
$object->mode_reglement_id,
'mode_reglement_id',
'CRDT', 1, 1);
1285 $form->form_modes_reglement($_SERVER[
'PHP_SELF'] .
'?facid=' .
$object->id, (
string)
$object->mode_reglement_id,
'none');
1290 print
'<tr><td class="nowrap">';
1291 print
'<table width="100%" class="nobordernopadding"><tr><td class="nowrap">';
1292 print $langs->trans(
'BankAccount');
1294 if ($action !=
'editbankaccount' && $usercancreate &&
$object->statut == FactureFournisseurRec::STATUS_NOTSUSPENDED) {
1295 print
'<td class="right"><a class="editfielda" href="' . $_SERVER[
'PHP_SELF'] .
'?action=editbankaccount&token=' . newToken() .
'&id=' .
$object->id .
'">' .
img_edit($langs->trans(
'SetBankAccount'), 1) .
'</a></td>';
1297 print
'</tr></table>';
1299 if ($action ==
'editbankaccount') {
1300 $form->formSelectAccount($_SERVER[
'PHP_SELF'] .
'?id=' .
$object->id, (
string)
$object->fk_account,
'fk_account', 1);
1302 $form->formSelectAccount($_SERVER[
'PHP_SELF'] .
'?id=' .
$object->id, (
string)
$object->fk_account,
'none');
1308 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_view.tpl.php';
1311 print
'<tr><td class="nowrap">';
1312 print
'<table class="nobordernopadding centpercent"><tr><td class="nowrap">';
1313 print $langs->trans(
'Model');
1315 if ($action !=
'editmodelpdf' && $usercancreate &&
$object->statut == FactureFournisseurRec::STATUS_NOTSUSPENDED) {
1316 print
'<td class="right"><a class="editfielda" href="' . $_SERVER[
'PHP_SELF'] .
'?action=editmodelpdf&token=' . newToken() .
'&id=' .
$object->id .
'">' .
img_edit($langs->trans(
'SetModel'), 1) .
'</a></td>';
1318 print
'</tr></table>';
1320 if ($action ==
'editmodelpdf') {
1321 include_once DOL_DOCUMENT_ROOT .
'/core/modules/supplier_invoice/modules_facturefournisseur.php';
1324 foreach ($models as $k => $model) {
1325 $list[] = str_replace(
':',
'|', $k) .
':' . $model;
1327 $select =
'select;' . implode(
',', $list);
1329 print $form->editfieldval($langs->trans(
'Model'),
'modelpdf',
$object->model_pdf, $object, $usercancreate, $select);
1342 print
'<div class="fichehalfright">';
1343 print
'<div class="underbanner clearboth"></div>';
1348 $title = $langs->trans(
"Recurrence");
1351 print
'<table class="border centpercent tableforfield">';
1353 include DOL_DOCUMENT_ROOT.
'/core/tpl/object_currency_amount.tpl.php';
1356 print
'<tr><td>' . $langs->trans(
'AmountHT') .
'</td>';
1357 print
'<td>' .
price(
$object->total_ht, 0, $langs, 1, -1, -1,
$conf->currency) .
'</td>';
1360 print
'<tr><td>' . $langs->trans(
"AmountVAT") .
'</td><td>' .
price(
$object->total_tva, 0, $langs, 1, -1, -1,
$conf->currency) .
'</td>';
1364 if ((
$mysoc->localtax1_assuj ==
"1" &&
$mysoc->useLocalTax(1)) ||
$object->total_localtax1 != 0) {
1365 print
'<tr><td>' . $langs->transcountry(
"AmountLT1",
$mysoc->country_code) .
'</td>';
1366 print
'<td class="nowrap">' .
price(
$object->total_localtax1, 1,
'', 1, -1, -1,
$conf->currency) .
'</td></tr>';
1368 if ((
$mysoc->localtax2_assuj ==
"1" &&
$mysoc->useLocalTax(2)) ||
$object->total_localtax2 != 0) {
1369 print
'<tr><td>' . $langs->transcountry(
"AmountLT2",
$mysoc->country_code) .
'</td>';
1370 print
'<td class=nowrap">' .
price(
$object->total_localtax2, 1,
'', 1, -1, -1,
$conf->currency) .
'</td></tr>';
1373 print
'<tr><td>' . $langs->trans(
"AmountTTC") .
'</td><td colspan="3">' .
price(
$object->total_ttc, 0, $langs, 1, -1, -1,
$conf->currency) .
'</td>';
1377 print
'<tr class="liste_titre"><td colspan="2" class="liste_titre">' .
img_picto(
'',
'recurring',
'class="pictofixedwidth"') . $title .
'</td></tr>';
1380 print
'<tr><td style="width: 50%">';
1381 print
'<table class="nobordernopadding" width="100%"><tr><td>';
1382 print $langs->trans(
'Frequency');
1384 if ($action !=
'editfrequency' && $usercancreate) {
1385 print
'<td class="right"><a class="editfielda" href="' . $_SERVER[
"PHP_SELF"] .
'?action=editfrequency&token=' . newToken() .
'&facid=' .
$object->id .
'">' .
img_edit($langs->trans(
'Edit'), 1) .
'</a></td>';
1387 print
'</tr></table>';
1389 if ($action ==
'editfrequency') {
1390 print
'<form method="post" action="' . $_SERVER[
"PHP_SELF"] .
'?facid=' .
$object->id .
'">';
1391 print
'<input type="hidden" name="action" value="setfrequency">';
1392 print
'<input type="hidden" name="token" value="' . newToken() .
'">';
1393 print
'<table class="nobordernopadding">';
1395 print
"<input type='text' name='frequency' value='" .
$object->frequency .
"' size='5' /> " . $form->selectarray(
'unit_frequency', array(
'd' => $langs->trans(
'Day'),
'm' => $langs->trans(
'Month'),
'y' => $langs->trans(
'Year')), (
$object->unit_frequency ?
$object->unit_frequency :
'm'));
1397 print
'<td class="left"><input type="submit" class="button button-edit" value="' . $langs->trans(
"Modify") .
'"></td>';
1398 print
'</tr></table></form>';
1401 print $langs->trans(
'FrequencyPer_' .
$object->unit_frequency,
$object->frequency);
1403 print
'<span class="opacitymedium">'.$langs->trans(
"NotARecurringInvoiceTemplate").
'</span>';
1411 if ($action ==
'date_when' ||
$object->frequency > 0) {
1412 print $form->editfieldkey($langs->trans(
"NextDateToExecution"),
'date_when', (
string)
$object->date_when, $object, (
int) $usercancreate,
'day');
1414 print $langs->trans(
"NextDateToExecution");
1417 if ($action ==
'date_when' ||
$object->frequency > 0) {
1418 print $form->editfieldval($langs->trans(
"NextDateToExecution"),
'date_when',
$object->date_when, $object, $usercancreate,
'day',
$object->date_when,
null,
'',
'', 0,
'strikeIfMaxNbGenReached');
1421 if (!
$object->isMaxNbGenReached()) {
1426 print
img_info($langs->trans(
"MaxNumberOfGenerationReached"));
1433 if ($action ==
'nb_gen_max' ||
$object->frequency > 0) {
1434 print $form->editfieldkey($langs->trans(
"MaxPeriodNumber"),
'nb_gen_max', (
string)
$object->nb_gen_max, $object, (
int) $usercancreate);
1436 print $langs->trans(
"MaxPeriodNumber");
1439 if ($action ==
'nb_gen_max' ||
$object->frequency > 0) {
1440 print $form->editfieldval($langs->trans(
"MaxPeriodNumber"),
'nb_gen_max',
$object->nb_gen_max ?
$object->nb_gen_max :
'',
$object, $usercancreate);
1449 if ($action ==
'auto_validate' ||
$object->frequency > 0) {
1450 print $form->editfieldkey($langs->trans(
"StatusOfAutoGeneratedInvoices"),
'auto_validate', (
string)
$object->auto_validate, $object, (
int) $usercancreate);
1452 print $langs->trans(
"StatusOfAutoGeneratedInvoices");
1455 $select =
'select;0:' . $langs->trans(
'BillStatusDraft') .
',1:' . $langs->trans(
'BillStatusValidated');
1456 if ($action ==
'auto_validate' ||
$object->frequency > 0) {
1457 print $form->editfieldval($langs->trans(
"StatusOfAutoGeneratedInvoices"),
'auto_validate',
$object->auto_validate, $object, $usercancreate, $select);
1464 if ($action ==
'generate_pdf' ||
$object->frequency > 0) {
1465 print $form->editfieldkey($langs->trans(
"StatusOfGeneratedDocuments"),
'generate_pdf', (
string)
$object->generate_pdf, $object, (
int) $usercancreate);
1467 print $langs->trans(
"StatusOfGeneratedDocuments");
1471 $select =
'select;0:' . $langs->trans(
'DoNotGenerateDoc') .
',1:' . $langs->trans(
'AutogenerateDoc');
1472 if ($action ==
'generate_pdf' ||
$object->frequency > 0) {
1473 print $form->editfieldval($langs->trans(
"StatusOfGeneratedDocuments"),
'generate_pdf',
$object->generate_pdf, $object, $usercancreate, $select);
1478 print
'<input type="hidden" name="generate_pdf" value="1">';
1489 print
info_admin($langs->trans(
"EnableAndSetupModuleCron", $langs->transnoentitiesnoconv(
"Module2300Name")));
1492 print
'<div class="underbanner clearboth"></div>';
1493 print
'<table class="border centpercent tableforfield">';
1496 print
'<tr><td style="width: 50%">' . $langs->trans(
"NbOfGenerationDone") .
'</td>';
1504 print $langs->trans(
"DateLastGeneration");
1518 print
'<div class="clearboth"></div><br>';
1521 print
' <form name="addproduct" id="addproduct" action="' . $_SERVER[
"PHP_SELF"] .
'?id=' .
$object->id . (($action !=
'editline') ?
'#add' :
'#line_' .
GETPOSTINT(
'lineid')) .
'" method="POST">
1522 <input type="hidden" name="token" value="' . newToken() .
'">
1523 <input type="hidden" name="action" value="' . (($action !=
'editline') ?
'addline' :
'updateline') .
'">
1524 <input type="hidden" name="mode" value="">
1525 <input type="hidden" name="id" value="' .
$object->id .
'">
1528 if (!empty(
$conf->use_javascript_ajax) &&
$object->statut == 0) {
1529 include DOL_DOCUMENT_ROOT .
'/core/tpl/ajaxrow.tpl.php';
1532 print
'<div class="div-table-responsive-no-min">';
1533 print
'<table id="tablelines" class="noborder noshadow" width="100%">';
1537 global $canchangeproduct;
1538 $canchangeproduct = 0;
1547 if (
$object->statut == $object::STATUS_DRAFT && $usercancreate && $action !=
'valid' && $action !=
'editline') {
1548 if ($action !=
'editline') {
1551 $parameters = array();
1552 $reshook = $hookmanager->executeHooks(
'formAddObjectLine', $parameters, $object, $action);
1556 if (empty($reshook)) {
1557 global $senderissupplier;
1559 $senderissupplier = 2;
1574 print
'<div class="tabsAction">';
1576 if (empty(
$object->suspended)) {
1577 if ($usercancreate) {
1579 print
'<div class="inline-block divButAction"><a class="butActionRefused classfortooltip" href="#" title="' .
dol_escape_htmltag($langs->trans(
"MaxGenerationReached")) .
'">' . $langs->trans(
"CreateBill") .
'</a></div>';
1581 if (empty(
$object->frequency) ||
$object->date_when <= $nowlasthour) {
1582 print
'<div class="inline-block divButAction"><a class="butAction" href="' . DOL_URL_ROOT .
'/fourn/facture/card.php?action=create&socid=' .
$object->thirdparty->id .
'&fac_rec=' .
$object->id .
'">' . $langs->trans(
"CreateBill") .
'</a></div>';
1584 print
'<div class="inline-block divButAction"><a class="butActionRefused classfortooltip" href="#" title="' .
dol_escape_htmltag($langs->trans(
"DateIsNotEnough")) .
'">' . $langs->trans(
"CreateBill") .
'</a></div>';
1588 print
'<div class="inline-block divButAction"><a class="butActionRefused classfortooltip" href="#">' . $langs->trans(
"CreateBill") .
'</a></div>';
1592 if ($usercancreate) {
1593 if (empty(
$object->suspended)) {
1594 print
'<div class="inline-block divButAction"><a class="butActionDelete" href="' . $_SERVER[
"PHP_SELF"] .
'?action=disable&id=' .
$object->id .
'&token=' . newToken() .
'">' . $langs->trans(
"Disable") .
'</a></div>';
1596 print
'<div class="inline-block divButAction"><a class="butAction" href="' . $_SERVER[
"PHP_SELF"] .
'?action=enable&id=' .
$object->id .
'&token=' . newToken() .
'">' . $langs->trans(
"Enable") .
'</a></div>';
1601 print dolGetButtonAction($langs->trans(
"Delete"),
'',
'delete', $_SERVER[
"PHP_SELF"].
'?id='.
$object->id.
'&action=ask_deleteinvoice&token='.newToken(),
'delete', ($user->hasRight(
"fournisseur",
"facture",
"supprimer") || $user->hasRight(
"supplier_invoice",
"supprimer")));
1605 print
'<div class="fichecenter"><div class="fichehalfleft">';
1606 print
'<a name="builddoc"></a>';
1609 $tmparray = $form->showLinkToObjectBlock($object, array(), array(
'invoice'), 1);
1610 $linktoelem = $tmparray[
'linktoelem'];
1611 $htmltoenteralink = $tmparray[
'htmltoenteralink'];
1612 print $htmltoenteralink;
1614 $somethingshown = $form->showLinkedObjectBlock($object, $linktoelem);
1616 print
'</div></div>';
$id
Support class for third parties, contacts, members, users or resources.
if(! $sortfield) if(! $sortorder) $object
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
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 a WYSIWYG editor.
Class to manage suppliers invoices.
Class to manage supplier invoice lines of templates.
Class to manage invoice templates.
static liste_modeles($db, $maxfilenamelength=0)
Return list of active generation modules.
Class to manage predefined suppliers products.
Class to manage products or services.
Class to manage projects.
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage translations.
Class to manage Dolibarr users.
getCountry($searchkey, $withcode='', $dbtouse=null, $outputlangs=null, $entconv=1, $searchlabel='')
Return country label, code or id from an id, code or label.
dol_get_last_hour($date, $gm='tzserver')
Return GMT time for last hour of a given GMT date (it replaces hours, min and second part to 23:59:59...
dol_time_plus_duree($time, $duration_value, $duration_unit, $ruleforendofmonth=0)
Add a delay to a date.
print $script_file $mode $langs defaultlang(is_numeric($duration_value) ? " delay=". $duration_value :"").(is_numeric($duration_value2) ? " after cd cd cd description as description
Only used if Module[ID]Desc translation string is not found.
$date_start
Variables from include:
dol_now($mode='gmt')
Return date for now.
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed information (by default a local PHP server timestamp) Rep...
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
info_admin($text, $infoonimgalt=0, $nodiv=0, $admin='1', $morecss='hideonsmartphone', $textfordropdown='', $picto='', $textonpictotooltip='')
Show information in HTML for admin users or standard users.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0, $morecssdiv='')
Show tabs of a record.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
dolBuildUrl($url, $params=[], $addtoken=false, $anchor='')
Return path of url.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
dol_eval($s, $returnvalue=1, $hideerrors=1, $onlysimplestring='1')
Replace eval function to add more security.
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.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_htmlcleanlastbr($stringtodecode)
This function remove all ending and br at end.
get_default_npr(Societe $thirdparty_seller, Societe $thirdparty_buyer, $idprod=0, $idprodfournprice=0)
Function that returns whether VAT must be recoverable collected VAT (e.g.: VAT NPR in France)
dol_concatdesc($text1, $text2, $forxml=false, $invert=false)
Concat 2 descriptions with a new line between them (second operand after first one with appropriate n...
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_clone($srcobject, $native=2)
Create a clone of instance of object (new instance with same value for each properties) With native =...
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false, $decorate=0)
Output date in a string format according to outputlangs (or langs if not defined).
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='', $morecssonpicto='widthpictotitle')
Load a title with picto.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
img_edit($titlealt='default', $float=0, $other='')
Show logo edit/modify fiche.
get_default_tva(Societe $thirdparty_seller, Societe $thirdparty_buyer, $idprod=0, $idprodfournprice=0)
Function that return vat rate of a product line (according to seller, buyer and product vat rate) VAT...
get_localtax($vatrate, $local, $thirdparty_buyer=null, $thirdparty_seller=null, $vatnpr=0)
Return localtax rate for a particular VAT rate, when selling a product with vat $vatrate,...
img_info($titlealt='default')
Show info logo.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
supplier_invoice_rec_prepare_head($object)
Return array head with list of tabs to view object information.
print $langs trans("Show") . '< td style="' . $timeColor . '" align="center"> s</td > badge status0 badge status4 badge status3 Error badge status8< td align="center">< span class="badge ' . $badge . '"></span ></td >< td align="center">< a href="#" class="button button-small" onclick="openLogModal(this)" data-req="' . dol_escape_htmltag($reqSafe) . '" data-res="' . dol_escape_htmltag($resSafe) . '" data-err="' . dol_escape_htmltag($errSafe) . '">< span class="fa fa-search-plus"></span ></a ></td ></tr >< tr >< td colspan="' . $colspan . '" class="opacitymedium"></td ></tr ></table ></div ></form > logModal none logModal none s a JSON string
buildzip.php
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.