2

コードの何が問題なのか理解できません。Joomla で Web サイトをテンプレート化しています! 2.5.9 および VirtueMart 2.0.20b。

カテゴリーページtplname/html/com_virtuemart/category/default.php商品ページtplname/html/com_virtuemart/productdetails/default.phpを担当しています。

両方のページで、税金を % で表示する必要があります。つまり、20% の税金です。

製品ページの場合:

$product->prices['Tax'];

カテゴリページの場合:

<?php foreach ($products as $product):?>
    <li>
        <?php echo $product->prices['Tax'];?>
    </li>
<?php endforeach;?>

これらvar_dump()の両方で実行すると、次の出力が得られます。

array
  204 => // <- Remember this number as FIRST ARRAY
    array
      0 => string 'TAXNAME_TITLE' (length=12)
      1 => string '10.0000' (length=7)  // <- I need this value!
      2 => string '+%' (length=2)
      3 => string '1' (length=1)
      4 => string '47' (length=2)
      5 => string '' (length=0)
      6 => string '1' (length=1)
      7 => string '204' (length=3)

必要な値を取得するには、次のようにします。

$productPriceTaxUnit = reset($product->prices['Tax']);
$productPriceTaxUnit = $productPriceTaxUnit['1'];
$productPriceTaxUnit = JText::_('COM_VIRTUEMART_PRODUCT_BASEPRICE_WITHTAX') . ' ' .number_format($productPriceTaxUnit, '2', '.', '') . '%';
echo $productPriceTaxUnit;

FIRST ARRAYそれは正常に動作しますが、等しいカテゴリページで204エラーが発生しましたが、等しい場合1はすべて問題ありません。

誰かが私がここでやっている間違ったステップを見ていますか?

前もって感謝します

====== ** 最初の更新** ========

SQL デバッグは次のとおりです。

SELECT SQL_CALC_FOUND_ROWS l.`virtuemart_product_id`
  FROM `ar9hu_virtuemart_products_sk_sk` as l JOIN `ar9hu_virtuemart_products` AS p using (`virtuemart_product_id`)
  LEFT JOIN `ar9hu_virtuemart_product_categories` as pc
  ON p.`virtuemart_product_id` = `pc`.`virtuemart_product_id`
  LEFT JOIN `ar9hu_virtuemart_categories_sk_sk` as c
  ON c.`virtuemart_category_id` = `pc`.`virtuemart_category_id`
  LEFT JOIN `ar9hu_virtuemart_product_shoppergroups`
  ON p.`virtuemart_product_id` = `ar9hu_virtuemart_product_shoppergroups`.`virtuemart_product_id`
  LEFT
  OUTER JOIN `ar9hu_virtuemart_shoppergroups` as s
  ON s.`virtuemart_shoppergroup_id` = `ar9hu_virtuemart_product_shoppergroups`.`virtuemart_shoppergroup_id`
  WHERE ( p.`published`="1"
  AND `pc`.`virtuemart_category_id` = 9
  AND `pc`.`virtuemart_category_id` > 0
  AND ( s.`virtuemart_shoppergroup_id`= "1" OR s.`virtuemart_shoppergroup_id` IS NULL ) )
  group by p.`virtuemart_product_id`
  ORDER BY `p`.product_sku ASC
  LIMIT 0, 10

====== ** 2 回目の更新** ========

これは、カテゴリ ページで表示されるエラーです。

    Notice: Trying to get property of non-object in D:\wamp\www\baranik\templates\baranik\html\com_virtuemart\category\default.php on line 119
Call Stack
#   Time    Memory  Function    Location
1   0.0002  652096  {main}( )   ..\index.php:0
2   0.0714  9131016 JSite->dispatch( )  ..\index.php:42
3   0.0749  9542784 JComponentHelper::renderComponent( )    ..\application.php:197
4   0.0785  9691392 JComponentHelper::executeComponent( )   ..\helper.php:351
5   0.0789  9787480 require_once( 'D:\wamp\www\baranik\components\com_virtuemart\virtuemart.php' )  ..\helper.php:383
6   0.0980  12819808    JController->execute( ) ..\virtuemart.php:99
7   0.0980  12819888    VirtueMartControllerCategory->display( )    ..\controller.php:761
8   0.0980  12821880    JController->display( ) ..\category.php:60
9   0.1006  13209152    VirtuemartViewCategory->display( )  ..\controller.php:722
10  0.2021  19796592    JView->display( )   ..\view.html.php:244
11  0.2021  19796592    JView->loadTemplate( )  ..\view.php:205
12  0.2031  19910088    include( 'D:\wamp\www\baranik\templates\baranik\html\com_virtuemart\category\default.php' ) ..\view.php:649
4

1 に答える 1