开发者

Getting Final Discount Amount from Shopping Cart Promotion

开发者 https://www.devze.com 2023-04-10 15:58 出处:网络
I\'m trying to add Final Promotion Discount Amount to my Amazon Payment module in Cba.php $_xml .= \" <Promotions>\\n\"

I'm trying to add Final Promotion Discount Amount to my Amazon Payment module in Cba.php

    $_xml .= " <Promotions>\n"
            ."    <Promotion>\n"
            ."      <PromotionId>cart-total-discount</PromotionId>\n"
            ."      <Description>Coupon</Description>\n"
            ."      <Benefit>\n"
            ."         <FixedAmountDiscount>\n"
            ."           <Amount>".  ."</Amount>\n"
            ."         </FixedAmountDiscount>\n"
            ."      </Benefit>\n"
            ."    </Promoti开发者_开发技巧on>\n"
            ."  </Promotions>\n";

I need to add the final discount amount from Shopping Cart Promotion Rule for the Amount tag.

Does anyone know how I can access this amount?


all amounts you can access from order or quote you can debug/reveal as follows

print_r($order->getData());
print_r($quote->getData());

although it is suggested that you use debugger like xdebug or zend to see what is inside objects and variables at your breakpoint.

0

精彩评论

暂无评论...
验证码 换一张
取 消