Questions tagged «grand-total»

1
排除订单,总计总计小于0
我们的一位客户要求其订单输入人员能够提交订单总额为负的订单。该应用程序已经允许使用否定订单项,只要其余订单的总数为正即可正常工作。 Magento似乎非常努力地使总数不为负数。查看收集到的总数,Magento会应用一张礼品卡作为倒数。如果我禁用了礼品卡,那么它将应用商店信用(即使信用不存在)。我怀疑这只是一个怪癖(可能是鲱鱼)。 任何人都可以帮助确定Magento将0强制为最大总计的金额,以及我们如何去完成请求?我不想简单地强制设置总数,因为我希望Magento能够正常计算所有内容,只是允许负的总计。 问题的实质是技术可行性,但是一旦得到解决,我会对可能从非技术角度阻止使用否定订单总数的任何“陷阱”或想法产生兴趣。


2
Magento 2:如何使自定义费用征税
我想对自定义费用加税。税收计算是完美的,可以获取税收金额,但未在数据库中quote_address的TAX文件中设置。 public function collect( \Magento\Quote\Model\Quote $quote, \Magento\Quote\Api\Data\ShippingAssignmentInterface $shippingAssignment, \Magento\Quote\Model\Quote\Address\Total $total ){ $total->setTaxAmount($total->getTaxAmount()+$taxAmount); $total->setBaseTaxAmount($total->getBaseTaxAmount()+$taxAmount); } 我尝试在collect方法中设置tax Amount,但未设置。 我想像这个代码一样。它是Magento1,但我想要Magento 2
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.