Jump to content
xt:Commerce Community Forum

Suche nach Artikelnummern in Bestellübersicht


danny2901

Recommended Posts

  • 2 weeks later...

Falls es mal noch jemand brauchen sollte. Hab es jetzt so gelöst.

class.orderFilter.php


$product = PhpExt_Form_TextField::createTextField("filter_product",ucfirst(TEXT_PRODUCT_NAME)) ->setEmptyText();
$product = self::setWidth($product,"150px");
$f[] = $product;
[/PHP]

hinzufügen

class.ordersPost.php

[PHP]
if( FormFilter::setTxt('filter_product')){

$ad_table = ", ".TABLE_ORDERS_PRODUCTS;
$where_ar[] = TABLE_ORDERS_PRODUCTS.".orders_id=".TABLE_ORDERS.".orders_id";
$where_ar[] = " products_model = '". $_SESSION['filter_product']."'";


}
[/PHP]

hinzufügen

Damit habt ihr im 4.016 in dem neuen Filter Plugin ein Feld, womit nach Artikelnummern in Bestellungen gesucht werden kann.

Link to comment
Share on other sites

Archived

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

×
  • Create New...