24require
'../main.inc.php';
32require_once DOL_DOCUMENT_ROOT.
'/core/lib/product.lib.php';
33require_once DOL_DOCUMENT_ROOT.
'/product/class/product.class.php';
34require_once DOL_DOCUMENT_ROOT.
'/variants/class/ProductAttribute.class.php';
35require_once DOL_DOCUMENT_ROOT.
'/variants/class/ProductAttributeValue.class.php';
36require_once DOL_DOCUMENT_ROOT.
'/variants/class/ProductCombination.class.php';
37require_once DOL_DOCUMENT_ROOT.
'/variants/class/ProductCombination2ValuePair.class.php';
39$langs->loadLangs(array(
"products",
"other"));
46$reference =
GETPOST(
'reference',
'alpha');
49$price_impact_percent = (bool)
GETPOST(
'price_impact_percent');
53$level_price_impact =
GETPOST(
'level_price_impact',
'array');
54$level_price_impact = array_map(
'price2num', $level_price_impact);
55$level_price_impact = array_map(
'floatval', $level_price_impact);
56$level_price_impact_percent =
GETPOST(
'level_price_impact_percent',
'array');
57$level_price_impact_percent = array_map(
'boolval', $level_price_impact_percent);
58$clone_categories = (bool)
GETPOST(
'clone_categories');
62$action =
GETPOST(
'action',
'aZ09');
63$massaction =
GETPOST(
'massaction',
'alpha');
65$confirm =
GETPOST(
'confirm',
'alpha');
66$toselect =
GETPOST(
'toselect',
'array:int');
67$cancel =
GETPOST(
'cancel',
'alpha');
68$delete_product =
GETPOST(
'delete_product',
'alpha');
69$subaction =
GETPOST(
'subaction',
'aZ09');
70$backtopage =
GETPOST(
'backtopage',
'alpha');
71$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
72$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
75$fieldvalue =
$id ?: $ref;
76$fieldtype = !empty($ref) ?
'ref' :
'rowid';
87$selectedvariant = isset($_SESSION[
'addvariant_'.
$object->id]) ? $_SESSION[
'addvariant_'.$object->id] : array();
93if ($user->socid > 0) {
105 restrictedArea($user,
'produit|service', $fieldvalue,
'product&product',
'',
'', $fieldtype);
107$usercanread = ((
$object->isProduct() && $user->hasRight(
'produit',
'lire')) || (
$object->isService() && $user->hasRight(
'service',
'lire')));
108$usercancreate = ((
$object->isProduct() && $user->hasRight(
'produit',
'creer')) || (
$object->isService() && $user->hasRight(
'service',
'creer')));
109$usercandelete = ((
$object->isProduct() && $user->hasRight(
'produit',
'supprimer')) || (
$object->isService() && $user->hasRight(
'service',
'supprimer')));
119 unset($_SESSION[
'addvariant_'.
$object->id]);
126if ($action ==
'add') {
127 unset($selectedvariant);
128 unset($_SESSION[
'addvariant_'.
$object->id]);
130if ($action ==
'create' &&
GETPOST(
'selectvariant',
'alpha') && $usercancreate) {
134 if ($attribute_id > 0 && $attribute_value_id > 0) {
135 $feature = $attribute_id .
'-' . $attribute_value_id;
136 $selectedvariant[$feature] = $feature;
137 $_SESSION[
'addvariant_'.$object->id] = $selectedvariant;
140if ($action ==
'create' && $subaction ==
'delete' && $usercancreate) {
142 $feature =
GETPOST(
'feature',
'intcomma');
143 if (isset($selectedvariant[$feature])) {
144 unset($selectedvariant[$feature]);
145 $_SESSION[
'addvariant_'.$object->id] = $selectedvariant;
153$productCombination2ValuePairs1 = array();
155if (($action ==
'add' || $action ==
'create') && $usercancreate && empty($massaction) && !
GETPOST(
'selectvariant',
'alpha') && empty($subaction)) {
157 $features = !empty($_SESSION[
'addvariant_'.
$object->id]) ? $_SESSION[
'addvariant_'.$object->id] : array();
160 if ($action ==
'create') {
164 $reference = trim($reference);
165 if (empty($reference)) {
168 $weight_impact =
price2num($weight_impact);
169 $price_impact =
price2num($price_impact);
172 $level_price_impact = array(1 => $price_impact);
173 $level_price_impact_percent = array(1 => $price_impact_percent);
176 $sanit_features = array();
179 foreach ($features as $feature) {
180 $explode = explode(
'-', $feature);
181 if ($prodattr->fetch((
int) $explode[0]) <= 0 || $prodattr_val->fetch((
int) $explode[1]) <= 0) {
186 $sanit_features[(int) $explode[0]] = (
int) $explode[1];
189 $tmp->fk_prod_attr = (int) $explode[0];
190 $tmp->fk_prod_attr_val = (int) $explode[1];
192 $productCombination2ValuePairs1[] = $tmp;
199 if (!$prodcomb->fetchByProductCombination2ValuePairs($id, $sanit_features)) {
200 $result = $prodcomb->createProductCombination($user, $object, $sanit_features, array(), $level_price_impact_percent, $level_price_impact, (float) $weight_impact, $reference,
'', $clone_categories);
203 unset($_SESSION[
'addvariant_'.
$object->id]);
206 header(
'Location: '.
dol_buildpath(
'/variants/combinations.php?id='.$id, 2));
209 $langs->load(
"errors");
213 setEventMessages($langs->trans(
'ErrorRecordAlreadyExists'),
null,
'errors');
218} elseif (!empty($massaction)) {
219 $bulkaction = $massaction;
224 foreach ($toselect as $prodid) {
227 if ($prodstatic->fetch($prodid) < 0) {
231 if ($bulkaction ==
'on_sell') {
232 $prodstatic->status = 1;
233 $res = $prodstatic->update($prodstatic->id, $user);
239 } elseif ($bulkaction ==
'on_buy') {
240 $prodstatic->status_buy = 1;
241 $res = $prodstatic->update($prodstatic->id, $user);
247 } elseif ($bulkaction ==
'not_sell') {
248 $prodstatic->status = 0;
249 $res = $prodstatic->update($prodstatic->id, $user);
255 } elseif ($bulkaction ==
'not_buy') {
256 $prodstatic->status_buy = 0;
257 $res = $prodstatic->update($prodstatic->id, $user);
263 } elseif ($bulkaction ==
'delete') {
264 $res = $prodstatic->delete($user, $prodstatic->id);
277 if (empty($prodstatic->error)) {
284} elseif ($action ===
'update' && $combination_id > 0 && $usercancreate) {
285 if ($prodcomb->fetch($combination_id) < 0) {
290 $prodcomb->variation_weight = (float)
price2num($weight_impact);
294 $prodcomb->variation_price = $level_price_impact[1];
295 $prodcomb->variation_price_percentage = $level_price_impact_percent[1];
297 $level_price_impact = array(1 => $price_impact);
298 $level_price_impact_percent = array(1 => $price_impact_percent);
300 $prodcomb->variation_price = $price_impact;
301 $prodcomb->variation_price_percentage = $price_impact_percent;
305 $prodcomb->combination_price_levels = array();
307 for ($i = 1; $i <= $maxi; $i++) {
309 $productCombinationLevel->fk_product_attribute_combination = $prodcomb->id;
310 $productCombinationLevel->fk_price_level = $i;
311 $productCombinationLevel->variation_price = (float) $level_price_impact[$i];
312 $productCombinationLevel->variation_price_percentage = (bool) $level_price_impact_percent[$i];
313 $prodcomb->combination_price_levels[$i] = $productCombinationLevel;
322 $product_child->fetch($prodcomb->fk_product_child);
323 $product_child->oldcopy = clone $product_child;
324 $product_child->ref = $reference;
326 $result = $product_child->update($product_child->id, $user);
334 $result = $prodcomb->update($user);
344 header(
'Location: ' .
dol_buildpath(
'/variants/combinations.php?id=' . $id, 2));
353$productCombinations = $prodcomb->fetchAllByFkProductParent(
$object->id,
true);
355if ($action ===
'confirm_deletecombination' && $usercancreate) {
356 if ($prodcomb->fetch($combination_id) > 0) {
359 if ($prodcomb->delete($user) > 0 && (empty($delete_product) || ($delete_product ==
'on' && $prodstatic->fetch($prodcomb->fk_product_child) > 0 && $prodstatic->delete($user) > 0))) {
367 setEventMessages($langs->trans(
'ProductCombinationAlreadyUsed'),
null,
'errors');
370} elseif ($action ===
'edit' && $usercancreate) {
371 if ($prodcomb->fetch($combination_id) < 0) {
377 $product_child->fetch($prodcomb->fk_product_child);
378 $reference = (
string) $product_child->ref;
379 $weight_impact = $prodcomb->variation_weight;
380 $price_impact = $prodcomb->variation_price;
381 $price_impact_percent = $prodcomb->variation_price_percentage;
383 $productCombination2ValuePairs1 = $prodcomb2val->fetchByFkCombination($combination_id);
384} elseif ($action ===
'confirm_copycombination' && $usercancreate) {
386 $dest_product =
GETPOST(
'dest_product');
388 if ($prodstatic->fetch(0, $dest_product) > 0) {
390 if ($prodstatic->ref !=
$object->ref) {
391 if ($prodcomb->copyAll($user,
$object->id, $prodstatic) > 0) {
392 header(
'Location: '.
dol_buildpath(
'/variants/combinations.php?id='.$prodstatic->id, 2));
395 setEventMessages($langs->trans(
'ErrorCopyProductCombinations'),
null,
'errors');
399 setEventMessages($langs->trans(
'ErrorDestinationProductNotFound'),
null,
'errors');
411$title = $langs->trans(
"Variant");
416if (!empty($id) || !empty($ref)) {
418 if (
getDolGlobalString(
'MAIN_USE_ADVANCED_PERMS') && !$user->hasRight(
'barcode',
'lire_advance')) {
423 $titre = $langs->trans(
"CardProduct".
$object->type);
424 $picto =
$object->isService() ?
'service' :
'product';
428 $linkback =
'<a href="'.DOL_URL_ROOT.
'/product/list.php?type='.((int)
$object->type).
'">'.$langs->trans(
"BackToList").
'</a>';
429 $object->next_prev_filter =
"(te.fk_product_type:=:".((int)
$object->type).
")";
431 dol_banner_tab($object,
'ref', $linkback, ($user->socid ? 0 : 1),
'ref',
'',
'',
'', 0,
'',
'');
433 print
'<div class="fichecenter">';
435 print
'<div class="underbanner clearboth"></div>';
436 print
'<table class="border centpercent tableforfield">';
440 $typeformat =
'select;0:'.$langs->trans(
"Product").
',1:'.$langs->trans(
"Service");
441 print
'<tr><td class="titlefieldcreate">';
442 print (!
getDolGlobalString(
'PRODUCT_DENY_CHANGE_PRODUCT_TYPE')) ? $form->editfieldkey(
"Type",
'fk_product_type', (
string)
$object->type, $object, 0, $typeformat) : $langs->trans(
'Type');
444 print $form->editfieldval(
"Type",
'fk_product_type',
$object->type, $object, 0, $typeformat);
449 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"DefaultTaxRate").
'</td><td>';
456 $positiverates .= ($positiverates ?
'/' :
'').
price2num(
$object->localtax1_tx);
459 $positiverates .= ($positiverates ?
'/' :
'').
price2num(
$object->localtax2_tx);
461 if (empty($positiverates)) {
462 $positiverates =
'0';
464 echo
vatrate($positiverates.($object->default_vat_code ?
' ('.$object->default_vat_code.
')' :
''), true,
$object->tva_npr);
474 print
'<tr><td>'.$langs->trans(
"SellingPrice").
'</td><td>';
475 if (
$object->price_base_type ==
'TTC') {
483 print
'<tr><td>'.$langs->trans(
"MinPrice").
'</td><td>';
484 if (
$object->price_base_type ==
'TTC') {
492 print
'<tr><td>'.$langs->trans(
"Weight").
'</td><td>';
498 print
"</td></tr>\n";
503 print
'<div class="clearboth"></div>';
507 $listofvariantselected =
'';
510 if ($action ==
'add' || ($action ==
'edit')) {
511 if ($action ==
'add') {
512 $title = $langs->trans(
'NewProductCombination');
514 $features = !empty($_SESSION[
'addvariant_'.
$object->id]) ? $_SESSION[
'addvariant_'.$object->id] : array();
516 $listofvariantselected =
'<div id="parttoaddvariant">';
517 if (!empty($features)) {
519 foreach ($features as $feature) {
520 $explode = explode(
'-', $feature);
521 if ($prodattr->fetch((
int) $explode[0]) <= 0 || $prodattr_val->fetch((
int) $explode[1]) <= 0) {
524 $toprint[] =
'<li class="select2-search-choice-dolibarr noborderoncategories" style="background: #ddd;">' . $prodattr->label.
' : '.$prodattr_val->value .
525 ' <a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?id='.
$object->id.
'&action=create&subaction=delete&feature='.urlencode($feature).
'">' .
img_delete() .
'</a></li>';
527 $listofvariantselected .=
'<div class="select2-container-multi-dolibarr" style="width: 90%;"><ul class="select2-choices-dolibarr">' . implode(
' ', $toprint) .
'</ul></div>';
529 $listofvariantselected .=
'</div>';
532 $title = $langs->trans(
'EditProductCombination');
535 $prodattr_alljson =
null;
536 $prodattr_all =
null;
537 if ($action ==
'add') {
538 $prodattr_all = $prodattr->fetchAll();
540 if (!$selected && !empty($prodattr_all)) {
541 $selected = $prodattr_all[key($prodattr_all)]->id;
544 $prodattr_alljson = array();
546 foreach ($prodattr_all as $each) {
547 $prodattr_alljson[$each->id] = $each;
550 <script
type=
"text/javascript">
552 variants_available = <?php echo json_encode($prodattr_alljson, JSON_PARTIAL_OUTPUT_ON_ERROR); ?>;
553 variants_selected = {
559 foreach ($productCombination2ValuePairs1 as $pc2v) {
560 $prodattr_val->fetch($pc2v->fk_prod_attr_val); ?>
561 variants_selected.index.push(<?php echo $pc2v->fk_prod_attr ?>);
562 variants_selected.info[<?php echo $pc2v->fk_prod_attr ?>] = {
563 attribute: variants_available[<?php echo $pc2v->fk_prod_attr ?>],
565 id: <?php echo $pc2v->fk_prod_attr_val ?>,
566 label:
'<?php echo $prodattr_val->value ?>'
572 restoreAttributes =
function() {
573 jQuery(
"select[name=attribute]").empty().append(
'<option value="-1"> </option>');
575 jQuery.each(variants_available,
function (key, val) {
576 if (jQuery.inArray(val.id, variants_selected.index) == -1) {
577 jQuery(
"select[name=attribute]").append(
'<option value="' + val.id +
'">' + val.label +
'</option>');
583 jQuery(document).ready(
function() {
584 jQuery(
"select#attribute").change(
function () {
585 console.log(
"Change of field variant attribute");
586 var select = jQuery(
"select#value");
588 if (!jQuery(
this).val().length || jQuery(
this).val() ==
'-1') {
590 select.append(
'<option value="-1"> </option>');
594 select.empty().append(
'<option value="">Loading...</option>');
596 jQuery.getJSON(
"ajax/get_attribute_values.php", {
597 id: jQuery(
this).val()
601 select.append(
'<option value="-1"> </option>');
602 return alert(data.error);
606 select.append(
'<option value="-1"> </option>');
608 jQuery(data).each(
function (key, val) {
609 keyforoption = val.id
610 valforoption = val.value
611 select.append(
'<option value="' + keyforoption +
'">' + valforoption +
'</option>');
625 print
'<form method="post" id="combinationform" action="'.$_SERVER[
"PHP_SELF"] .
'?id='.
$object->id.
'">'.
"\n";
626 print
'<input type="hidden" name="token" value="'.newToken().
'">';
627 print
'<input type="hidden" name="action" value="'.(($combination_id > 0) ?
"update" :
"create").
'">'.
"\n";
628 if ($combination_id > 0) {
629 print
'<input type="hidden" name="combination_id" value="'.$combination_id.
'">'.
"\n";
635 if ($action ==
'add') {
636 print
'<table class="border" style="width: 100%">';
637 print
"<!-- Variant -->\n";
639 print
'<td class="titlefieldcreate fieldrequired"><label for="attribute">'.$langs->trans(
'ProductAttribute').
'</label></td>';
641 if (is_array($prodattr_all)) {
642 print
'<select class="flat minwidth100" id="attribute" name="attribute">';
643 print
'<option value="-1"> </option>';
644 foreach ($prodattr_all as $attr) {
646 print
'<option value="'.$attr->id.
'">'.$attr->label.
'</option>';
651 $htmltext = $langs->trans(
"GoOnMenuToCreateVairants", $langs->transnoentities(
"Product"), $langs->transnoentities(
"VariantAttributes"));
652 print $form->textwithpicto(
'', $htmltext);
661 <td
class=
"fieldrequired"><label
for=
"value"><?php echo $langs->trans(
'Value') ?></label></td>
663 <select
class=
"flat minwidth100" id=
"value" name=
"value">
664 <option value=
"-1"> </option>
667 $htmltext = $langs->trans(
"GoOnMenuToCreateVairants", $langs->transnoentities(
"Product"), $langs->transnoentities(
"VariantAttributes"));
668 print $form->textwithpicto(
'', $htmltext);
678 <input
type=
"submit" class=
"button" name=
"selectvariant" id=
"selectvariant" value=
"<?php echo dol_escape_htmltag($langs->trans("SelectCombination
")); ?>">
682 print
'<tr><td></td><td>';
683 print $listofvariantselected;
691 if (is_array($productCombination2ValuePairs1)) {
692 print
'<table class="border" style="width: 100%">';
695 if (is_array($productCombination2ValuePairs1) && count($productCombination2ValuePairs1)) {
698 <td
class=
"titlefieldcreate tdtop"><label
for=
"features"><?php echo $langs->trans(
'Attributes') ?></label></td>
700 <div
class=
"inline-block valignmiddle quatrevingtpercent">
702 foreach ($productCombination2ValuePairs1 as $pc2v) {
703 $result1 = $prodattr->fetch($pc2v->fk_prod_attr);
704 $result2 = $prodattr_val->fetch($pc2v->fk_prod_attr_val);
705 if ($result1 > 0 && $result2 > 0) {
706 print $prodattr->label.
' : '.$prodattr_val->value.
'<br>';
711 <!-- <div
class=
"inline-block valignmiddle">
712 <a href=
"#" class=
"inline-block valignmiddle button" id=
"delfeature"><?php echo
img_edit_remove() ?></a>
721 <td><label
for=
"reference"><?php echo $langs->trans(
'Reference') ?></label></td>
722 <td><input
type=
"text" id=
"reference" name=
"reference" value=
"<?php echo trim($reference) ?>" spellcheck=
"false"></td>
728 <td><label
for=
"price_impact"><?php echo $langs->trans(
'PriceImpact') ?></label></td>
729 <td><input
type=
"text" id=
"price_impact" name=
"price_impact" value=
"<?php echo price($price_impact) ?>">
731 <input
type=
"checkbox" id=
"price_impact_percent" name=
"price_impact_percent" <?php echo ($price_impact_percent ?
' checked' :
'') ?>> <label for=
"price_impact_percent"><?php echo $langs->trans(
'PercentageVariation') ?></label>
736 $prodcomb->fetchCombinationPriceLevels();
739 for ($i = 1; $i <= $maxi; $i++) {
740 $keyforlabel =
'PRODUIT_MULTIPRICES_LABEL'.$i;
741 $text = $langs->trans(
'ImpactOnPriceLevel', $i).
' - '.
getDolGlobalString($keyforlabel);
743 print
'<td><label for="level_price_impact_'.$i.
'">'.$text.
'</label>';
745 print
'<br/><a id="apply-price-impact-to-all-level" class="classfortooltip" href="#" title="'.$langs->trans(
'ApplyToAllPriceImpactLevelHelp').
'">('.$langs->trans(
'ApplyToAllPriceImpactLevel').
')</a>';
748 print
'<td><input type="text" class="level_price_impact" id="level_price_impact_'.$i.
'" name="level_price_impact['.$i.
']" value="'.
price($prodcomb->combination_price_levels[$i]->variation_price).
'">';
749 print
'<span class="paddingleft"></span>';
750 print
'<input type="checkbox" class="level_price_impact_percent" id="level_price_impact_percent_'.$i.
'" name="level_price_impact_percent['.$i.
']" '.($prodcomb->combination_price_levels[$i]->variation_price_percentage ?
' checked' :
'').
'> <label for="level_price_impact_percent_'.$i.
'">'.$langs->trans(
'PercentageVariation').
'</label>';
759 print
'<td><label for="weight_impact">'.$langs->trans(
'WeightImpact').
'</label></td>';
760 print
'<td><input type="text" id="weight_impact" name="weight_impact" value="'.price($weight_impact).
'"></td>';
765 print
'<td><label for="clone_categories">'.$langs->trans(
'CloneCategoriesProduct').
'</label></td>';
766 print
'<td><input type="checkbox" id="clone_categories" name="clone_categories"></td>';
775 $(document).ready(
function() {
777 $(
'body').on(
'click',
'#apply-price-impact-to-all-level',
function(e) {
779 let priceImpact = $(
"#level_price_impact_1" ).val();
780 let priceImpactPrecent = $(
"#level_price_impact_percent_1" ).prop(
"checked");
782 let multipricelimit = <?php print
getDolGlobalInt(
'PRODUIT_MULTIPRICES_LIMIT'); ?>
784 for (let i = 2; i <= multipricelimit; i++) {
785 $(
"#level_price_impact_" + i ).val(priceImpact);
786 $(
"#level_price_impact_percent_" + i ).prop(
"checked", priceImpactPrecent);
796 <div style=
"text-align: center">
797 <input
type=
"submit" name=
"create" <?php
if (!is_array($productCombination2ValuePairs1)) {
798 print
' disabled="disabled"';
799 } ?> value=
"<?php echo $action == 'add' ? $langs->trans('Create') : $langs->trans("Save
") ?>" class=
"button button-save">
801 <input
type=
"submit" name=
"cancel" value=
"<?php echo $langs->trans("Cancel
"); ?>" class=
"button button-cancel">
808 if ($action ===
'delete') {
809 if ($prodcomb->fetch($combination_id) > 0) {
810 $prodstatic->fetch($prodcomb->fk_product_child);
812 print $form->formconfirm(
813 "combinations.php?id=".urlencode((
string) ($id)).
"&combination_id=".urlencode((
string) ($combination_id)),
814 $langs->trans(
'Delete'),
815 $langs->trans(
'ProductCombinationDeleteDialog', $prodstatic->ref),
816 "confirm_deletecombination",
817 array(array(
'label' => $langs->trans(
'DeleteLinkedProduct'),
'type' =>
'checkbox',
'name' =>
'delete_product',
'value' =>
false)),
822 } elseif ($action ===
'copy') {
823 print $form->formconfirm(
'combinations.php?id='.$id, $langs->trans(
'ToClone'), $langs->trans(
'ConfirmCloneProductCombinations'),
'confirm_copycombination', array(array(
'type' =>
'text',
'label' => $langs->trans(
'CloneDestinationReference'),
'name' =>
'dest_product')), 0, 1);
828 if ($productCombinations) {
831 <script
type=
"text/javascript">
832 jQuery(document).ready(
function() {
834 jQuery(
'input[name="select_all"]').click(
function() {
836 if (jQuery(
this).prop(
'checked')) {
842 jQuery(
'table.liste input[type="checkbox"]').prop(
'checked', checked);
845 jQuery(
'input[name^="select["]').click(
function() {
846 jQuery(
'input[name="select_all"]').prop(
'checked',
false);
856 print
'<div class="tabsAction">';
858 print
' <div class="inline-block divButAction">';
860 print
'<a href="combinations.php?id='.$object->id.
'&action=add&token='.newToken().
'" class="butAction">'.$langs->trans(
'NewProductCombination').
'</a>';
862 if ($productCombinations) {
863 print
'<a href="combinations.php?id='.$object->id.
'&action=copy&token='.newToken().
'" class="butAction">'.$langs->trans(
'PropagateVariant').
'</a>';
872 $arrayofselected = is_array($toselect) ? $toselect : array();
876 print
'<form method="POST" action="'.$_SERVER[
"PHP_SELF"] .
'?id='.
$object->id.
'">';
877 print
'<input type="hidden" name="token" value="'.newToken().
'">';
878 print
'<input type="hidden" name="action" value="massaction">';
879 print
'<input type="hidden" name="backtopage" value="'.$backtopage.
'">';
884 if (count($productCombinations)) {
885 $aaa =
'<select id="bulk_action" name="massaction" class="minwidth250">';
886 $aaa .=
' <option value="nothing"> </option>';
887 $aaa .=
' <option value="not_buy" data-html="'.dol_escape_htmltag(
img_picto($langs->trans(
"SetToStatus"),
'stop-circle',
'class="pictofixedwidth"').$langs->trans(
'SetToStatus', $langs->transnoentitiesnoconv(
'ProductStatusNotOnBuy'))).
'">'.$langs->trans(
'ProductStatusNotOnBuy').
'</option>';
888 $aaa .=
' <option value="not_sell" data-html="'.dol_escape_htmltag(
img_picto($langs->trans(
"SetToStatus"),
'stop-circle',
'class="pictofixedwidth"').$langs->trans(
'SetToStatus', $langs->transnoentitiesnoconv(
'ProductStatusNotOnSell'))).
'">'.$langs->trans(
'ProductStatusNotOnSell').
'</option>';
889 $aaa .=
' <option value="on_buy" data-html="'.dol_escape_htmltag(
img_picto($langs->trans(
"SetToStatus"),
'stop-circle',
'class="pictofixedwidth"').$langs->trans(
'SetToStatus', $langs->transnoentitiesnoconv(
'ProductStatusOnBuy'))).
'">'.$langs->trans(
'ProductStatusOnBuy').
'</option>';
890 $aaa .=
' <option value="on_sell" data-html="'.dol_escape_htmltag(
img_picto($langs->trans(
"SetToStatus"),
'stop-circle',
'class="pictofixedwidth"').$langs->trans(
'SetToStatus', $langs->transnoentitiesnoconv(
'ProductStatusOnSell'))).
'">'.$langs->trans(
'ProductStatusOnSell').
'</option>';
891 $aaa .=
' <option value="delete" data-html="'.dol_escape_htmltag(
img_picto($langs->trans(
"Delete"),
'delete',
'class="pictofixedwidth"').$langs->trans(
'Delete')).
'">'.$langs->trans(
'Delete').
'</option>';
894 $aaa .=
'<input type="submit" value="'.dol_escape_htmltag($langs->trans(
"Apply")).
'" class="button small">';
896 $massactionbutton = $aaa;
898 $title = $langs->trans(
"ProductCombinations");
900 print_barre_liste($title, 0, $_SERVER[
"PHP_SELF"],
'', $sortfield, $sortorder, $aaa, 0);
902 print
'<div class="div-table-responsive">'; ?>
903 <
table class=
"liste">
904 <tr
class=
"liste_titre">
907 if (
$conf->main_checkbox_left_column) {
908 print
'<td class="liste_titre center">';
909 $searchpicto = $form->showCheckAddButtons(
'checkforselect', 1);
913 <td
class=
"liste_titre"><?php echo $langs->trans(
'Product') ?></td>
914 <td
class=
"liste_titre"><?php echo $langs->trans(
'Attributes') ?></td>
915 <td
class=
"liste_titre right"><?php echo $langs->trans(
'PriceImpact') ?></td>
916 <?php
if (
$object->isProduct()) {
917 print
'<td class="liste_titre right">'.$langs->trans(
'WeightImpact').
'</td>';
919 <td
class=
"liste_titre center"><?php echo $langs->trans(
'OnSell') ?></td>
920 <td
class=
"liste_titre center"><?php echo $langs->trans(
'OnBuy') ?></td>
921 <td
class=
"liste_titre"></td>
924 if (!
$conf->main_checkbox_left_column) {
925 print
'<td class="liste_titre center">';
926 $searchpicto = $form->showCheckAddButtons(
'checkforselect', 1);
933 if (count($productCombinations)) {
934 foreach ($productCombinations as $currcomb) {
935 $prodstatic->fetch($currcomb->fk_product_child);
936 print
'<tr class="oddeven">';
939 if (
$conf->main_checkbox_left_column) {
940 print
'<td class="nowrap center">';
941 if (!empty($productCombinations) || $massactionbutton || $massaction) {
943 if (in_array($prodstatic->id, $arrayofselected)) {
946 print
'<input id="cb'.$prodstatic->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$prodstatic->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
951 print
'<td>'.$prodstatic->getNomUrl(1).
'</td>';
953 $arraycomb = $comb2val->fetchByFkCombination($currcomb->id);
954 if (is_array($arraycomb)) {
955 foreach ($arraycomb as $pc2v) {
960 print
'<td class="right">'.($currcomb->variation_price >= 0 ?
'+' :
'').
price($currcomb->variation_price).($currcomb->variation_price_percentage ?
' %' :
'').
'</td>';
962 print
'<td class="right">'.($currcomb->variation_weight >= 0 ?
'+' :
'').
price($currcomb->variation_weight).
' '.
measuringUnitString(0,
'weight', $prodstatic->weight_units).
'</td>';
964 print
'<td class="center">'.$prodstatic->getLibStatut(2, 0).
'</td>';
965 print
'<td class="center">'.$prodstatic->getLibStatut(2, 1).
'</td>';
967 print
'<td class="right">';
968 print
'<a class="paddingleft paddingright editfielda" href="'.$_SERVER[
"PHP_SELF"].
'?id='.
$id.
'&action=edit&token='.newToken().
'&combination_id='.$currcomb->id.
'">'.
img_edit().
'</a>';
969 print
'<a class="paddingleft paddingright" href="'.$_SERVER[
"PHP_SELF"].
'?id='.
$id.
'&action=delete&token='.newToken().
'&combination_id='.$currcomb->id.
'">'.
img_delete().
'</a>';
973 if (!
$conf->main_checkbox_left_column) {
974 print
'<td class="nowrap center">';
975 if (!empty($productCombinations) || $massactionbutton || $massaction) {
977 if (in_array($prodstatic->id, $arrayofselected)) {
980 print
'<input id="cb'.$prodstatic->id.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$prodstatic->id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
988 print
'<tr><td colspan="8"><span class="opacitymedium">'.$langs->trans(
"None").
'</span></td></tr>';
$id
Support class for third parties, contacts, members, users or resources.
if(! $sortfield) if(! $sortorder) $object
ajax_combobox($htmlname, $events=array(), $minLengthToAutocomplete=0, $forcefocus=0, $widthTypeOfAutocomplete='resolve', $idforemptyvalue='-1', $morecss='')
Convert a html select field into an ajax combobox.
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Class ProductAttribute Used to represent a Product attribute Examples:
Class ProductAttributeValue Used to represent a product attribute value.
Class ProductCombination2ValuePair Used to represent the relation between a variant and its attribute...
Class ProductCombination Used to represent the relation between a product and one of its variants.
Class ProductCombinationLevel Used to represent a product combination Level.
Class to manage products or services.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
vatrate($rate, $addpercent=false, $info_bits=0, $usestarfornpr=0, $html=0)
Return a string with VAT rate label formatted for view output Used into pdf and HTML pages.
print_barre_liste($title, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $selectlimitsuffix=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)
img_delete($titlealt='default', $other='class="pictodelete"', $morecss='')
Show delete logo.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dolPrintHTML($s, $allowiframe=0, $moreallowedtags=array())
Return a string (that can be on several lines) ready to be output on a HTML page.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0, $morecssdiv='')
Show tabs of a record.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
price($amount, $form=0, $outlangs='', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code='')
Function to format a value into an amount for visual output Function used into PDF and HTML pages.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
GETPOSTFLOAT($paramname, $rounding='', $option=2)
Return the value of a $_GET or $_POST supervariable, converted into float.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='', $morecssonpicto='widthpictotitle')
Load a title with picto.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
img_edit($titlealt='default', $float=0, $other='')
Show logo edit/modify fiche.
img_edit_remove($titlealt='default', $other='')
Show logo "-".
treeview li table
No Email.
print $langs trans("Show") . '< td style="' . $timeColor . '" align="center"> s</td > badge status0 badge status4 badge status3 Error badge status8< td align="center">< span class="badge ' . $badge . '"></span ></td >< td align="center">< a href="#" class="button button-small" onclick="openLogModal(this)" data-req="' . dol_escape_htmltag($reqSafe) . '" data-res="' . dol_escape_htmltag($resSafe) . '" data-err="' . dol_escape_htmltag($errSafe) . '">< span class="fa fa-search-plus"></span ></a ></td ></tr >< tr >< td colspan="' . $colspan . '" class="opacitymedium"></td ></tr ></table ></div ></form > logModal none logModal none s a JSON string
buildzip.php
measuringUnitString($unitid, $measuring_style='', $unitscale=null, $use_short_label=0, $outputlangs=null)
Return translation label of a unit key.
product_prepare_head($object)
Prepare array with list of tabs.
if(preg_match('/(crypted|dolcrypt):/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
'integer', 'integer:ObjectClass:PathToClass[:AddCreateButtonOrNot[:Filter[:Sortfield]]]',...
$conf db name
Only used if Module[ID]Name translation string is not found.
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.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.