我正在尝试将最终促销折扣金额添加到我在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"
." </Promotion>\n"
." </Promotions>\n";
我需要在购物车促销规则中为金额标签添加最终折扣金额。
有谁知道我如何获取这笔金额?
答案 0 :(得分:0)
您可以从订购或报价中访问的所有金额,您可以调试/显示如下
print_r($order->getData());
print_r($quote->getData());
虽然建议您使用xdebug或zend之类的调试器来查看断点处的对象和变量内部。