我正在使用Mangeto 1.9.1而我正在尝试从总价格中创建一个50%折扣的模块。
我已经为模块做了一些事情但是当我尝试打开我的http://mymagento.com/checkout/cart/时,我的主菜单下面有空白页面。我的购物车商品和总数应该是空白页。
看看:
我通过这个答案制作了这个模块:Magento - Issue with creating a custom Module
所以这就是我所做的:
在app / code / local / VivasIndustries / PercentPayment / etc / config.xml中:
<?xml version="1.0"?>
<config>
<modules>
<VivasIndustries_PercentPayment>
<version>0.1.0</version>
</VivasIndustries_PercentPayment>
</modules>
<global>
<models>
<percentpayment>
<class>VivasIndustries_PercentPayment_Model</class>
<resourceModel>percentpayment_mysql4</resourceModel>
</percentpayment>
</models>
<resources>
<percentpaymentatribute_setup>
<setup>
<module>VivasIndustries_PercentPayment</module>
<class>Mage_Sales_Model_Mysql4_Setup</class>
</setup>
<connection>
<use>core_setup</use>
</connection>
</percentpaymentatribute_setup>
<percentpaymentatribute_write>
<connection>
<use>core_write</use>
</connection>
</percentpaymentatribute_write>
<percentpaymentatribute_read>
<connection>
<use>core_read</use>
</connection>
</percentpaymentatribute_read>
</resources>
<events>
<checkout_type_onepage_save_order_after> <!-- identifier of the event we want to catch -->
<observers>
<checkout_type_onepage_save_order_after_discount_handler> <!-- identifier of the event handler -->
<type>model</type> <!-- class method call type; valid are model, object and singleton -->
<class>percentpayment/newordertotalobserver</class> <!-- observers class alias -->
<method>saveDiscountTotal</method> <!-- observer's method to be called -->
<args></args> <!-- additional arguments passed to observer -->
</checkout_type_onepage_save_order_after_discount_handler>
</observers>
</checkout_type_onepage_save_order_after>
<checkout_type_multishipping_create_orders_single> <!-- identifier of the event we want to catch -->
<observers>
<checkout_type_multishipping_create_orders_single_discount_handler> <!-- identifier of the event handler -->
<type>model</type> <!-- class method call type; valid are model, object and singleton -->
<class>percentpayment/newordertotalobserver</class> <!-- observers class alias -->
<method>saveDiscountTotalForMultishipping</method> <!-- observer's method to be called -->
<args></args> <!-- additional arguments passed to observer -->
</checkout_type_multishipping_create_orders_single_discount_handler>
</observers>
</checkout_type_multishipping_create_orders_single>
</events>
<sales>
<quote>
<totals>
<discount_total>
<class>percentpayment/quote_address_total_discount</class>
<after>subtotal,freeshipping,tax_subtotal,shipping</after>
<before>grand_total</before>
</discount_total>
</totals>
</quote>
<order_invoice>
<totals>
<discount_total>
<class>percentpayment/order_invoice_total_discount</class>
<after>subtotal,freeshipping,tax_subtotal,shipping</after>
<before>grand_total</before>
</discount_total>
</totals>
</order_invoice>
<order_creditmemo>
<totals>
<discount_total>
<class>percentpayment/order_creditmemo_total_discount</class>
<after>subtotal,freeshipping,tax_subtotal,shipping</after>
<before>grand_total</before>
</discount_total>
</totals>
</order_creditmemo>
</sales>
</global>
</config>
在In app / code / local / VivasIndustries / PercentPayment / Model / Newordertotalobserver.php中:
<?php
class VivasIndustries_PercentPayment_Model_Newordertotalobserver
{
public function saveDiscountTotal(Varien_Event_Observer $observer)
{
$order = $observer -> getEvent() -> getOrder();
$quote = $observer -> getEvent() -> getQuote();
$shippingAddress = $quote -> getShippingAddress();
if($shippingAddress && $shippingAddress -> getData('discount_total')){
$order -> setData('discount_total', $shippingAddress -> getData('discount_total'));
}
else{
$billingAddress = $quote -> getBillingAddress();
$order -> setData('discount_total', $billingAddress -> getData('discount_total'));
}
$order -> save();
}
public function saveDiscountTotalForMultishipping(Varien_Event_Observer $observer)
{
$order = $observer -> getEvent() -> getOrder();
$address = $observer -> getEvent() -> getAddress();
$order -> setData('discount_total', $shippingAddress -> getData('discount_total'));
$order -> save();
}
}
在app / code / local / VivasIndustries / PercentPayment / Model / Order / Creditmemo / Total / Discount.php中:
return $this;
$order = $creditmemo->getOrder();
$orderDiscountTotal = $order->getDiscountTotal();
if ($orderDiscountTotal) {
$creditmemo->setGrandTotal($creditmemo->getGrandTotal()+$orderDiscountTotal);
$creditmemo->setBaseGrandTotal($creditmemo->getBaseGrandTotal()+$orderDiscountTotal);
}
return $this;
}
}
在app / code / local / VivasIndustries / PercentPayment / Model / Order / Invoice / Total / Discount.php:
<?php
class VivasIndustries_PercentPayment_Model_Order_Invoice_Total_Discount
extends Mage_Sales_Model_Order_Invoice_Total_Abstract
{
public function collect(Mage_Sales_Model_Order_Invoice $invoice)
{
$order=$invoice->getOrder();
$orderDiscountTotal = $order->getDiscountTotal();
if ($orderDiscountTotal&&count($order->getInvoiceCollection())==0) {
$invoice->setGrandTotal($invoice->getGrandTotal()+$orderDiscountTotal);
$invoice->setBaseGrandTotal($invoice->getBaseGrandTotal()+$orderDiscountTotal);
}
return $this;
}
}
在app / code / local / VivasIndustries / PercentPayment / Model / Quote / Address / Total / Discount.php:
<?php
class VivasIndustries_PercentPayment_Model_Quote_Address_Total_Discount extends Mage_Sales_Model_Quote_Address_Total_Abstract
{
public function __construct()
{
$this -> setCode('discount_total');
}
/**
* Collect totals information about discount
*
* @param Mage_Sales_Model_Quote_Address $address
* @return Mage_Sales_Model_Quote_Address_Total_Shipping
*/
public function collect(Mage_Sales_Model_Quote_Address $address)
{
parent :: collect($address);
$items = $this->_getAddressItems($address);
if (!count($items)) {
return $this;
}
$quote= $address->getQuote();
//amount definition
$discountAmount = 50;
//amount definition
$discountAmount = $quote -> getStore() -> roundPrice($discountAmount);
$this -> _setAmount($discountAmount) -> _setBaseAmount($discountAmount);
$address->setData('discount_total',$discountAmount);
return $this;
}
/**
* Add discount totals information to address object
*
* @param Mage_Sales_Model_Quote_Address $address
* @return Mage_Sales_Model_Quote_Address_Total_Shipping
*/
public function fetch(Mage_Sales_Model_Quote_Address $address)
{
parent :: fetch($address);
$amount = $address -> getTotalAmount($this -> getCode());
if ($amount != 0){
$address -> addTotal(array(
'code' => $this -> getCode(),
'title' => $this -> getLabel(),
'value' => $amount
));
}
return $this;
}
/**
* Get label
*
* @return string
*/
public function getLabel()
{
return Mage :: helper('modulename') -> __('Discount');
}
}
在app / code / local / VivasIndustries / PercentPayment / sql / percentpaymentatribute_setup / mysql4-install-0.1.0.php:
<?php
$installer = $this;
$installer->startSetup();
$installer->addAttribute("quote_address", "discount_total", array("type"=>"varchar"));
$installer->addAttribute("order", "discount_total", array("type"=>"varchar"));
$installer->endSetup();
最后,我做到了这一点:
在app / etc / modules / VivasIndustries_PercentPayment.xml中:
<?xml version="1.0"?>
<config>
<modules>
<VivasIndustries_PercentPayment>
<active>true</active>
<codePool>local</codePool>
<version>0.1.0</version>
</VivasIndustries_PercentPayment>
</modules>
</config>
这就是我所做的一切,我得到了这个没有错误的空白页。
你能帮我找到问题并解决它吗?
*编辑
我删除时:
public function getLabel()
{
return Mage :: helper('modulename') -> __('Discount');
}
页面已修复,并且仅显示折扣值而没有“折扣”说明。
提前致谢!
答案 0 :(得分:0)