47require
'../main.inc.php';
48require_once DOL_DOCUMENT_ROOT.
'/core/class/canvas.class.php';
49require_once DOL_DOCUMENT_ROOT.
'/core/class/extrafields.class.php';
50require_once DOL_DOCUMENT_ROOT.
'/core/class/genericobject.class.php';
51require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
52require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
53require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
54require_once DOL_DOCUMENT_ROOT.
'/core/lib/product.lib.php';
55require_once DOL_DOCUMENT_ROOT.
'/core/modules/product/modules_product.class.php';
56require_once DOL_DOCUMENT_ROOT.
'/categories/class/categorie.class.php';
57require_once DOL_DOCUMENT_ROOT.
'/product/class/html.formproduct.class.php';
58require_once DOL_DOCUMENT_ROOT.
'/product/class/product.class.php';
61if (isModEnabled(
'propal')) {
62 require_once DOL_DOCUMENT_ROOT.
'/comm/propal/class/propal.class.php';
64if (isModEnabled(
'invoice')) {
65 require_once DOL_DOCUMENT_ROOT.
'/compta/facture/class/facture.class.php';
67if (isModEnabled(
'order')) {
68 require_once DOL_DOCUMENT_ROOT.
'/commande/class/commande.class.php';
70if (isModEnabled(
'accounting')) {
71 require_once DOL_DOCUMENT_ROOT.
'/core/lib/accounting.lib.php';
72 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formaccounting.class.php';
73 require_once DOL_DOCUMENT_ROOT.
'/accountancy/class/accountingaccount.class.php';
75if (isModEnabled(
'bom')) {
76 require_once DOL_DOCUMENT_ROOT.
'/bom/class/bom.class.php';
78if (isModEnabled(
'workstation')) {
79 require_once DOL_DOCUMENT_ROOT.
'/workstation/class/workstation.class.php';
83$langs->loadLangs(array(
'products',
'other'));
84if (isModEnabled(
'stock')) {
85 $langs->load(
"stocks");
87if (isModEnabled(
'invoice')) {
88 $langs->load(
"bills");
90if (isModEnabled(
'productbatch')) {
91 $langs->load(
"productbatch");
103 $ref = (GETPOSTISSET(
'ref') ?
GETPOST(
'ref',
'nohtml') : null);
105 $ref = (GETPOSTISSET(
'ref') ?
GETPOST(
'ref',
'alpha') : null);
108$action = (
GETPOST(
'action',
'alpha') ?
GETPOST(
'action',
'alpha') :
'view');
109$cancel =
GETPOST(
'cancel',
'alpha');
110$backtopage =
GETPOST(
'backtopage',
'alpha');
111$confirm =
GETPOST(
'confirm',
'alpha');
113$duration_value =
GETPOSTINT(
'duration_value');
114$duration_unit =
GETPOST(
'duration_unit',
'alpha');
116$accountancy_code_sell =
GETPOST(
'accountancy_code_sell',
'alpha');
117$accountancy_code_sell_intra =
GETPOST(
'accountancy_code_sell_intra',
'alpha');
118$accountancy_code_sell_export =
GETPOST(
'accountancy_code_sell_export',
'alpha');
119$accountancy_code_buy =
GETPOST(
'accountancy_code_buy',
'alpha');
120$accountancy_code_buy_intra =
GETPOST(
'accountancy_code_buy_intra',
'alpha');
121$accountancy_code_buy_export =
GETPOST(
'accountancy_code_buy_export',
'alpha');
123$checkmandatory =
GETPOST(
'accountancy_code_buy_export',
'alpha');
127 $label_security_check =
'nohtml';
129 $label_security_check = !
getDolGlobalString(
'MAIN_SECURITY_ALLOW_UNSECURED_LABELS_WITH_HTML') ?
'alphanohtml' :
'restricthtml';
132if (!empty($user->socid)) {
133 $socid = $user->socid;
137$module = (
getDolGlobalString(
'PRODUCT_CODEPRODUCT_ADDON') ? $conf->global->PRODUCT_CODEPRODUCT_ADDON :
'mod_codeproduct_leopard');
138if (substr($module, 0, 16) ==
'mod_codeproduct_' && substr($module, -3) ==
'php') {
139 $module = substr($module, 0,
dol_strlen($module) - 4);
143 $modCodeProduct =
new $module();
151$extrafields->fetch_name_optionals_label(
$object->table_element);
153if ($id > 0 || !empty($ref)) {
154 $result =
$object->fetch($id, $ref);
158 $entity = (empty(
$object->entity) ? $conf->entity :
$object->entity);
159 if (isModEnabled(
"product")) {
160 $upload_dir = $conf->product->multidir_output[$entity].
'/'.
get_exdir(0, 0, 0, 0,
$object,
'product').dol_sanitizeFileName(
$object->ref);
161 } elseif (isModEnabled(
"service")) {
162 $upload_dir = $conf->service->multidir_output[$entity].
'/'.
get_exdir(0, 0, 0, 0,
$object,
'product').dol_sanitizeFileName(
$object->ref);
166 if (isModEnabled(
"product")) {
167 $upload_dirold = $conf->product->multidir_output[$entity].
'/'.substr(substr(
"000".
$object->id, -2), 1, 1).
'/'.substr(substr(
"000".
$object->id, -2), 0, 1).
'/'.
$object->id.
"/photos";
169 $upload_dirold = $conf->service->multidir_output[$entity].
'/'.substr(substr(
"000".
$object->id, -2), 1, 1).
'/'.substr(substr(
"000".
$object->id, -2), 0, 1).
'/'.
$object->id.
"/photos";
174$modulepart =
'product';
179if (!empty($canvas)) {
180 require_once DOL_DOCUMENT_ROOT.
'/core/class/canvas.class.php';
181 $objcanvas =
new Canvas($db, $action);
182 $objcanvas->getCanvas(
'product',
'card', $canvas);
186$fieldvalue = (!empty($id) ? $id : (!empty($ref) ? $ref :
''));
187$fieldtype = (!empty($id) ?
'rowid' :
'ref');
190 if (
$object->type == $object::TYPE_PRODUCT) {
193 if (
$object->type == $object::TYPE_SERVICE) {
197 restrictedArea($user,
'produit|service', 0,
'product&product',
'',
'', $fieldtype);
201$hookmanager->initHooks(array(
'productcard',
'globalcard'));
217$createbarcode = isModEnabled(
'barcode');
218if (
getDolGlobalString(
'MAIN_USE_ADVANCED_PERMS') && !$user->hasRight(
'barcode',
'creer_advance')) {
222$parameters = array(
'id' => $id,
'ref' => $ref,
'objcanvas' => $objcanvas);
223$reshook = $hookmanager->executeHooks(
'doActions', $parameters,
$object, $action);
228if (empty($reshook)) {
229 $backurlforlist = DOL_URL_ROOT.
'/product/list.php?type='.$type;
231 if (empty($backtopage) || ($cancel && empty($id))) {
232 if (empty($backtopage) || ($cancel && strpos($backtopage,
'__ID__'))) {
233 if (empty($id) && (($action !=
'add' && $action !=
'create') || $cancel)) {
234 $backtopage = $backurlforlist;
236 $backtopage = DOL_URL_ROOT.
'/product/card.php?id='.((!empty($id) && $id > 0) ? $id :
'__ID__');
242 if (!empty($backtopageforcancel)) {
243 header(
"Location: ".$backtopageforcancel);
245 } elseif (!empty($backtopage)) {
246 header(
"Location: ".$backtopage);
252 if ($action ==
'confirm_merge' && $confirm ==
'yes' && $user->hasRight(
'societe',
'creer')) {
254 $productOriginId =
GETPOSTINT(
'product_origin');
255 $productOrigin =
new Product($db);
257 if ($productOriginId <= 0) {
258 $langs->load(
'errors');
259 setEventMessages($langs->trans(
'ErrorProductIdIsMandatory', $langs->transnoentitiesnoconv(
'MergeOriginProduct')),
null,
'errors');
261 if (!$error && $productOrigin->fetch($productOriginId) < 1) {
271 $listofproperties = array(
281 'accountancy_code_buy',
282 'accountancy_code_buy_intra',
283 'accountancy_code_buy_export',
284 'accountancy_code_sell',
285 'accountancy_code_sell_intra',
286 'accountancy_code_sell_export'
288 foreach ($listofproperties as $property) {
289 if (empty(
$object->$property)) {
290 $object->$property = $productOrigin->$property;
294 $listofproperties = array(
295 'note_public',
'note_private'
297 foreach ($listofproperties as $property) {
302 if (is_array($productOrigin->array_options)) {
303 foreach ($productOrigin->array_options as $key => $val) {
304 if (empty(
$object->array_options[$key])) {
305 $object->array_options[$key] = $val;
312 $custcats_ori = $static_cat->containing($productOrigin->id,
'product',
'id');
313 $custcats = $static_cat->containing(
$object->id,
'product',
'id');
314 $custcats = array_merge($custcats, $custcats_ori);
315 $object->setCategories($custcats);
318 if ($productOrigin->barcode ==
$object->barcode) {
319 dol_syslog(
"We clean customer and supplier code so we will be able to make the update of target");
320 $productOrigin->barcode =
'';
336 'ActionComm' =>
'/comm/action/class/actioncomm.class.php',
337 'Bom' =>
'/bom/class/bom.class.php',
340 'Commande' =>
'/commande/class/commande.class.php',
341 'CommandeFournisseur' =>
'/fourn/class/fournisseur.commande.class.php',
342 'Contrat' =>
'/contrat/class/contrat.class.php',
343 'Delivery' =>
'/delivery/class/delivery.class.php',
344 'Facture' =>
'/compta/facture/class/facture.class.php',
345 'FactureFournisseur' =>
'/fourn/class/fournisseur.facture.class.php',
346 'FactureRec' =>
'/compta/facture/class/facture-rec.class.php',
347 'FichinterRec' =>
'/fichinter/class/fichinterrec.class.php',
348 'ProductFournisseur' =>
'/fourn/class/fournisseur.product.class.php',
349 'Propal' =>
'/comm/propal/class/propal.class.php',
350 'Reception' =>
'/reception/class/reception.class.php',
351 'SupplierProposal' =>
'/supplier_proposal/class/supplier_proposal.class.php',
355 foreach ($objects as $object_name => $object_file) {
356 require_once DOL_DOCUMENT_ROOT.$object_file;
358 if (!$error && !$object_name::replaceProduct($db, $productOrigin->id,
$object->id)) {
368 $parameters = array(
'soc_origin' => $productOrigin->id,
'soc_dest' =>
$object->id);
369 $reshook = $hookmanager->executeHooks(
386 'mergefromid' => $productOrigin->id,
390 $result =
$object->call_trigger(
'PRODUCT_MODIFY', $user);
401 if ($productOrigin->delete($user) < 1) {
410 $langs->load(
"errors");
419 if ($action ==
'setfk_product_type' && $usercancreate) {
420 $result =
$object->setValueFrom(
'fk_product_type',
GETPOST(
'fk_product_type'),
'',
null,
'text',
'', $user,
'PRODUCT_MODIFY');
421 header(
"Location: ".$_SERVER[
'PHP_SELF'].
"?id=".
$object->id);
426 $upload_dir = $conf->product->dir_output;
427 $permissiontoadd = $usercancreate;
428 include DOL_DOCUMENT_ROOT.
'/core/actions_builddoc.inc.php';
430 include DOL_DOCUMENT_ROOT.
'/core/actions_printing.inc.php';
433 if ($action ==
'setfk_barcode_type' && $usercancreate) {
434 $result =
$object->setValueFrom(
'fk_barcode_type',
GETPOST(
'fk_barcode_type'),
'',
null,
'text',
'', $user,
'PRODUCT_MODIFY');
435 header(
"Location: ".$_SERVER[
'PHP_SELF'].
"?id=".
$object->id);
440 if ($action ==
'setbarcode' && $usercancreate) {
444 $result =
$object->setValueFrom(
'barcode',
GETPOST(
'barcode'),
'',
null,
'text',
'', $user,
'PRODUCT_MODIFY');
445 header(
"Location: ".$_SERVER[
'PHP_SELF'].
"?id=".
$object->id);
448 $langs->load(
"errors");
450 $errors[] =
'ErrorBadBarCodeSyntax';
451 } elseif ($result == -2) {
452 $errors[] =
'ErrorBarCodeRequired';
453 } elseif ($result == -3) {
454 $errors[] =
'ErrorBarCodeAlreadyUsed';
456 $errors[] =
'FailedToValidateBarCode';
465 if ($action ==
'update_extras' && $usercancreate) {
469 $ret = $extrafields->setOptionalsFromPost(
null,
$object,
GETPOST(
'attribute',
'restricthtml'));
476 $result =
$object->insertExtraFields(
'PRODUCT_MODIFY');
484 $action =
'edit_extras';
489 if ($action ==
'add' && $usercancreate) {
492 if (!
GETPOST(
'label', $label_security_check)) {
493 setEventMessages($langs->trans(
'ErrorFieldRequired', $langs->transnoentities(
'Label')),
null,
'errors');
499 setEventMessages($langs->trans(
'ErrorFieldRequired', $langs->transnoentities(
'ProductRef')),
null,
'errors');
504 if (!empty($duration_value) && empty($duration_unit)) {
505 setEventMessages($langs->trans(
'ErrorFieldRequired', $langs->transnoentities(
'Unit')),
null,
'errors');
513 $object->entity = $conf->entity;
517 $object->mandatory_period = !empty(
GETPOST(
"mandatoryperiod",
'alpha')) ? 1 : 0;
518 if (
$object->price_base_type ==
'TTC') {
523 if (
$object->price_base_type ==
'TTC') {
529 $tva_tx_txt =
GETPOST(
'tva_tx',
'alpha');
533 $tva_tx = preg_replace(
'/[^0-9\.].*$/',
'', $tva_tx_txt);
534 $npr = preg_match(
'/\*/', $tva_tx_txt) ? 1 : 0;
537 $localtax1_type =
'0';
538 $localtax2_type =
'0';
541 if (preg_match(
'/\((.*)\)/', $tva_tx_txt, $reg)) {
543 $vatratecode = $reg[1];
545 $sql =
"SELECT t.rowid, t.code, t.recuperableonly, t.localtax1, t.localtax2, t.localtax1_type, t.localtax2_type";
546 $sql .=
" FROM ".MAIN_DB_PREFIX.
"c_tva as t, ".MAIN_DB_PREFIX.
"c_country as c";
547 $sql .=
" WHERE t.fk_pays = c.rowid AND c.code = '".$db->escape($mysoc->country_code).
"'";
548 $sql .=
" AND t.taux = ".((float) $tva_tx).
" AND t.active = 1";
549 $sql .=
" AND t.code = '".$db->escape($vatratecode).
"'";
550 $sql .=
" AND t.entity IN (".getEntity(
'c_tva').
")";
551 $resql = $db->query($sql);
553 $obj = $db->fetch_object($resql);
554 $npr = $obj->recuperableonly;
555 $localtax1 = $obj->localtax1;
556 $localtax2 = $obj->localtax2;
557 $localtax1_type = $obj->localtax1_type;
558 $localtax2_type = $obj->localtax2_type;
562 $object->default_vat_code = $vatratecode;
565 $object->localtax1_tx = $localtax1;
566 $object->localtax2_tx = $localtax2;
567 $object->localtax1_type = $localtax1_type;
568 $object->localtax2_type = $localtax2_type;
581 $stdobject->element =
'product';
582 $stdobject->barcode_type =
GETPOSTINT(
'fk_barcode_type');
583 $result = $stdobject->fetch_barcode();
586 $mesg =
'Failed to get bar code type information ';
589 $object->barcode_type_code = $stdobject->barcode_type_code;
590 $object->barcode_type_coder = $stdobject->barcode_type_coder;
591 $object->barcode_type_label = $stdobject->barcode_type_label;
602 $object->duration_value = $duration_value;
603 $object->duration_unit = $duration_unit;
622 if ($finished >= 0) {
635 $accountancy_code_sell =
GETPOST(
'accountancy_code_sell',
'alpha');
636 $accountancy_code_sell_intra =
GETPOST(
'accountancy_code_sell_intra',
'alpha');
637 $accountancy_code_sell_export =
GETPOST(
'accountancy_code_sell_export',
'alpha');
638 $accountancy_code_buy =
GETPOST(
'accountancy_code_buy',
'alpha');
639 $accountancy_code_buy_intra =
GETPOST(
'accountancy_code_buy_intra',
'alpha');
640 $accountancy_code_buy_export =
GETPOST(
'accountancy_code_buy_export',
'alpha');
642 if (empty($accountancy_code_sell) || $accountancy_code_sell ==
'-1') {
643 $object->accountancy_code_sell =
'';
645 $object->accountancy_code_sell = $accountancy_code_sell;
647 if (empty($accountancy_code_sell_intra) || $accountancy_code_sell_intra ==
'-1') {
648 $object->accountancy_code_sell_intra =
'';
650 $object->accountancy_code_sell_intra = $accountancy_code_sell_intra;
652 if (empty($accountancy_code_sell_export) || $accountancy_code_sell_export ==
'-1') {
653 $object->accountancy_code_sell_export =
'';
655 $object->accountancy_code_sell_export = $accountancy_code_sell_export;
657 if (empty($accountancy_code_buy) || $accountancy_code_buy ==
'-1') {
658 $object->accountancy_code_buy =
'';
660 $object->accountancy_code_buy = $accountancy_code_buy;
662 if (empty($accountancy_code_buy_intra) || $accountancy_code_buy_intra ==
'-1') {
663 $object->accountancy_code_buy_intra =
'';
665 $object->accountancy_code_buy_intra = $accountancy_code_buy_intra;
667 if (empty($accountancy_code_buy_export) || $accountancy_code_buy_export ==
'-1') {
668 $object->accountancy_code_buy_export =
'';
670 $object->accountancy_code_buy_export = $accountancy_code_buy_export;
675 for ($i = 2; $i <= $conf->global->PRODUIT_MULTIPRICES_LIMIT; $i++) {
676 if (GETPOSTISSET(
"price_".$i)) {
678 $object->multiprices_base_type[
"$i"] =
GETPOST(
"multiprices_base_type_".$i);
680 $object->multiprices[
"$i"] =
"";
686 $ret = $extrafields->setOptionalsFromPost(
null,
$object);
693 $ref = $modCodeProduct->getNextValue(
$object, $type);
702 $categories =
GETPOST(
'categories',
'array');
703 $object->setCategories($categories);
705 if (!empty($backtopage)) {
706 $backtopage = preg_replace(
'/__ID__/', (
string)
$object->id, $backtopage);
707 $backtopage = preg_replace(
'/--IDFORBACKTOPAGE--/', (
string)
$object->id, $backtopage);
708 if (preg_match(
'/\?/', $backtopage)) {
709 $backtopage .=
'&productid='.$object->id;
712 header(
"Location: ".$backtopage);
715 header(
"Location: ".$_SERVER[
'PHP_SELF'].
"?id=".$id);
722 if (
$object->error ==
'ErrorProductAlreadyExists') {
724 $reshook = $hookmanager->executeHooks(
'onProductAlreadyExists', $parameters,
$object, $action);
743 if ($action ==
'update' && $usercancreate) {
744 if (
GETPOST(
'cancel',
'alpha')) {
800 if ($finished >= 0) {
806 $fk_default_bom =
GETPOSTINT(
'fk_default_bom');
807 if ($fk_default_bom >= 0) {
808 $object->fk_default_bom = $fk_default_bom;
824 $stdobject->element =
'product';
825 $stdobject->barcode_type =
GETPOSTINT(
'fk_barcode_type');
826 $result = $stdobject->fetch_barcode();
829 $mesg =
'Failed to get bar code type information ';
832 $object->barcode_type_code = $stdobject->barcode_type_code;
833 $object->barcode_type_coder = $stdobject->barcode_type_coder;
834 $object->barcode_type_label = $stdobject->barcode_type_label;
836 $accountancy_code_sell =
GETPOST(
'accountancy_code_sell',
'alpha');
837 $accountancy_code_sell_intra =
GETPOST(
'accountancy_code_sell_intra',
'alpha');
838 $accountancy_code_sell_export =
GETPOST(
'accountancy_code_sell_export',
'alpha');
839 $accountancy_code_buy =
GETPOST(
'accountancy_code_buy',
'alpha');
840 $accountancy_code_buy_intra =
GETPOST(
'accountancy_code_buy_intra',
'alpha');
841 $accountancy_code_buy_export =
GETPOST(
'accountancy_code_buy_export',
'alpha');
842 $checkmandatory =
GETPOST(
'mandatoryperiod',
'alpha');
843 if (empty($accountancy_code_sell) || $accountancy_code_sell ==
'-1') {
844 $object->accountancy_code_sell =
'';
846 $object->accountancy_code_sell = $accountancy_code_sell;
848 if (empty($accountancy_code_sell_intra) || $accountancy_code_sell_intra ==
'-1') {
849 $object->accountancy_code_sell_intra =
'';
851 $object->accountancy_code_sell_intra = $accountancy_code_sell_intra;
853 if (empty($accountancy_code_sell_export) || $accountancy_code_sell_export ==
'-1') {
854 $object->accountancy_code_sell_export =
'';
856 $object->accountancy_code_sell_export = $accountancy_code_sell_export;
858 if (empty($accountancy_code_buy) || $accountancy_code_buy ==
'-1') {
859 $object->accountancy_code_buy =
'';
861 $object->accountancy_code_buy = $accountancy_code_buy;
863 if (empty($accountancy_code_buy_intra) || $accountancy_code_buy_intra ==
'-1') {
864 $object->accountancy_code_buy_intra =
'';
866 $object->accountancy_code_buy_intra = $accountancy_code_buy_intra;
868 if (empty($accountancy_code_buy_export) || $accountancy_code_buy_export ==
'-1') {
869 $object->accountancy_code_buy_export =
'';
871 $object->accountancy_code_buy_export = $accountancy_code_buy_export;
874 $object->mandatory_period = (!empty($checkmandatory)) ? 1 : 0 ;
880 $ret = $extrafields->setOptionalsFromPost(
null,
$object,
'@GETPOSTISSET');
885 if (!$error &&
$object->check()) {
888 $categories =
GETPOST(
'categories',
'array');
889 $object->setCategories($categories);
904 setEventMessages($langs->trans(
"ErrorProductBadRefOrLabel"),
null,
'errors');
913 if ($action ==
'confirm_clone' && $confirm !=
'yes') {
916 if ($action ==
'confirm_clone' && $confirm ==
'yes' && $usercancreate) {
927 $clone->ref =
GETPOST(
'clone_ref',
'alphanohtml');
929 $clone->status_buy = 0;
930 $clone->barcode = -1;
932 if ($clone->check()) {
935 $clone->context[
'createfromclone'] =
'createfromclone';
936 $id = $clone->create($user);
938 if (
GETPOST(
'clone_composition')) {
939 $result = $clone->clone_associations(
$object->id, $id);
947 if (!$error &&
GETPOST(
'clone_categories')) {
948 $result = $clone->cloneCategories(
$object->id, $id);
956 if (!$error &&
GETPOST(
'clone_prices')) {
957 $result = $clone->clone_price(
$object->id, $id);
967 if ($clone->error ==
'ErrorProductAlreadyExists') {
971 $mesg = $langs->trans(
"ErrorProductAlreadyExists", $clone->ref);
972 $mesg .=
' <a href="' . $_SERVER[
"PHP_SELF"] .
'?ref=' . $clone->ref .
'">' . $langs->trans(
"ShowCardHere") .
'</a>.';
975 setEventMessages(empty($clone->error) ?
'' : $langs->trans($clone->error), $clone->errors,
'errors');
980 unset($clone->context[
'createfromclone']);
987 header(
"Location: " . $_SERVER[
"PHP_SELF"] .
"?id=" . $id);
991 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"NewRefForClone")),
null,
'errors');
1001 if ($action ==
'confirm_delete' && $confirm !=
'yes') {
1004 if ($action ==
'confirm_delete' && $confirm ==
'yes' && $usercandelete) {
1005 $result =
$object->delete($user);
1008 header(
'Location: '.DOL_URL_ROOT.
'/product/list.php?type='.
$object->type.
'&delprod='.urlencode(
$object->ref));
1019 if (
$object->id > 0 && $action ==
'addin') {
1021 $permissiontoaddline =
false;
1024 if (
GETPOST(
'propalid') > 0) {
1025 $propal =
new Propal($db);
1026 $result = $propal->fetch(
GETPOST(
'propalid'));
1031 $thirpdartyid = $propal->socid;
1032 $permissiontoaddline = $user->hasRight(
'propal',
'creer');
1033 } elseif (
GETPOST(
'commandeid') > 0) {
1035 $result = $commande->fetch(
GETPOST(
'commandeid'));
1040 $thirpdartyid = $commande->socid;
1041 $permissiontoaddline = $user->hasRight(
'commande',
'creer');
1042 } elseif (
GETPOST(
'factureid') > 0) {
1044 $result = $facture->fetch(
GETPOST(
'factureid'));
1049 $thirpdartyid = $facture->socid;
1050 $permissiontoaddline = $user->hasRight(
'facture',
'creer');
1053 if ($thirpdartyid > 0) {
1055 $result = $soc->fetch($thirpdartyid);
1065 if (empty($tva_tx)) {
1068 $localtax1_tx =
get_localtax($tva_tx, 1, $soc, $mysoc, $tva_npr);
1069 $localtax2_tx =
get_localtax($tva_tx, 2, $soc, $mysoc, $tva_npr);
1073 $price_base_type =
$object->price_base_type;
1077 $pu_ht =
$object->multiprices[$soc->price_level];
1078 $pu_ttc =
$object->multiprices_ttc[$soc->price_level];
1079 $price_base_type =
$object->multiprices_base_type[$soc->price_level];
1081 require_once DOL_DOCUMENT_ROOT.
'/product/class/productcustomerprice.class.php';
1085 $filter = array(
't.fk_product' =>
$object->id,
't.fk_soc' => $soc->id);
1087 $result = $prodcustprice->fetchAll(
'',
'', 0, 0, $filter);
1089 if (count($prodcustprice->lines) > 0) {
1090 $pu_ht =
price($prodcustprice->lines [0]->price);
1091 $pu_ttc =
price($prodcustprice->lines [0]->price_ttc);
1092 $price_base_type = $prodcustprice->lines [0]->price_base_type;
1093 $tva_tx = $prodcustprice->lines [0]->tva_tx;
1098 $tmpvat =
price2num(preg_replace(
'/\s*\(.*\)/',
'', $tva_tx));
1099 $tmpprodvat =
price2num(preg_replace(
'/\s*\(.*\)/',
'', $prod->tva_tx));
1103 if ($tmpvat != $tmpprodvat) {
1104 if ($price_base_type !=
'HT') {
1105 $pu_ht =
price2num($pu_ttc / (1 + ($tmpvat / 100)),
'MU');
1107 $pu_ttc =
price2num($pu_ht * (1 + ($tmpvat / 100)),
'MU');
1111 if (
GETPOST(
'propalid') > 0 && $permissiontoaddline) {
1114 if (($result = $propal->defineBuyPrice($pu_ht,
price2num(
GETPOST(
'remise_percent'),
'', 2),
$object->id)) < 0) {
1115 dol_syslog($langs->trans(
'FailedToGetCostPrice'));
1118 $buyprice = $result;
1121 $result = $propal->addline(
1146 header(
"Location: ".DOL_URL_ROOT.
"/comm/propal/card.php?id=".$propal->id);
1150 setEventMessages($langs->trans(
"ErrorUnknown").
": $result",
null,
'errors');
1151 } elseif (
GETPOST(
'commandeid') > 0 && $permissiontoaddline) {
1154 if (($result = $commande->defineBuyPrice($pu_ht,
price2num(
GETPOST(
'remise_percent'),
'', 2),
$object->id)) < 0) {
1155 dol_syslog($langs->trans(
'FailedToGetCostPrice'));
1158 $buyprice = $result;
1161 $result = $commande->addline(
1188 header(
"Location: ".DOL_URL_ROOT.
"/commande/card.php?id=".urlencode((
string) ($commande->id)));
1192 setEventMessages($langs->trans(
"ErrorUnknown").
": $result",
null,
'errors');
1193 } elseif (
GETPOST(
'factureid') > 0 && $permissiontoaddline) {
1196 if (($result = $facture->defineBuyPrice($pu_ht,
price2num(
GETPOST(
'remise_percent'),
'', 2),
$object->id)) < 0) {
1197 dol_syslog($langs->trans(
'FailedToGetCostPrice'));
1200 $buyprice = $result;
1203 $result = $facture->addline(
1235 header(
"Location: ".DOL_URL_ROOT.
"/compta/facture/card.php?facid=".$facture->id);
1239 setEventMessages($langs->trans(
"ErrorUnknown").
": $result",
null,
'errors');
1243 setEventMessages($langs->trans(
"WarningSelectOneDocument"),
null,
'warnings');
1254$form =
new Form($db);
1258if (isModEnabled(
'accounting')) {
1261$sellOrEatByMandatoryList =
null;
1262if (isModEnabled(
'productbatch')) {
1266$title = $langs->trans(
'ProductServiceCard');
1271 if ($action ==
'create') {
1272 $title = $langs->trans(
"NewProduct");
1274 $title = $langs->trans(
'Product').
" ".$shortlabel.
" - ".$langs->trans(
'Card');
1275 $help_url =
'EN:Module_Products|FR:Module_Produits|ES:Módulo_Productos|DE:Modul_Produkte';
1279 if ($action ==
'create') {
1280 $title = $langs->trans(
"NewService");
1282 $title = $langs->trans(
'Service').
" ".$shortlabel.
" - ".$langs->trans(
'Card');
1283 $help_url =
'EN:Module_Services_En|FR:Module_Services|ES:Módulo_Servicios|DE:Modul_Leistungen';
1287llxHeader(
'', $title, $help_url,
'', 0, 0,
'',
'',
'',
'mod-product page-card');
1293 $dirbarcode = array_merge(array(
'/core/modules/barcode/'), $conf->modules_parts[
'barcode']);
1294 foreach ($dirbarcode as $dirroot) {
1301 $modBarCodeProduct =
new $module();
1305$canvasdisplayaction = $action;
1306if (in_array($canvasdisplayaction, array(
'merge',
'confirm_merge'))) {
1307 $canvasdisplayaction =
'view';
1310if (is_object($objcanvas) && $objcanvas->displayCanvasExists($canvasdisplayaction)) {
1314 $objcanvas->assign_values($canvasdisplayaction,
$object->id,
$object->ref);
1315 $objcanvas->display_canvas($canvasdisplayaction);
1320 if ($action ==
'create' && $usercancreate) {
1322 require_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
1324 if (!empty($conf->use_javascript_ajax)) {
1325 print
'<script type="text/javascript">';
1326 print
'$(document).ready(function () {
1327 $("#selectcountry_id").change(function() {
1328 console.log("selectcountry_id change");
1329 document.formprod.action.value="create";
1330 document.formprod.submit();
1333 print
'</script>'.
"\n";
1337 $module = (
getDolGlobalString(
'PRODUCT_CODEPRODUCT_ADDON') ? $conf->global->PRODUCT_CODEPRODUCT_ADDON :
'mod_codeproduct_leopard');
1338 if (substr($module, 0, 16) ==
'mod_codeproduct_' && substr($module, -3) ==
'php') {
1339 $module = substr($module, 0,
dol_strlen($module) - 4);
1343 $modCodeProduct =
new $module();
1348 print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="POST" name="formprod">';
1349 print
'<input type="hidden" name="token" value="'.newToken().
'">';
1350 print
'<input type="hidden" name="action" value="add">';
1351 print
'<input type="hidden" name="type" value="'.$type.
'">'.
"\n";
1352 if (!empty($modCodeProduct->code_auto)) {
1353 print
'<input type="hidden" name="code_auto" value="1">';
1355 if (!empty($modBarCodeProduct->code_auto)) {
1356 print
'<input type="hidden" name="barcode_auto" value="1">';
1358 print
'<input type="hidden" name="backtopage" value="'.$backtopage.
'">';
1362 $title = $langs->trans(
"NewService");
1365 $title = $langs->trans(
"NewProduct");
1371 $object->country_id = GETPOSTISSET(
'country_id') ?
GETPOSTINT(
'country_id') : null;
1372 if (
$object->country_id > 0) {
1374 $object->country_code = $tmparray[
'code'];
1375 $object->country = $tmparray[
'label'];
1381 $parameters = array();
1383 $reshook = $hookmanager->executeHooks(
'tabContentCreateProduct', $parameters,
$object, $action);
1384 if (empty($reshook)) {
1385 print
'<table class="border centpercent">';
1390 if (!empty($modCodeProduct->code_auto)) {
1391 $tmpcode = $modCodeProduct->getNextValue(
$object, $type);
1393 print
'<td class="titlefieldcreate fieldrequired">'.$langs->trans(
"ProductRef").
'</td><td><input id="ref" name="ref" class="maxwidth200" maxlength="128" value="'.
dol_escape_htmltag(GETPOSTISSET(
'ref') ?
GETPOST(
'ref',
'alphanohtml') : $tmpcode).
'">';
1394 if ($refalreadyexists) {
1395 print $langs->trans(
"RefAlreadyExists");
1401 print
'<tr><td class="fieldrequired">'.$langs->trans(
"Label").
'</td><td><input id="label" name="label" class="minwidth300 maxwidth400onsmartphone" maxlength="255" value="'.
dol_escape_htmltag(
GETPOST(
'label', $label_security_check)).
'"></td></tr>';
1404 print
'<tr><td class="fieldrequired">'.$langs->trans(
"Status").
' ('.$langs->trans(
"Sell").
')</td><td>';
1405 $statutarray = array(
'1' => $langs->trans(
"OnSell"),
'0' => $langs->trans(
"NotOnSell"));
1406 print $form->selectarray(
'statut', $statutarray,
GETPOST(
'statut'));
1410 print
'<tr><td class="fieldrequired">'.$langs->trans(
"Status").
' ('.$langs->trans(
"Buy").
')</td><td>';
1411 $statutarray = array(
'1' => $langs->trans(
"ProductStatusOnBuy"),
'0' => $langs->trans(
"ProductStatusNotOnBuy"));
1412 print $form->selectarray(
'statut_buy', $statutarray,
GETPOST(
'statut_buy'));
1416 if (isModEnabled(
'productbatch')) {
1417 print
'<tr><td>'.$langs->trans(
"ManageLotSerial").
'</td><td>';
1418 $statutarray = array(
'0' => $langs->trans(
"ProductStatusNotOnBatch"),
'1' => $langs->trans(
"ProductStatusOnBatch"),
'2' => $langs->trans(
"ProductStatusOnSerial"));
1419 print $form->selectarray(
'status_batch', $statutarray,
GETPOST(
'status_batch'));
1422 $status_batch =
GETPOST(
'status_batch');
1423 if ($status_batch !==
'0') {
1424 $langs->load(
"admin");
1425 $tooltip = $langs->trans(
"GenericMaskCodes", $langs->transnoentities(
"Batch"), $langs->transnoentities(
"Batch"));
1426 $tooltip .=
'<br>'.$langs->trans(
"GenericMaskCodes2");
1427 $tooltip .=
'<br>'.$langs->trans(
"GenericMaskCodes3");
1428 $tooltip .=
'<br>'.$langs->trans(
"GenericMaskCodes4a", $langs->transnoentities(
"Batch"), $langs->transnoentities(
"Batch"));
1429 $tooltip .=
'<br>'.$langs->trans(
"GenericMaskCodes5");
1434 print
'<tr><td id="mask_option">'.$langs->trans(
"ManageLotMask").
'</td>';
1437 print
'<td id="field_mask">';
1438 print $form->textwithpicto(
'<input type="text" class="flat minwidth175" name="batch_mask" id="batch_mask_input">', $tooltip, 1, 1);
1439 print
'<script type="text/javascript">
1440 $(document).ready(function() {
1441 $("#field_mask, #mask_option").addClass("hideobject");
1442 $("#status_batch").on("change", function () {
1443 console.log("We change batch status");
1444 var optionSelected = $("option:selected", this);
1445 var valueSelected = this.value;
1446 $("#field_mask, #mask_option").addClass("hideobject");
1450 if (this.value == 1) {
1451 $("#field_mask, #mask_option").toggleClass("hideobject");
1452 $("#batch_mask_input").val("'.$inherited_mask_lot.
'");
1456 if (isset($conf->global->PRODUCTBATCH_SN_USE_PRODUCT_MASKS) &&
getDolGlobalString(
'PRODUCTBATCH_SN_ADDON') ==
'mod_sn_advanced') {
1458 if (this.value == 2) {
1459 $("#field_mask, #mask_option").toggleClass("hideobject");
1460 $("#batch_mask_input").val("'.$inherited_mask_sn.
'");
1473 if (!empty($sellOrEatByMandatoryList)) {
1474 print
'<tr><td>'.$langs->trans(
'BatchSellOrEatByMandatoryList', $langs->trans(
'SellByDate'), $langs->trans(
'EatByDate')).
'</td><td>';
1475 print $form->selectarray(
'sell_or_eat_by_mandatory', $sellOrEatByMandatoryList,
GETPOSTINT(
'sell_or_eat_by_mandatory'));
1480 $showbarcode = isModEnabled(
'barcode');
1481 if (
getDolGlobalString(
'MAIN_USE_ADVANCED_PERMS') && !$user->hasRight(
'barcode',
'lire_advance')) {
1486 print
'<tr><td>'.$langs->trans(
'BarcodeType').
'</td><td>';
1487 if (GETPOSTISSET(
'fk_barcode_type')) {
1488 $fk_barcode_type =
GETPOST(
'fk_barcode_type') ?
GETPOST(
'fk_barcode_type') : 0;
1493 $fk_barcode_type = 0;
1496 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formbarcode.class.php';
1498 print $formbarcode->selectBarcodeType($fk_barcode_type,
'fk_barcode_type', 1);
1501 print
'<td>'.$langs->trans(
"BarcodeValue").
'</td><td>';
1502 $tmpcode = GETPOSTISSET(
'barcode') ?
GETPOST(
'barcode') :
$object->barcode;
1503 if (empty($tmpcode) && !empty($modBarCodeProduct->code_auto)) {
1504 $tmpcode = $modBarCodeProduct->getNextValue(
$object, $fk_barcode_type);
1506 print
img_picto(
'',
'barcode',
'class="pictofixedwidth"');
1507 print
'<input class="maxwidth100" type="text" name="barcode" value="'.dol_escape_htmltag($tmpcode).
'">';
1512 print
'<tr><td class="tdtop">'.$langs->trans(
"Description").
'</td><td>';
1513 $doleditor =
new DolEditor(
'desc',
GETPOST(
'desc',
'restricthtml'),
'', 160,
'dolibarr_details',
'',
false,
true,
getDolGlobalString(
'FCKEDITOR_ENABLE_DETAILS'), ROWS_4,
'90%');
1514 $doleditor->Create();
1519 print
'<tr><td>'.$langs->trans(
"PublicUrl").
'</td><td>';
1520 print
img_picto(
'',
'globe',
'class="pictofixedwidth"');
1521 print
'<input type="text" name="url" class="quatrevingtpercent" value="'.GETPOST(
'url').
'">';
1525 if (($type != 1 ||
getDolGlobalInt(
'STOCK_SUPPORTS_SERVICES')) && isModEnabled(
'stock')) {
1527 print
'<tr><td>'.$langs->trans(
"DefaultWarehouse").
'</td><td>';
1528 print
img_picto($langs->trans(
"DefaultWarehouse"),
'stock',
'class="pictofixedwidth"');
1529 print $formproduct->selectWarehouses(
GETPOSTINT(
'fk_default_warehouse'),
'fk_default_warehouse',
'warehouseopen', 1, 0, 0,
'', 0, 0, array(),
'minwidth300 widthcentpercentminusxx maxwidth500');
1530 print
' <a href="'.DOL_URL_ROOT.
'/product/stock/card.php?action=create&token='.
newToken().
'&backtopage='.urlencode($_SERVER[
'PHP_SELF'].
'?&action=create&type='.
GETPOSTINT(
'type')).
'">';
1531 print
'<span class="fa fa-plus-circle valignmiddle paddingleft" title="'.$langs->trans(
"AddWarehouse").
'"></span>';
1539 print
'<tr><td>'.$form->textwithpicto($langs->trans(
"StockLimit"), $langs->trans(
"StockLimitDesc"), 1).
'</td><td>';
1540 print
'<input name="seuil_stock_alerte" class="maxwidth50" value="'.GETPOST(
'seuil_stock_alerte').
'">';
1545 print
'<tr><td>'.$form->textwithpicto($langs->trans(
"DesiredStock"), $langs->trans(
"DesiredStockDesc"), 1).
'</td><td>';
1546 print
'<input name="desiredstock" class="maxwidth50" value="'.GETPOST(
'desiredstock').
'">';
1551 print
'<input name="seuil_stock_alerte" type="hidden" value="0">';
1552 print
'<input name="desiredstock" type="hidden" value="0">';
1556 if ($type == $object::TYPE_SERVICE && isModEnabled(
"workstation")) {
1558 print
'<tr><td>'.$langs->trans(
"DefaultWorkstation").
'</td><td>';
1559 print
img_picto($langs->trans(
"DefaultWorkstation"),
'workstation',
'class="pictofixedwidth"');
1560 print $formproduct->selectWorkstations(
$object->fk_default_workstation,
'fk_default_workstation', 1);
1566 print
'<tr><td>'.$langs->trans(
"Duration").
'</td><td>';
1567 print
img_picto(
'',
'clock',
'class="pictofixedwidth"');
1568 print
'<input name="duration_value" size="4" value="'.GETPOSTINT(
'duration_value').
'">';
1569 print $formproduct->selectMeasuringUnits(
"duration_unit",
"time", (GETPOSTISSET(
'duration_unit') ?
GETPOST(
'duration_unit',
'alpha') :
'h'), 0, 1);
1572 print
' ';
1573 print
'<input type="checkbox" id="mandatoryperiod" name="mandatoryperiod"'.($object->mandatory_period == 1 ?
' checked="checked"' :
'').
'>';
1574 print
'<label for="mandatoryperiod">';
1575 $htmltooltip = $langs->trans(
"mandatoryHelper");
1577 $htmltooltip .=
'<br>'.$langs->trans(
"mandatoryHelper2");
1579 print $form->textwithpicto($langs->trans(
"mandatoryperiod"), $htmltooltip, 1, 0);
1588 print
'<tr><td>'.$form->textwithpicto($langs->trans(
"NatureOfProductShort"), $langs->trans(
"NatureOfProductDesc")).
'</td><td>';
1589 print $formproduct->selectProductNature(
'finished',
$object->finished);
1597 print
'<tr><td>'.$langs->trans(
"Weight").
'</td><td>';
1598 print
img_picto(
'',
'fa-balance-scale',
'class="pictofixedwidth"');
1599 print
'<input name="weight" size="4" value="'.GETPOST(
'weight').
'">';
1600 print $formproduct->selectMeasuringUnits(
"weight_units",
"weight", GETPOSTISSET(
'weight_units') ?
GETPOST(
'weight_units',
'alpha') : (!
getDolGlobalString(
'MAIN_WEIGHT_DEFAULT_UNIT') ? 0 : $conf->global->MAIN_WEIGHT_DEFAULT_UNIT), 0, 2);
1606 print
'<tr><td>'.$langs->trans(
"Length").
' x '.$langs->trans(
"Width").
' x '.$langs->trans(
"Height").
'</td><td>';
1607 print
img_picto(
'',
'fa-ruler',
'class="pictofixedwidth"');
1608 print
'<input name="size" class="width50" value="'.GETPOST(
'size').
'"> x ';
1609 print
'<input name="sizewidth" class="width50" value="'.GETPOST(
'sizewidth').
'"> x ';
1610 print
'<input name="sizeheight" class="width50" value="'.GETPOST(
'sizeheight').
'">';
1611 print $formproduct->selectMeasuringUnits(
"size_units",
"size", GETPOSTISSET(
'size_units') ?
GETPOST(
'size_units',
'alpha') :
'0', 0, 2);
1616 print
'<tr><td>'.$langs->trans(
"Surface").
'</td><td>';
1617 print
'<input name="surface" size="4" value="'.GETPOST(
'surface').
'">';
1618 print $formproduct->selectMeasuringUnits(
"surface_units",
"surface", GETPOSTISSET(
'surface_units') ?
GETPOST(
'surface_units',
'alpha') :
'0', 0, 2);
1623 print
'<tr><td>'.$langs->trans(
"Volume").
'</td><td>';
1624 print
'<input name="volume" size="4" value="'.GETPOST(
'volume').
'">';
1625 print $formproduct->selectMeasuringUnits(
"volume_units",
"volume", GETPOSTISSET(
'volume_units') ?
GETPOST(
'volume_units',
'alpha') :
'0', 0, 2);
1631 print
'<tr><td>'.$langs->trans(
"NetMeasure").
'</td><td>';
1632 print
'<input name="net_measure" size="4" value="'.GETPOST(
'net_measure').
'">';
1633 print $formproduct->selectMeasuringUnits(
"net_measure_units",
'', GETPOSTISSET(
'net_measure_units') ?
GETPOST(
'net_measure_units',
'alpha') : (!
getDolGlobalString(
'MAIN_WEIGHT_DEFAULT_UNIT') ? 0 : $conf->global->MAIN_WEIGHT_DEFAULT_UNIT), 0, 0);
1640 print
'<tr><td>'.$langs->trans(
'DefaultUnitToShow').
'</td>';
1642 print $form->selectUnits(empty($line->fk_unit) ? $conf->global->PRODUCT_USE_UNITS : $line->fk_unit,
'units');
1648 print
'<tr><td class="wordbreak">'.$langs->trans(
"CustomCode").
'</td><td><input name="customcode" class="maxwidth100onsmartphone" value="'.
GETPOST(
'customcode').
'"></td></tr>';
1651 print
'<tr><td>'.$langs->trans(
"CountryOrigin").
'</td>';
1653 print
img_picto(
'',
'globe-americas',
'class="pictofixedwidth"');
1654 print $form->select_country((GETPOSTISSET(
'country_id') ?
GETPOST(
'country_id') :
$object->country_id),
'country_id',
'', 0,
'minwidth300 widthcentpercentminusx maxwidth500');
1656 print
info_admin($langs->trans(
"YouCanChangeValuesForThisListFromDictionarySetup"), 1);
1664 print
'<td>'.$form->editfieldkey(
'RegionStateOrigin',
'state_id',
'',
$object, 0).
'</td><td>';
1666 print
'<td>'.$form->editfieldkey(
'StateOrigin',
'state_id',
'',
$object, 0).
'</td><td>';
1669 print
img_picto(
'',
'state',
'class="pictofixedwidth"');
1670 print $formcompany->select_state(
$object->state_id,
$object->country_code);
1677 print
'<tr><td>'.$langs->trans(
"LifeTime").
'</td><td><input name="lifetime" class="maxwidth50" value="'.
GETPOST(
'lifetime').
'"></td></tr>';
1678 print
'<tr><td>'.$langs->trans(
"QCFrequency").
'</td><td><input name="qc_frequency" class="maxwidth50" value="'.
GETPOST(
'qc_frequency').
'"></td></tr>';
1682 $parameters = array(
'colspan' =>
' colspan="2"',
'cols' => 2);
1683 $reshook = $hookmanager->executeHooks(
'formObjectOptions', $parameters,
$object, $action);
1684 print $hookmanager->resPrint;
1685 if (empty($reshook)) {
1686 print
$object->showOptionals($extrafields,
'create', $parameters);
1692 print
'<tr><td class="tdtop">'.$langs->trans(
"NoteNotVisibleOnBill").
'</td><td>';
1695 $doleditor =
new DolEditor(
'note_private',
GETPOST(
'note_private',
'restricthtml'),
'', 140,
'dolibarr_details',
'',
false,
true,
getDolGlobalString(
'FCKEDITOR_ENABLE_NOTE_PRIVATE'), ROWS_8,
'90%');
1696 $doleditor->Create();
1701 if (isModEnabled(
'category')) {
1703 print
'<tr><td>'.$langs->trans(
"Categories").
'</td><td>';
1704 $cate_arbo = $form->select_all_categories(Categorie::TYPE_PRODUCT,
'',
'parent', 64, 0, 3);
1705 print
img_picto(
'',
'category',
'class="pictofixedwidth"').$form->multiselectarray(
'categories', $cate_arbo,
GETPOST(
'categories',
'array'),
'', 0,
'quatrevingtpercent widthcentpercentminusx', 0, 0);
1717 print
'<table class="border centpercent">';
1719 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"VATRate").
'</td><td>';
1721 print $form->load_tva(
"tva_tx", $defaultva, $mysoc, $mysoc, 0, 0,
'',
false, 1);
1728 print
'<table class="border centpercent">';
1731 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"SellingPrice").
'</td>';
1732 print
'<td><input name="price" class="maxwidth50" value="'.$object->price.
'">';
1733 print $form->selectPriceBaseType($conf->global->PRODUCT_PRICE_BASE_TYPE,
"price_base_type");
1737 print
'<tr><td>'.$langs->trans(
"MinPrice").
'</td>';
1738 print
'<td><input name="price_min" class="maxwidth50" value="'.$object->price_min.
'">';
1742 print
'<tr><td>'.$langs->trans(
"VATRate").
'</td><td>';
1744 print $form->load_tva(
"tva_tx", $defaultva, $mysoc, $mysoc, 0, 0,
'',
false, 1);
1754 print
'<!-- accountancy codes -->'.
"\n";
1755 print
'<table class="border centpercent">';
1758 if (isModEnabled(
'accounting')) {
1760 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"ProductAccountancySellCode").
'</td>';
1763 $accountancy_code_sell = (GETPOSTISSET(
'accountancy_code_sell') ?
GETPOST(
'accountancy_code_sell',
'alpha') :
getDolGlobalString(
"ACCOUNTING_PRODUCT_SOLD_ACCOUNT"));
1765 $accountancy_code_sell = (GETPOSTISSET(
'accountancy_code_sell') ?
GETPOST(
'accountancy_code_sell',
'alpha') :
getDolGlobalString(
"ACCOUNTING_SERVICE_SOLD_ACCOUNT"));
1767 print $formaccounting->select_account($accountancy_code_sell,
'accountancy_code_sell', 1,
null, 1, 1,
'minwidth150 maxwidth300', 1);
1771 if ($mysoc->isInEEC()) {
1772 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"ProductAccountancySellIntraCode").
'</td>';
1775 $accountancy_code_sell_intra = (GETPOSTISSET(
'accountancy_code_sell_intra') ?
GETPOST(
'accountancy_code_sell_intra',
'alpha') :
getDolGlobalString(
"ACCOUNTING_PRODUCT_SOLD_INTRA_ACCOUNT"));
1777 $accountancy_code_sell_intra = (GETPOSTISSET(
'accountancy_code_sell_intra') ?
GETPOST(
'accountancy_code_sell_intra',
'alpha') :
getDolGlobalString(
"ACCOUNTING_SERVICE_SOLD_INTRA_ACCOUNT"));
1779 print $formaccounting->select_account($accountancy_code_sell_intra,
'accountancy_code_sell_intra', 1,
null, 1, 1,
'minwidth150 maxwidth300', 1);
1784 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"ProductAccountancySellExportCode").
'</td>';
1787 $accountancy_code_sell_export = (
GETPOST(
'accountancy_code_sell_export') ?
GETPOST(
'accountancy_code_sell_export',
'alpha') :
getDolGlobalString(
"ACCOUNTING_PRODUCT_SOLD_EXPORT_ACCOUNT"));
1789 $accountancy_code_sell_export = (
GETPOST(
'accountancy_code_sell_export') ?
GETPOST(
'accountancy_code_sell_export',
'alpha') :
getDolGlobalString(
"ACCOUNTING_SERVICE_SOLD_EXPORT_ACCOUNT"));
1791 print $formaccounting->select_account($accountancy_code_sell_export,
'accountancy_code_sell_export', 1,
null, 1, 1,
'minwidth150 maxwidth300', 1);
1795 print
'<tr><td>'.$langs->trans(
"ProductAccountancyBuyCode").
'</td>';
1798 $accountancy_code_buy = (
GETPOST(
'accountancy_code_buy',
'alpha') ? (
GETPOST(
'accountancy_code_buy',
'alpha')) :
getDolGlobalString(
"ACCOUNTING_PRODUCT_BUY_ACCOUNT"));
1800 $accountancy_code_buy = (
GETPOST(
'accountancy_code_buy',
'alpha') ? (
GETPOST(
'accountancy_code_buy',
'alpha')) :
getDolGlobalString(
"ACCOUNTING_SERVICE_BUY_ACCOUNT"));
1802 print $formaccounting->select_account($accountancy_code_buy,
'accountancy_code_buy', 1,
null, 1, 1,
'minwidth150 maxwidth300', 1);
1806 if ($mysoc->isInEEC()) {
1807 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"ProductAccountancyBuyIntraCode").
'</td>';
1810 $accountancy_code_buy_intra = (GETPOSTISSET(
'accountancy_code_buy_intra') ?
GETPOST(
'accountancy_code_buy_intra',
'alpha') :
getDolGlobalString(
"ACCOUNTING_PRODUCT_BUY_INTRA_ACCOUNT"));
1812 $accountancy_code_buy_intra = (GETPOSTISSET(
'accountancy_code_buy_intra') ?
GETPOST(
'accountancy_code_buy_intra',
'alpha') :
getDolGlobalString(
"ACCOUNTING_SERVICE_BUY_INTRA_ACCOUNT"));
1814 print $formaccounting->select_account($accountancy_code_buy_intra,
'accountancy_code_buy_intra', 1,
null, 1, 1,
'minwidth150 maxwidth300', 1);
1819 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"ProductAccountancyBuyExportCode").
'</td>';
1822 $accountancy_code_buy_export = (
GETPOST(
'accountancy_code_buy_export') ?
GETPOST(
'accountancy_code_buy_export',
'alpha') :
getDolGlobalString(
"ACCOUNTING_PRODUCT_BUY_EXPORT_ACCOUNT"));
1824 $accountancy_code_buy_export = (
GETPOST(
'accountancy_code_buy_export') ?
GETPOST(
'accountancy_code_buy_export',
'alpha') :
getDolGlobalString(
"ACCOUNTING_SERVICE_BUY_EXPORT_ACCOUNT"));
1826 print $formaccounting->select_account($accountancy_code_buy_export,
'accountancy_code_buy_export', 1,
null, 1, 1,
'minwidth150 maxwidth300', 1);
1829 if (!empty($accountancy_code_sell)) {
1830 $object->accountancy_code_sell = $accountancy_code_sell;
1832 if (!empty($accountancy_code_sell_intra)) {
1833 $object->accountancy_code_sell_intra = $accountancy_code_sell_intra;
1835 if (!empty($accountancy_code_sell_export)) {
1836 $object->accountancy_code_sell_export = $accountancy_code_sell_export;
1838 if (!empty($accountancy_code_buy)) {
1839 $object->accountancy_code_buy = $accountancy_code_buy;
1841 if (!empty($accountancy_code_buy_intra)) {
1842 $object->accountancy_code_buy_intra = $accountancy_code_buy_intra;
1844 if (!empty($accountancy_code_buy_export)) {
1845 $object->accountancy_code_buy_export = $accountancy_code_buy_export;
1849 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"ProductAccountancySellCode").
'</td>';
1850 print
'<td class="maxwidthonsmartphone"><input class="minwidth150" name="accountancy_code_sell" value="'.$object->accountancy_code_sell.
'">';
1854 if ($mysoc->isInEEC()) {
1855 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"ProductAccountancySellIntraCode").
'</td>';
1856 print
'<td class="maxwidthonsmartphone"><input class="minwidth150" name="accountancy_code_sell_intra" value="'.$object->accountancy_code_sell_intra.
'">';
1861 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"ProductAccountancySellExportCode").
'</td>';
1862 print
'<td class="maxwidthonsmartphone"><input class="minwidth150" name="accountancy_code_sell_export" value="'.$object->accountancy_code_sell_export.
'">';
1866 print
'<tr><td>'.$langs->trans(
"ProductAccountancyBuyCode").
'</td>';
1867 print
'<td class="maxwidthonsmartphone"><input class="minwidth150" name="accountancy_code_buy" value="'.$object->accountancy_code_buy.
'">';
1871 if ($mysoc->isInEEC()) {
1872 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"ProductAccountancyBuyIntraCode").
'</td>';
1873 print
'<td class="maxwidthonsmartphone"><input class="minwidth150" name="accountancy_code_buy_intra" value="'.$object->accountancy_code_buy_intra.
'">';
1878 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"ProductAccountancyBuyExportCode").
'</td>';
1879 print
'<td class="maxwidthonsmartphone"><input class="minwidth150" name="accountancy_code_buy_export" value="'.$object->accountancy_code_buy_export.
'">';
1888 print $form->buttonsSaveCancel(
"Create");
1897 if ($action ==
'edit' && $usercancreate) {
1899 require_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
1901 if (!empty($conf->use_javascript_ajax)) {
1902 print
'<script type="text/javascript">';
1903 print
'$(document).ready(function () {
1904 $("#selectcountry_id").change(function () {
1905 document.formprod.action.value="edit";
1906 document.formprod.submit();
1909 print
'</script>'.
"\n";
1916 $object->country_code = $tmparray[
'code'];
1917 $object->country = $tmparray[
'label'];
1920 $type = $langs->trans(
'Product');
1922 $type = $langs->trans(
'Service');
1927 print
'<form action="'.$_SERVER[
'PHP_SELF'].
'?id='.
$object->id.
'" method="POST" name="formprod">'.
"\n";
1928 print
'<input type="hidden" name="token" value="'.newToken().
'">';
1929 print
'<input type="hidden" name="action" value="update">';
1930 print
'<input type="hidden" name="id" value="'.$object->id.
'">';
1931 print
'<input type="hidden" name="canvas" value="'.$object->canvas.
'">';
1934 $titre = $langs->trans(
"CardProduct".
$object->type);
1939 $parameters = array();
1941 $reshook = $hookmanager->executeHooks(
'tabContentEditProduct', $parameters,
$object, $action);
1943 if (empty($reshook)) {
1944 print
'<table class="border allwidth">';
1948 print
'<tr><td class="titlefieldcreate fieldrequired">'.$langs->trans(
"Ref").
'</td><td colspan="3"><input name="ref" class="maxwidth200" maxlength="128" value="'.
dol_escape_htmltag(GETPOSTISSET(
'ref') ?
GETPOST(
'ref') :
$object->
ref).
'"></td></tr>';
1950 print
'<tr><td class="titlefieldcreate fieldrequired">'.$langs->trans(
"Ref").
'</td><td colspan="3"><input name="ref" class="maxwidth200" maxlength="128" value="'.
dol_escape_htmltag(
$object->ref).
'" readonly="true"></td></tr>';
1954 print
'<tr><td class="fieldrequired">'.$langs->trans(
"Label").
'</td><td colspan="3"><input name="label" class="minwidth300 maxwidth400onsmartphone" maxlength="255" value="'.
dol_escape_htmltag(GETPOSTISSET(
'label') ?
GETPOST(
'label') :
$object->label).
'"></td></tr>';
1957 print
'<tr><td class="fieldrequired">'.$langs->trans(
"Status").
' ('.$langs->trans(
"Sell").
')</td><td colspan="3">';
1958 print
'<select class="flat" name="statut">';
1959 if ((GETPOSTISSET(
'statut') &&
GETPOST(
'statut')) || (!GETPOSTISSET(
'statut') &&
$object->status)) {
1960 print
'<option value="1" selected>'.$langs->trans(
"OnSell").
'</option>';
1961 print
'<option value="0">'.$langs->trans(
"NotOnSell").
'</option>';
1963 print
'<option value="1">'.$langs->trans(
"OnSell").
'</option>';
1964 print
'<option value="0" selected>'.$langs->trans(
"NotOnSell").
'</option>';
1970 print
'<tr><td class="fieldrequired">'.$langs->trans(
"Status").
' ('.$langs->trans(
"Buy").
')</td><td colspan="3">';
1971 print
'<select class="flat" name="statut_buy">';
1972 if ((GETPOSTISSET(
'statut_buy') &&
GETPOST(
'statut_buy')) || (!GETPOSTISSET(
'statut_buy') &&
$object->status_buy)) {
1973 print
'<option value="1" selected>'.$langs->trans(
"ProductStatusOnBuy").
'</option>';
1974 print
'<option value="0">'.$langs->trans(
"ProductStatusNotOnBuy").
'</option>';
1976 print
'<option value="1">'.$langs->trans(
"ProductStatusOnBuy").
'</option>';
1977 print
'<option value="0" selected>'.$langs->trans(
"ProductStatusNotOnBuy").
'</option>';
1983 if (isModEnabled(
'productbatch')) {
1985 print
'<tr><td>'.$langs->trans(
"ManageLotSerial").
'</td><td>';
1986 $statutarray = array(
'0' => $langs->trans(
"ProductStatusNotOnBatch"),
'1' => $langs->trans(
"ProductStatusOnBatch"),
'2' => $langs->trans(
"ProductStatusOnSerial"));
1988 print $form->selectarray(
'status_batch', $statutarray, GETPOSTISSET(
'status_batch') ?
GETPOST(
'status_batch') :
$object->status_batch);
1990 print
'<span id="statusBatchWarning" class="warning" style="display: none;">';
1991 print
img_warning().
' '.$langs->trans(
"WarningConvertFromBatchToSerial").
'</span>';
1993 print
'<span id="statusBatchMouvToGlobal" class="warning" style="display: none;">';
1994 print
img_warning().
' '.$langs->trans(
"WarningTransferBatchStockMouvToGlobal").
'</span>';
1998 print
'<script type="text/javascript">
1999 $(document).ready(function() {
2000 console.log($("#statusBatchWarning"))
2001 $("#status_batch").on("change", function() {
2002 if ($("#status_batch")[0].value == 0){
2003 $("#statusBatchMouvToGlobal").show()
2005 $("#statusBatchMouvToGlobal").hide()
2011 if (
$object->status_batch == 1) {
2012 print
'<script type="text/javascript">
2013 $(document).ready(function() {
2014 console.log($("#statusBatchWarning"))
2015 $("#status_batch").on("change", function() {
2016 if ($("#status_batch")[0].value == 2){
2017 $("#statusBatchWarning").show()
2019 $("#statusBatchWarning").hide()
2027 if (!empty(
$object->status_batch) || !empty($conf->use_javascript_ajax)) {
2028 $langs->load(
"admin");
2029 $tooltip = $langs->trans(
"GenericMaskCodes", $langs->transnoentities(
"Batch"), $langs->transnoentities(
"Batch"));
2030 $tooltip .=
'<br>'.$langs->trans(
"GenericMaskCodes2");
2031 $tooltip .=
'<br>'.$langs->trans(
"GenericMaskCodes3");
2032 $tooltip .=
'<br>'.$langs->trans(
"GenericMaskCodes4a", $langs->transnoentities(
"Batch"), $langs->transnoentities(
"Batch"));
2033 $tooltip .=
'<br>'.$langs->trans(
"GenericMaskCodes5");
2036 print
'<tr><td id="mask_option">'.$langs->trans(
"ManageLotMask").
'</td>';
2046 print
'<td id="field_mask">';
2047 print $form->textwithpicto(
'<input type="text" class="flat minwidth175" name="batch_mask" id="batch_mask_input" value="'.$mask.
'">', $tooltip, 1, 1);
2049 if (!empty($conf->use_javascript_ajax)) {
2050 print
'<script type="text/javascript">
2051 $(document).ready(function() {
2052 $("#field_mask").parent().addClass("hideobject");
2053 var preselect = document.getElementById("status_batch");';
2055 print
'if (preselect.value == "2") {
2056 $("#field_mask").parent().removeClass("hideobject");
2060 print
'if (preselect.value == "1") {
2061 $("#field_mask").parent().removeClass("hideobject");
2064 print
'$("#status_batch").on("change", function () {
2065 var optionSelected = $("option:selected", this);
2066 var valueSelected = this.value;
2067 $("#field_mask").parent().addClass("hideobject");
2071 if (this.value == 1) {
2072 $("#field_mask").parent().removeClass("hideobject");
2073 $("#batch_mask_input").val("'.$inherited_mask_lot.
'");
2079 if (this.value == 2) {
2080 $("#field_mask").parent().removeClass("hideobject");
2081 $("#batch_mask_input").val("'.$inherited_mask_sn.
'");
2095 if (!empty($sellOrEatByMandatoryList)) {
2096 if (GETPOSTISSET(
'sell_or_eat_by_mandatory')) {
2097 $sellOrEatByMandatorySelectedId =
GETPOSTINT(
'sell_or_eat_by_mandatory');
2099 $sellOrEatByMandatorySelectedId =
$object->sell_or_eat_by_mandatory;
2101 print
'<tr><td>'.$langs->trans(
'BatchSellOrEatByMandatoryList', $langs->trans(
'SellByDate'), $langs->trans(
'EatByDate')).
'</td><td>';
2102 print $form->selectarray(
'sell_or_eat_by_mandatory', $sellOrEatByMandatoryList, $sellOrEatByMandatorySelectedId);
2108 $showbarcode = isModEnabled(
'barcode');
2109 if (
getDolGlobalString(
'MAIN_USE_ADVANCED_PERMS') && !$user->hasRight(
'barcode',
'lire_advance')) {
2114 print
'<tr><td>'.$langs->trans(
'BarcodeType').
'</td><td>';
2115 if (GETPOSTISSET(
'fk_barcode_type')) {
2116 $fk_barcode_type =
GETPOST(
'fk_barcode_type');
2118 $fk_barcode_type =
$object->barcode_type;
2123 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formbarcode.class.php';
2125 print $formbarcode->selectBarcodeType($fk_barcode_type,
'fk_barcode_type', 1);
2127 print
'<tr><td>'.$langs->trans(
"BarcodeValue").
'</td><td>';
2128 $tmpcode = GETPOSTISSET(
'barcode') ?
GETPOST(
'barcode') :
$object->barcode;
2129 if (empty($tmpcode) && !empty($modBarCodeProduct->code_auto)) {
2130 $tmpcode = $modBarCodeProduct->getNextValue(
$object, $fk_barcode_type);
2132 print
'<input class="maxwidth150 maxwidthonsmartphone" type="text" name="barcode" value="'.dol_escape_htmltag($tmpcode).
'">';
2137 print
'<tr><td class="tdtop">'.$langs->trans(
"Description").
'</td><td>';
2140 $doleditor =
new DolEditor(
'desc', GETPOSTISSET(
'desc') ?
GETPOST(
'desc',
'restricthtml') :
$object->
description,
'', 160,
'dolibarr_details',
'', false, true,
getDolGlobalInt(
'FCKEDITOR_ENABLE_DETAILS'), ROWS_4,
'90%');
2141 $doleditor->Create();
2148 print
'<tr><td>'.$langs->trans(
"PublicUrl").
'</td><td>';
2149 print
img_picto(
'',
'globe',
'class="pictofixedwidth"');
2150 print
'<input type="text" name="url" class="maxwidth500 widthcentpercentminusx" value="'.(GETPOSTISSET(
'url') ?
GETPOST(
'url') :
$object->url).
'">';
2157 print
'<tr><td>'.$langs->trans(
"DefaultWarehouse").
'</td><td>';
2158 print
img_picto($langs->trans(
"DefaultWarehouse"),
'stock',
'class="pictofixedwidth"');
2159 print $formproduct->selectWarehouses((GETPOSTISSET(
'fk_default_warehouse') ?
GETPOST(
'fk_default_warehouse') :
$object->fk_default_warehouse),
'fk_default_warehouse',
'warehouseopen', 1, 0, 0,
'', 0, 0, array(),
'maxwidth500 widthcentpercentminusxx');
2160 print
' <a href="'.DOL_URL_ROOT.
'/product/stock/card.php?action=create&backtopage='.urlencode($_SERVER[
'PHP_SELF'].
'?action=edit&id='.((
int)
$object->id)).
'">';
2161 print
'<span class="fa fa-plus-circle valignmiddle paddingleft" title="'.$langs->trans(
"AddWarehouse").
'"></span></a>';
2174 if (
$object->isService() && isModEnabled(
'workstation')) {
2176 print
'<tr><td>'.$langs->trans(
"DefaultWorkstation").
'</td><td>';
2177 print
img_picto($langs->trans(
"DefaultWorkstation"),
'workstation',
'class="pictofixedwidth"');
2178 print $formproduct->selectWorkstations(
$object->fk_default_workstation,
'fk_default_workstation', 1);
2191 print
'<tr><td>'.$langs->trans(
"Duration").
'</td><td>';
2192 print
'<input name="duration_value" size="5" value="'.$object->duration_value.
'"> ';
2193 print $formproduct->selectMeasuringUnits(
"duration_unit",
"time",
$object->duration_unit, 0, 1);
2196 print
' ';
2197 print
'<input type="checkbox" id="mandatoryperiod" name="mandatoryperiod"'.($object->mandatory_period == 1 ?
' checked="checked"' :
'').
'>';
2198 print
'<label for="mandatoryperiod">';
2199 $htmltooltip = $langs->trans(
"mandatoryHelper");
2201 $htmltooltip .=
'<br>'.$langs->trans(
"mandatoryHelper2");
2203 print $form->textwithpicto($langs->trans(
"mandatoryperiod"), $htmltooltip, 1, 0);
2210 print
'<tr><td>'.$form->textwithpicto($langs->trans(
"NatureOfProductShort"), $langs->trans(
"NatureOfProductDesc")).
'</td><td>';
2211 print $formproduct->selectProductNature(
'finished', (GETPOSTISSET(
'finished') ?
GETPOST(
'finished') :
$object->finished));
2216 if (!
$object->isService() && isModEnabled(
'bom')) {
2217 print
'<tr><td>'.$form->textwithpicto($langs->trans(
"DefaultBOM"), $langs->trans(
"DefaultBOMDesc", $langs->transnoentitiesnoconv(
"Finished"))).
'</td><td>';
2218 $bomkey =
"Bom:bom/class/bom.class.php:0:(t.status:=:1) AND (t.fk_product:=:".((int)
$object->id).
')';
2219 print $form->selectForForms($bomkey,
'fk_default_bom', (GETPOSTISSET(
'fk_default_bom') ?
GETPOST(
'fk_default_bom') :
$object->fk_default_bom), 1);
2226 print
'<tr><td>'.$langs->trans(
"Weight").
'</td><td>';
2227 print
'<input name="weight" size="5" value="'.(GETPOSTISSET(
'weight') ?
GETPOST(
'weight') :
$object->weight).
'"> ';
2228 print $formproduct->selectMeasuringUnits(
"weight_units",
"weight", GETPOSTISSET(
'weight_units') ?
GETPOST(
'weight_units') :
$object->weight_units, 0, 2);
2234 print
'<tr><td>'.$langs->trans(
"Length").
' x '.$langs->trans(
"Width").
' x '.$langs->trans(
"Height").
'</td><td>';
2235 print
'<input name="size" size="5" value="'.(GETPOSTISSET(
'size') ?
GETPOST(
'size') :
$object->length).
'">x';
2236 print
'<input name="sizewidth" size="5" value="'.(GETPOSTISSET(
'sizewidth') ?
GETPOST(
'sizewidth') :
$object->width).
'">x';
2237 print
'<input name="sizeheight" size="5" value="'.(GETPOSTISSET(
'sizeheight') ?
GETPOST(
'sizeheight') :
$object->height).
'"> ';
2238 print $formproduct->selectMeasuringUnits(
"size_units",
"size", GETPOSTISSET(
'size_units') ?
GETPOST(
'size_units') :
$object->length_units, 0, 2);
2243 print
'<tr><td>'.$langs->trans(
"Surface").
'</td><td>';
2244 print
'<input name="surface" size="5" value="'.(GETPOSTISSET(
'surface') ?
GETPOST(
'surface') :
$object->surface).
'"> ';
2245 print $formproduct->selectMeasuringUnits(
"surface_units",
"surface", GETPOSTISSET(
'surface_units') ?
GETPOST(
'surface_units') :
$object->surface_units, 0, 2);
2250 print
'<tr><td>'.$langs->trans(
"Volume").
'</td><td>';
2251 print
'<input name="volume" size="5" value="'.(GETPOSTISSET(
'volume') ?
GETPOST(
'volume') :
$object->volume).
'"> ';
2252 print $formproduct->selectMeasuringUnits(
"volume_units",
"volume", GETPOSTISSET(
'volume_units') ?
GETPOST(
'volume_units') :
$object->volume_units, 0, 2);
2258 print
'<tr><td>'.$langs->trans(
"NetMeasure").
'</td><td>';
2259 print
'<input name="net_measure" size="5" value="'.(GETPOSTISSET(
'net_measure') ?
GETPOST(
'net_measure') :
$object->net_measure).
'"> ';
2260 print $formproduct->selectMeasuringUnits(
"net_measure_units",
"", GETPOSTISSET(
'net_measure_units') ?
GETPOST(
'net_measure_units') :
$object->net_measure_units, 0, 0);
2266 print
'<tr><td>'.$langs->trans(
'DefaultUnitToShow').
'</td>';
2268 print $form->selectUnits(
$object->fk_unit,
'units');
2274 print
'<tr><td class="wordbreak">'.$langs->trans(
"CustomCode").
'</td><td><input name="customcode" class="maxwidth100onsmartphone" value="'.(GETPOSTISSET(
'customcode') ?
GETPOST(
'customcode') :
$object->customcode).
'"></td></tr>';
2276 print
'<tr><td>'.$langs->trans(
"CountryOrigin").
'</td>';
2278 print
img_picto(
'',
'globe-americas',
'class="paddingrightonly"');
2279 print $form->select_country(GETPOSTISSET(
'country_id') ?
GETPOSTINT(
'country_id') :
$object->country_id,
'country_id',
'', 0,
'minwidth100 maxwidthonsmartphone');
2281 print
info_admin($langs->trans(
"YouCanChangeValuesForThisListFromDictionarySetup"), 1);
2289 print
'<td>'.$form->editfieldkey(
'RegionStateOrigin',
'state_id',
'',
$object, 0).
'</td><td>';
2291 print
'<td>'.$form->editfieldkey(
'StateOrigin',
'state_id',
'',
$object, 0).
'</td><td>';
2294 print
img_picto(
'',
'state',
'class="pictofixedwidth"');
2295 print $formcompany->select_state(GETPOSTISSET(
'state_id') ?
GETPOSTINT(
'state_id') :
$object->state_id,
$object->country_code);
2303 print
'<tr><td>'.$langs->trans(
"LifeTime").
'</td><td><input name="lifetime" class="maxwidth100onsmartphone" value="'.
$object->lifetime.
'"></td></tr>';
2304 print
'<tr><td>'.$langs->trans(
"QCFrequency").
'</td><td><input name="qc_frequency" class="maxwidth100onsmartphone" value="'.
$object->qc_frequency.
'"></td></tr>';
2308 $parameters = array(
'colspan' =>
' colspan="2"',
'cols' => 2);
2309 $reshook = $hookmanager->executeHooks(
'formObjectOptions', $parameters,
$object, $action);
2310 print $hookmanager->resPrint;
2311 if (empty($reshook)) {
2312 print
$object->showOptionals($extrafields,
'edit', $parameters);
2316 if (isModEnabled(
'category')) {
2317 print
'<tr><td>'.$langs->trans(
"Categories").
'</td><td>';
2318 $cate_arbo = $form->select_all_categories(Categorie::TYPE_PRODUCT,
'',
'parent', 64, 0, 3);
2320 $cats = $c->containing(
$object->id, Categorie::TYPE_PRODUCT);
2321 $arrayselected = array();
2322 if (is_array($cats)) {
2323 foreach ($cats as $cat) {
2324 $arrayselected[] = $cat->id;
2328 foreach (
GETPOST(
'categories',
'array') as $cat) {
2329 $arrayselected[] = $cat;
2332 print
img_picto(
'',
'category',
'class="pictofixedwidth"').$form->multiselectarray(
'categories', $cate_arbo, $arrayselected,
'', 0,
'quatrevingtpercent widthcentpercentminusx', 0, 0);
2338 print
'<tr><td class="tdtop">'.$langs->trans(
"NoteNotVisibleOnBill").
'</td><td>';
2340 $doleditor =
new DolEditor(
'note_private',
$object->note_private,
'', 140,
'dolibarr_notes',
'',
false,
true,
getDolGlobalInt(
'FCKEDITOR_ENABLE_NOTE_PRIVATE'), ROWS_4,
'90%');
2341 $doleditor->Create();
2350 print
'<table class="border centpercent">';
2353 if (isModEnabled(
'accounting')) {
2355 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"ProductAccountancySellCode").
'</td>';
2357 print $formaccounting->select_account((GETPOSTISSET(
'accountancy_code_sell') ?
GETPOST(
'accountancy_code_sell') :
$object->accountancy_code_sell),
'accountancy_code_sell', 1,
'', 1, 1,
'minwidth150 maxwidth300');
2361 if ($mysoc->isInEEC()) {
2362 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"ProductAccountancySellIntraCode").
'</td>';
2364 print $formaccounting->select_account((GETPOSTISSET(
'accountancy_code_sell_intra') ?
GETPOST(
'accountancy_code_sell_intra') :
$object->accountancy_code_sell_intra),
'accountancy_code_sell_intra', 1,
'', 1, 1,
'minwidth150 maxwidth300');
2369 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"ProductAccountancySellExportCode").
'</td>';
2371 print $formaccounting->select_account((GETPOSTISSET(
'accountancy_code_sell_export') ?
GETPOST(
'accountancy_code_sell_export') :
$object->accountancy_code_sell_export),
'accountancy_code_sell_export', 1,
'', 1, 1,
'minwidth150 maxwidth300');
2375 print
'<tr><td>'.$langs->trans(
"ProductAccountancyBuyCode").
'</td>';
2377 print $formaccounting->select_account((GETPOSTISSET(
'accountancy_code_buy') ?
GETPOST(
'accountancy_code_buy') :
$object->accountancy_code_buy),
'accountancy_code_buy', 1,
'', 1, 1,
'minwidth150 maxwidth300');
2381 if ($mysoc->isInEEC()) {
2382 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"ProductAccountancyBuyIntraCode").
'</td>';
2384 print $formaccounting->select_account((GETPOSTISSET(
'accountancy_code_buy_intra') ?
GETPOST(
'accountancy_code_buy_intra') :
$object->accountancy_code_buy_intra),
'accountancy_code_buy_intra', 1,
'', 1, 1,
'minwidth150 maxwidth300');
2389 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"ProductAccountancyBuyExportCode").
'</td>';
2391 print $formaccounting->select_account((GETPOSTISSET(
'accountancy_code_buy_export') ?
GETPOST(
'accountancy_code_buy_export') :
$object->accountancy_code_buy_export),
'accountancy_code_buy_export', 1,
'', 1, 1,
'minwidth150 maxwidth300');
2396 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"ProductAccountancySellCode").
'</td>';
2397 print
'<td><input name="accountancy_code_sell" class="maxwidth200" value="'.(GETPOSTISSET(
'accountancy_code_sell') ?
GETPOST(
'accountancy_code_sell') :
$object->accountancy_code_sell).
'">';
2401 if ($mysoc->isInEEC()) {
2402 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"ProductAccountancySellIntraCode").
'</td>';
2403 print
'<td><input name="accountancy_code_sell_intra" class="maxwidth200" value="'.(GETPOSTISSET(
'accountancy_code_sell_intra') ?
GETPOST(
'accountancy_code_sell_intra') :
$object->accountancy_code_sell_intra).
'">';
2408 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"ProductAccountancySellExportCode").
'</td>';
2409 print
'<td><input name="accountancy_code_sell_export" class="maxwidth200" value="'.(GETPOSTISSET(
'accountancy_code_sell_export') ?
GETPOST(
'accountancy_code_sell_export') :
$object->accountancy_code_sell_export).
'">';
2413 print
'<tr><td>'.$langs->trans(
"ProductAccountancyBuyCode").
'</td>';
2414 print
'<td><input name="accountancy_code_buy" class="maxwidth200" value="'.(GETPOSTISSET(
'accountancy_code_buy') ?
GETPOST(
'accountancy_code_buy') :
$object->accountancy_code_buy).
'">';
2418 if ($mysoc->isInEEC()) {
2419 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"ProductAccountancyBuyIntraCode").
'</td>';
2420 print
'<td><input name="accountancy_code_buy_intra" class="maxwidth200" value="'.(GETPOSTISSET(
'accountancy_code_buy_intra') ?
GETPOST(
'accountancy_code_buy_intra') :
$object->accountancy_code_buy_intra).
'">';
2425 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"ProductAccountancyBuyExportCode").
'</td>';
2426 print
'<td><input name="accountancy_code_buy_export" class="maxwidth200" value="'.(GETPOSTISSET(
'accountancy_code_buy_export') ?
GETPOST(
'accountancy_code_buy_export') :
$object->accountancy_code_buy_export).
'">';
2435 print $form->buttonsSaveCancel();
2441 $showbarcode = isModEnabled(
'barcode');
2442 if (
getDolGlobalString(
'MAIN_USE_ADVANCED_PERMS') && !$user->hasRight(
'barcode',
'lire_advance')) {
2447 $titre = $langs->trans(
"CardProduct".
$object->type);
2452 $linkback =
'<a href="'.DOL_URL_ROOT.
'/product/list.php?restore_lastsearch_values=1&type='.
$object->type.
'">'.$langs->trans(
"BackToList").
'</a>';
2453 $object->next_prev_filter =
"fk_product_type:=:".((int)
$object->type);
2456 if ($user->socid && !in_array(
'product', explode(
',',
getDolGlobalString(
'MAIN_MODULES_FOR_EXTERNAL')))) {
2460 dol_banner_tab(
$object,
'ref', $linkback, $shownav,
'ref');
2463 $parameters = array();
2465 $reshook = $hookmanager->executeHooks(
'tabContentViewProduct', $parameters,
$object, $action);
2466 if (empty($reshook)) {
2467 print
'<div class="fichecenter">';
2468 print
'<div class="fichehalfleft">';
2470 print
'<div class="underbanner clearboth"></div>';
2471 print
'<table class="border tableforfield centpercent">';
2474 if (isModEnabled(
"product") && isModEnabled(
"service")) {
2475 $typeformat =
'select;0:'.$langs->trans(
"Product").
',1:'.$langs->trans(
"Service");
2476 print
'<tr><td class="titlefield">';
2477 print (!
getDolGlobalString(
'PRODUCT_DENY_CHANGE_PRODUCT_TYPE')) ? $form->editfieldkey(
"Type",
'fk_product_type',
$object->type,
$object, $usercancreate, $typeformat) : $langs->trans(
'Type');
2479 print $form->editfieldval(
"Type",
'fk_product_type',
$object->type,
$object, $usercancreate, $typeformat);
2485 print
'<tr><td class="nowrap">';
2486 print
'<table width="100%" class="nobordernopadding"><tr><td class="nowrap">';
2487 print $langs->trans(
"BarcodeType");
2489 if (($action !=
'editbarcodetype') && $usercancreate && $createbarcode) {
2490 print
'<td class="right"><a class="editfielda" href="'.$_SERVER[
"PHP_SELF"].
'?action=editbarcodetype&id='.
$object->id.
'&token='.
newToken().
'">'.
img_edit($langs->trans(
'Edit'), 1).
'</a></td>';
2492 print
'</tr></table>';
2494 if ($action ==
'editbarcodetype' || $action ==
'editbarcode') {
2495 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formbarcode.class.php';
2499 $fk_barcode_type =
'';
2500 if ($action ==
'editbarcodetype') {
2501 print $formbarcode->formBarcodeType($_SERVER[
'PHP_SELF'].
'?id='.
$object->id,
$object->barcode_type,
'fk_barcode_type');
2502 $fk_barcode_type =
$object->barcode_type;
2505 $fk_barcode_type =
$object->barcode_type;
2506 print
$object->barcode_type_label ?
$object->barcode_type_label : (
$object->barcode ?
'<div class="warning">'.$langs->trans(
"SetDefaultBarcodeType").
'<div>' :
'');
2508 print
'</td></tr>'.
"\n";
2511 print
'<tr><td class="nowrap">';
2512 print
'<table width="100%" class="nobordernopadding"><tr><td class="nowrap">';
2513 print $langs->trans(
"BarcodeValue");
2515 if (($action !=
'editbarcode') && $usercancreate && $createbarcode) {
2516 print
'<td class="right"><a class="editfielda" href="'.$_SERVER[
"PHP_SELF"].
'?action=editbarcode&id='.
$object->id.
'&token='.
newToken().
'">'.
img_edit($langs->trans(
'Edit'), 1).
'</a></td>';
2518 print
'</tr></table>';
2519 print
'</td><td class="wordbreak">';
2520 if ($action ==
'editbarcode') {
2521 $tmpcode = GETPOSTISSET(
'barcode') ?
GETPOST(
'barcode') :
$object->barcode;
2522 if (empty($tmpcode) && !empty($modBarCodeProduct->code_auto)) {
2523 $tmpcode = $modBarCodeProduct->getNextValue(
$object, $fk_barcode_type);
2526 print
'<form method="post" action="'.$_SERVER[
"PHP_SELF"].
'?id='.
$object->id.
'">';
2527 print
'<input type="hidden" name="token" value="'.newToken().
'">';
2528 print
'<input type="hidden" name="action" value="setbarcode">';
2529 print
'<input type="hidden" name="barcode_type_code" value="'.$object->barcode_type_code.
'">';
2530 print
'<input class="width300" class="maxwidthonsmartphone" type="text" name="barcode" value="'.$tmpcode.
'">';
2531 print
' <input type="submit" class="button smallpaddingimp" value="'.$langs->trans(
"Modify").
'">';
2536 print
'</td></tr>'.
"\n";
2540 if (isModEnabled(
'productbatch')) {
2542 print
'<tr><td>'.$langs->trans(
"ManageLotSerial").
'</td><td>';
2543 print
$object->getLibStatut(0, 2);
2547 print
'<tr><td>'.$langs->trans(
"ManageLotMask").
'</td><td>';
2553 print
'<tr><td>'.$langs->trans(
'BatchSellOrEatByMandatoryList', $langs->trans(
'SellByDate'), $langs->trans(
'EatByDate')).
'</td><td>';
2554 print
$object->getSellOrEatByMandatoryLabel();
2560 print
'<tr><td class="nowrap">';
2561 print $langs->trans(
"ProductAccountancySellCode");
2563 if (isModEnabled(
'accounting')) {
2564 if (!empty(
$object->accountancy_code_sell)) {
2566 $accountingaccount->fetch(
'',
$object->accountancy_code_sell, 1);
2568 print $accountingaccount->getNomUrl(0, 1, 1,
'', 1);
2571 print
$object->accountancy_code_sell;
2576 if ($mysoc->isInEEC()) {
2577 print
'<tr><td class="nowrap">';
2578 print $langs->trans(
"ProductAccountancySellIntraCode");
2580 if (isModEnabled(
'accounting')) {
2581 if (!empty(
$object->accountancy_code_sell_intra)) {
2583 $accountingaccount2->fetch(
'',
$object->accountancy_code_sell_intra, 1);
2585 print $accountingaccount2->getNomUrl(0, 1, 1,
'', 1);
2588 print
$object->accountancy_code_sell_intra;
2594 print
'<tr><td class="nowrap">';
2595 print $langs->trans(
"ProductAccountancySellExportCode");
2597 if (isModEnabled(
'accounting')) {
2598 if (!empty(
$object->accountancy_code_sell_export)) {
2600 $accountingaccount3->fetch(
'',
$object->accountancy_code_sell_export, 1);
2602 print $accountingaccount3->getNomUrl(0, 1, 1,
'', 1);
2605 print
$object->accountancy_code_sell_export;
2610 print
'<tr><td class="nowrap">';
2611 print $langs->trans(
"ProductAccountancyBuyCode");
2613 if (isModEnabled(
'accounting')) {
2614 if (!empty(
$object->accountancy_code_buy)) {
2616 $accountingaccount4->fetch(
'',
$object->accountancy_code_buy, 1);
2618 print $accountingaccount4->getNomUrl(0, 1, 1,
'', 1);
2621 print
$object->accountancy_code_buy;
2626 if ($mysoc->isInEEC()) {
2627 print
'<tr><td class="nowrap">';
2628 print $langs->trans(
"ProductAccountancyBuyIntraCode");
2630 if (isModEnabled(
'accounting')) {
2631 if (!empty(
$object->accountancy_code_buy_intra)) {
2633 $accountingaccount5->fetch(
'',
$object->accountancy_code_buy_intra, 1);
2635 print $accountingaccount5->getNomUrl(0, 1, 1,
'', 1);
2638 print
$object->accountancy_code_buy_intra;
2644 print
'<tr><td class="nowrap">';
2645 print $langs->trans(
"ProductAccountancyBuyExportCode");
2647 if (isModEnabled(
'accounting')) {
2648 if (!empty(
$object->accountancy_code_buy_export)) {
2650 $accountingaccount6->fetch(
'',
$object->accountancy_code_buy_export, 1);
2652 print $accountingaccount6->getNomUrl(0, 1, 1,
'', 1);
2655 print
$object->accountancy_code_buy_export;
2661 print
'<tr><td class="tdtop">'.$langs->trans(
"Description").
'</td>';
2662 print
'<td class="wordbreakimp wrapimp"><div class="longmessagecut">'.(dol_textishtml(
$object->description) ?
$object->description :
dol_nl2br(
$object->description, 1,
true)).
'</div></td></tr>';
2666 print
'<tr><td>'.$langs->trans(
"PublicUrl").
'</td><td>';
2674 $warehouse->fetch(
$object->fk_default_warehouse);
2676 print
'<tr><td>'.$langs->trans(
"DefaultWarehouse").
'</td><td>';
2677 print(!empty($warehouse->id) ? $warehouse->getNomUrl(1) :
'');
2681 if (
$object->isService() && isModEnabled(
'workstation')) {
2683 $res = $workstation->fetch(
$object->fk_default_workstation);
2685 print
'<tr><td>'.$langs->trans(
"DefaultWorkstation").
'</td><td>';
2686 print(!empty($workstation->id) ? $workstation->getNomUrl(1) :
'');
2691 if (isModEnabled(
'variants') && (
$object->isProduct() ||
$object->isService())) {
2694 if ($combination->fetchByFkProductChild(
$object->id) > 0) {
2695 $prodstatic =
new Product($db);
2696 $prodstatic->fetch($combination->fk_product_parent);
2699 print
'<tr><td>'.$langs->trans(
"ParentProduct").
'</td><td>';
2700 print $prodstatic->getNomUrl(1);
2707 print
'<div class="fichehalfright">';
2709 print
'<div class="underbanner clearboth"></div>';
2710 print
'<table class="border tableforfield centpercent">';
2714 print
'<tr><td class="titlefieldmiddle">'.$langs->trans(
"Duration").
'</td><td>';
2715 print
$object->duration_value;
2716 if (
$object->duration_value > 1) {
2717 $dur = array(
"i" => $langs->trans(
"Minute"),
"h" => $langs->trans(
"Hours"),
"d" => $langs->trans(
"Days"),
"w" => $langs->trans(
"Weeks"),
"m" => $langs->trans(
"Months"),
"y" => $langs->trans(
"Years"));
2718 } elseif (
$object->duration_value > 0) {
2719 $dur = array(
"i" => $langs->trans(
"Minute"),
"h" => $langs->trans(
"Hour"),
"d" => $langs->trans(
"Day"),
"w" => $langs->trans(
"Week"),
"m" => $langs->trans(
"Month"),
"y" => $langs->trans(
"Year"));
2721 print(!empty(
$object->duration_unit) && isset($dur[
$object->duration_unit]) ?
" ".$langs->trans($dur[
$object->duration_unit]).
" " :
'');
2724 if (
$object->duration_value > 0) {
2725 print
' ';
2727 $htmltooltip = $langs->trans(
"mandatoryHelper");
2729 $htmltooltip .=
'<br>'.$langs->trans(
"mandatoryHelper2");
2731 print
'<input type="checkbox" class="" name="mandatoryperiod"'.($object->mandatory_period == 1 ?
' checked="checked"' :
'').
' disabled>';
2732 print $form->textwithpicto($langs->trans(
"mandatoryperiod"), $htmltooltip, 1, 0);
2738 print
'<tr><td class="titlefieldmiddle">'.$form->textwithpicto($langs->trans(
"NatureOfProductShort"), $langs->trans(
"NatureOfProductDesc")).
'</td><td>';
2739 print
$object->getLibFinished();
2744 if (!
$object->isService() && isModEnabled(
'bom') &&
$object->finished) {
2745 print
'<tr><td class="titlefieldmiddle">'.$form->textwithpicto($langs->trans(
"DefaultBOM"), $langs->trans(
"DefaultBOMDesc", $langs->transnoentitiesnoconv(
"Finished"))).
'</td><td>';
2746 if (
$object->fk_default_bom) {
2747 $bom_static =
new BOM($db);
2748 $bom_static->fetch(
$object->fk_default_bom);
2749 print $bom_static->getNomUrl(1);
2757 print
'<tr><td class="titlefieldmiddle">'.$langs->trans(
"Weight").
'</td><td>';
2763 print
"</td></tr>\n";
2768 print
'<tr><td>'.$langs->trans(
"Length").
' x '.$langs->trans(
"Width").
' x '.$langs->trans(
"Height").
'</td><td>';
2772 print
" x ".$object->width;
2775 print
" x ".$object->height;
2777 print
' '.measuringUnitString(0,
"size",
$object->length_units);
2781 print
"</td></tr>\n";
2785 print
'<tr><td>'.$langs->trans(
"Surface").
'</td><td>';
2791 print
"</td></tr>\n";
2795 print
'<tr><td>'.$langs->trans(
"Volume").
'</td><td>';
2801 print
"</td></tr>\n";
2806 print
'<tr><td class="titlefieldmiddle">'.$langs->trans(
"NetMeasure").
'</td><td>';
2807 if (
$object->net_measure !=
'') {
2818 $unit =
$object->getLabelOfUnit();
2820 print
'<tr><td>'.$langs->trans(
'DefaultUnitToShow').
'</td><td>';
2822 print $langs->trans($unit);
2829 print
'<tr><td>'.$langs->trans(
"CustomCode").
'</td><td>'.
$object->customcode.
'</td></tr>';
2832 print
'<tr><td>'.$langs->trans(
"Origin").
'</td><td>'.
getCountry(
$object->country_id, 0, $db);
2833 if (!empty(
$object->state_id)) {
2834 print
' - '.getState(
$object->state_id, 0, $db);
2841 print
'<tr><td>'.$langs->trans(
"LifeTime").
'</td><td>'.
$object->lifetime.
'</td></tr>';
2842 print
'<tr><td>'.$langs->trans(
"QCFrequency").
'</td><td>'.
$object->qc_frequency.
'</td></tr>';
2846 $parameters = array();
2847 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_view.tpl.php';
2850 if (isModEnabled(
'category')) {
2851 print
'<tr><td class="valignmiddle">'.$langs->trans(
"Categories").
'</td><td>';
2852 print $form->showCategories(
$object->id, Categorie::TYPE_PRODUCT, 1);
2858 print
'<!-- show Note --> '.
"\n";
2860 print
'<!-- End show Note --> '.
"\n";
2867 print
'<div class="clearboth"></div>';
2872 } elseif ($action !=
'create') {
2878if (!empty($modCodeProduct->code_auto)) {
2879 $tmpcode = $modCodeProduct->getNextValue(
$object,
$object->type);
2885if (($action ==
'delete' && (empty($conf->use_javascript_ajax) || !empty($conf->dol_use_jmobile)))
2886 || (!empty($conf->use_javascript_ajax) && empty($conf->dol_use_jmobile))) {
2887 $formconfirm = $form->formconfirm(
"card.php?id=".
$object->id, $langs->trans(
"DeleteProduct"), $langs->trans(
"ConfirmDeleteProduct"),
"confirm_delete",
'', 0,
"action-delete");
2889if ($action ==
'merge') {
2890 $formquestion = array(
2892 'name' =>
'product_origin',
2893 'label' => $langs->trans(
'MergeOriginProduct'),
2895 'value' => $form->select_produits(
'',
'product_origin',
'', 0, 0, 1, 2,
'', 1, array(), 0, 1, 0,
'minwidth200', 0,
'',
null, 1),
2898 $formconfirm = $form->formconfirm($_SERVER[
"PHP_SELF"].
"?id=".
$object->id, $langs->trans(
"MergeProducts"), $langs->trans(
"ConfirmMergeProducts"),
"confirm_merge", $formquestion,
'no', 1, 250);
2902if (($action ==
'clone' && (empty($conf->use_javascript_ajax) || !empty($conf->dol_use_jmobile)))
2903 || (!empty($conf->use_javascript_ajax) && empty($conf->dol_use_jmobile))) {
2905 $formquestionclone = array(
2906 'text' => $langs->trans(
"ConfirmClone"),
2907 0 => array(
'type' =>
'text',
'name' =>
'clone_ref',
'label' => $langs->trans(
"NewRefForClone"),
'value' => empty($tmpcode) ? $langs->trans(
"CopyOf").
' '.
$object->ref : $tmpcode,
'morecss' =>
'width150'),
2908 1 => array(
'type' =>
'checkbox',
'name' =>
'clone_content',
'label' => $langs->trans(
"CloneContentProduct"),
'value' => 1),
2909 2 => array(
'type' =>
'checkbox',
'name' =>
'clone_categories',
'label' => $langs->trans(
"CloneCategoriesProduct"),
'value' => 1),
2912 $formquestionclone[] = array(
'type' =>
'checkbox',
'name' =>
'clone_prices',
'label' => $langs->trans(
"ClonePricesProduct").
' ('.$langs->trans(
"CustomerPrices").
')',
'value' => 0);
2915 $formquestionclone[] = array(
'type' =>
'checkbox',
'name' =>
'clone_composition',
'label' => $langs->trans(
'CloneCompositionProduct'),
'value' => 1);
2918 $formconfirm .= $form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.
$object->id, $langs->trans(
'ToClone'), $langs->trans(
'ConfirmCloneProduct',
$object->ref),
'confirm_clone', $formquestionclone,
'yes',
'action-clone', 350, 600);
2922$parameters = array(
'formConfirm' => $formconfirm,
'object' =>
$object);
2923$reshook = $hookmanager->executeHooks(
'formConfirm', $parameters,
$object, $action);
2924if (empty($reshook)) {
2925 $formconfirm .= $hookmanager->resPrint;
2926} elseif ($reshook > 0) {
2927 $formconfirm = $hookmanager->resPrint;
2936if ($action !=
'create' && $action !=
'edit') {
2937 $cloneProductUrl = $_SERVER[
"PHP_SELF"].
'?action=clone&token='.
newToken();
2938 $cloneButtonId =
'action-clone-no-ajax';
2940 print
"\n".
'<div class="tabsAction">'.
"\n";
2942 $parameters = array();
2943 $reshook = $hookmanager->executeHooks(
'addMoreActionsButtons', $parameters,
$object, $action);
2944 if (empty($reshook)) {
2945 if ($usercancreate) {
2946 if (!isset(
$object->no_button_edit) ||
$object->no_button_edit != 1) {
2950 if (!isset(
$object->no_button_copy) ||
$object->no_button_copy != 1) {
2951 if (!empty($conf->use_javascript_ajax) && empty($conf->dol_use_jmobile)) {
2952 $cloneProductUrl =
'';
2953 $cloneButtonId =
'action-clone';
2955 print
dolGetButtonAction($langs->trans(
'ToClone'),
'',
'default', $cloneProductUrl, $cloneButtonId, $usercancreate);
2960 if ($usercandelete) {
2961 if (empty($object_is_used) && (!isset(
$object->no_button_delete) ||
$object->no_button_delete != 1)) {
2962 if (!empty($conf->use_javascript_ajax) && empty($conf->dol_use_jmobile)) {
2963 print
dolGetButtonAction($langs->trans(
'Delete'),
'',
'delete',
'#',
'action-delete',
true);
2968 print
dolGetButtonAction($langs->trans(
"ProductIsUsed"), $langs->trans(
'Delete'),
'delete',
'#',
'',
false);
2971 print
'<a class="butActionDelete" href="card.php?action=merge&id='.$object->id.
'" title="'.
dol_escape_htmltag($langs->trans(
"MergeProducts")).
'">'.$langs->trans(
'Merge').
'</a>'.
"\n";
2974 print
dolGetButtonAction($langs->trans(
"NotEnoughPermissions"), $langs->trans(
'Delete'),
'delete',
'#',
'',
false);
2992 if (isModEnabled(
"propal") && $user->hasRight(
'propal',
'creer')) {
2993 $propal =
new Propal($db);
2995 $langs->load(
"propal");
2997 $otherprop = $propal->liste_array(2, 1, 0);
2999 if (is_array($otherprop) && count($otherprop)) {
3000 $html .=
'<tr><td style="width: 200px;">';
3001 $html .= $langs->trans(
"AddToDraftProposals").
'</td><td>';
3002 $html .= $form->selectarray(
"propalid", $otherprop, 0, 1);
3003 $html .=
'</td></tr>';
3005 $html .=
'<tr><td style="width: 200px;">';
3006 $html .= $langs->trans(
"AddToDraftProposals").
'</td><td>';
3007 $html .= $langs->trans(
"NoDraftProposals");
3008 $html .=
'</td></tr>';
3013 if (isModEnabled(
'order') && $user->hasRight(
'commande',
'creer')) {
3016 $langs->load(
"orders");
3018 $othercom = $commande->liste_array(2, 1,
null);
3019 if (is_array($othercom) && count($othercom)) {
3020 $html .=
'<tr><td style="width: 200px;">';
3021 $html .= $langs->trans(
"AddToDraftOrders").
'</td><td>';
3022 $html .= $form->selectarray(
"commandeid", $othercom, 0, 1);
3023 $html .=
'</td></tr>';
3025 $html .=
'<tr><td style="width: 200px;">';
3026 $html .= $langs->trans(
"AddToDraftOrders").
'</td><td>';
3027 $html .= $langs->trans(
"NoDraftOrders");
3028 $html .=
'</td></tr>';
3033 if (isModEnabled(
'invoice') && $user->hasRight(
'facture',
'creer')) {
3036 $langs->load(
"bills");
3038 $otherinvoice = $invoice->liste_array(2, 1,
null);
3039 if (is_array($otherinvoice) && count($otherinvoice)) {
3040 $html .=
'<tr><td style="width: 200px;">';
3041 $html .= $langs->trans(
"AddToDraftInvoices").
'</td><td>';
3042 $html .= $form->selectarray(
"factureid", $otherinvoice, 0, 1);
3043 $html .=
'</td></tr>';
3045 $html .=
'<tr><td style="width: 200px;">';
3046 $html .= $langs->trans(
"AddToDraftInvoices").
'</td><td>';
3047 $html .= $langs->trans(
"NoDraftInvoices");
3048 $html .=
'</td></tr>';
3053 if (!empty($html)) {
3054 print
'<form method="POST" action="'.$_SERVER[
"PHP_SELF"].
'?id='.
$object->id.
'">';
3055 print
'<input type="hidden" name="token" value="'.newToken().
'">';
3056 print
'<input type="hidden" name="action" value="addin">';
3062 $html .=
'<tr><td class="nowrap">'.$langs->trans(
"Quantity").
' ';
3063 $html .=
'<input type="text" class="flat" name="qty" size="1" value="1"></td>';
3064 $html .=
'<td class="nowrap">'.$langs->trans(
"ReductionShort").
'(%) ';
3065 $html .=
'<input type="text" class="flat" name="remise_percent" size="1" value="0">';
3066 $html .=
'</td></tr>';
3068 print
'<table class="centpercent border">';
3072 print
'<div class="center">';
3073 print
'<input type="submit" class="button button-add" value="'.$langs->trans(
"Add").
'">';
3087if ($action !=
'create' && $action !=
'edit' && $action !=
'delete') {
3088 print
'<div class="fichecenter"><div class="fichehalfleft">';
3089 print
'<a name="builddoc"></a>';
3093 if (!empty($conf->product->multidir_output[
$object->entity])) {
3094 $filedir = $conf->product->multidir_output[
$object->entity].
'/'.$objectref;
3096 $filedir = $conf->product->dir_output.
'/'.$objectref;
3098 $urlsource = $_SERVER[
"PHP_SELF"].
"?id=".
$object->id;
3099 $genallowed = $usercanread;
3100 $delallowed = $usercancreate;
3102 print $formfile->showdocuments($modulepart,
$object->ref, $filedir, $urlsource, $genallowed, $delallowed,
'', 0, 0, 0, 28, 0,
'', 0,
'', $langs->getDefaultLang(),
'',
$object);
3103 $somethingshown = $formfile->numoffiles;
3105 print
'</div><div class="fichehalfright">';
3108 $morehtmlcenter =
'<div class="nowraponall">';
3109 $morehtmlcenter .=
dolGetButtonTitle($langs->trans(
'FullConversation'),
'',
'fa fa-comments imgforviewmode', DOL_URL_ROOT.
'/product/messaging.php?id='.
$object->id);
3110 $morehtmlcenter .=
dolGetButtonTitle($langs->trans(
'SeeAll'),
'',
'fa fa-bars imgforviewmode', DOL_URL_ROOT.
'/product/agenda.php?id='.
$object->id);
3111 $morehtmlcenter .=
'</div>';
3114 include_once DOL_DOCUMENT_ROOT.
'/core/class/html.formactions.class.php';
3116 $somethingshown = $formactions->showactions(
$object,
'product', 0, 1,
'', $MAXEVENT,
'', $morehtmlcenter);
3118 print
'</div></div>';
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $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 accounting accounts.
Class to manage categories.
Class to manage customers orders.
Class to manage a WYSIWYG editor.
Class to manage warehouses.
Class to manage invoices.
const TYPE_STANDARD
Standard invoice.
Class of a generic business object.
Class ProductCombination Used to represent the relation between a product and one of its variants.
File of class to manage predefined price products or services by customer.
Class to manage products or services.
const TYPE_PRODUCT
Regular product.
static getSellOrEatByMandatoryList()
Get sell or eat by mandatory list.
const TYPE_SERVICE
Service.
Class to manage proposals.
Class to manage third parties objects (customers, suppliers, prospects...)
getCountry($searchkey, $withcode='', $dbtouse=null, $outputlangs=null, $entconv=1, $searchlabel='')
Return country label, code or id from an id, code or label.
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.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
showValueWithClipboardCPButton($valuetocopy, $showonlyonhover=1, $texttoshow='')
Create a button to copy $valuetocopy in the clipboard (for copy and paste feature).
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
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)
Show tabs of a record.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
dolGetButtonTitle($label, $helpText='', $iconClass='fa fa-file', $url='', $id='', $status=1, $params=array())
Function dolGetButtonTitle : this kind of buttons are used in title in list.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
dol_nl2br($stringtoencode, $nl2brmode=0, $forxml=false)
Replace CRLF in string with a HTML BR tag.
dol_print_url($url, $target='_blank', $max=32, $withpicto=0, $morecss='')
Show Url link.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
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.
GETPOSTISARRAY($paramname, $method=0)
Return true if the parameter $paramname is submit from a POST OR GET as an array.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
if(!function_exists( 'dol_getprefix')) dol_include_once($relpath, $classname='')
Make an include_once using default root and alternate root if it fails.
dol_set_focus($selector)
Set focus onto field with selector (similar behaviour of 'autofocus' HTML5 tag)
newToken()
Return the value of token currently saved into session with name 'newtoken'.
dol_clone($object, $native=0)
Create a clone of instance of object (new instance with same value for each properties) With native =...
dolGetButtonAction($label, $text='', $actionType='default', $url='', $id='', $userRight=1, $params=array())
Function dolGetButtonAction.
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...
dol_textishtml($msg, $option=0)
Return if a text is a html content.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
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...
dol_trunc($string, $size=40, $trunc='right', $stringencoding='UTF-8', $nodot=0, $display=0)
Truncate a string to a particular length adding '…' if string larger than length.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
info_admin($text, $infoonimgalt=0, $nodiv=0, $admin='1', $morecss='hideonsmartphone', $textfordropdown='', $picto='')
Show information in HTML for admin users or standard users.
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, when selling a product with vat $vatrate,...
get_exdir($num, $level, $alpha, $withoutslash, $object, $modulepart='')
Return a path to have a the directory according to object where files are stored.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
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...
product_prepare_head($object)
Prepare array with list of tabs.
measuringUnitString($unit, $measuring_style='', $scale='', $use_short_label=0, $outputlangs=null)
Return translation label of a unit key.
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.