Jump to content
xt:Commerce Community Forum

Automatische Vergabe Von Artikelnummern


micha2003

Recommended Posts

:confused: Guten Tag, xt:Commerce v3.0.4 SP2.1

suche die Möglichkeit neu eingepflegten Artikeln automatisch eine Artikelnummer zuzuweisen?

muss dieser code nun in die admin/new_product.php oder wie xt:mzanier schreibt in die

categories.php und in welche Zeile.

läuft das mit v3.0.4 SP2.1

wie immer ein großes danke für die Hilfe

<?php

// Artikelnummer generieren

if(!$pInfo->products_model)

{

$my_product_id_query = xtc_db_query("SELECT MAX(products_id)

AS products_id

FROM " . TABLE_PRODUCTS . "

");

$my_product_id = xtc_db_fetch_array($my_product_id_query);

$my_product_id = $my_product_id["products_id"] + 1;

$pInfo->products_model = "100-".$my_product_id; // 100- kann editiert werden

}

?>

Link to comment
Share on other sites

admin/includes/modules/new_product.php

ab Zeile 98

<?php echo xtc_draw_form('new_product', FILENAME_CATEGORIES, 'cPath=' . $_GET['cPath'] . '&pID=' . $_GET['pID'] . '&action='.$form_action, 'post', 'enctype="multipart/form-data"'); ?>
// hier automatisch Nr einfügen
<?php
if(!$pInfo->products_model)
{
$my_product_id_query = xtc_db_query("SELECT MAX(products_id)
AS products_id
FROM " . TABLE_PRODUCTS . "
");

$my_product_id = xtc_db_fetch_array($my_product_id_query);
$my_product_id = $my_product_id["products_id"] + 1;
$pInfo->products_model = "100-".$my_product_id; // 100- kann editiert werden
}
?>
// Ende einfügen
<span class="pageHeading"><?php echo sprintf(TEXT_NEW_PRODUCT, xtc_output_generated_category_path($current_category_id)); ?></span><br />
<table width="100%" border="0">[/PHP]

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...