我们正在使用Magento和一些Extensions,其中一个是Paypalplus,它是必不可少的。
现在我们想出售礼品券,这是Paypal明确禁止的。因此,我们需要停用Paypayplus,或至少部分付款方式。
我们首先尝试将其彻底停用,导致Javascript损坏,Magento拒绝订单。似乎如果PPP被激活,其他内置方法不会加载他们的Js,而是在购物车中存在礼品优惠券时尝试使用未加载的PPP-J。
然后我尝试使用自己的Js停用禁用的付款方式,它会自动呈现所有方法。
window.ppp = PAYPAL.apps.PPP({ ... })
这应该设置PPP Js。但我不知道是否有可能也没有哪个参数在Object中传递,部分或完全停用 自己的付款方式。任何人都可以告诉我。我现在搜索了一段时间,但我无法找到有关此API的文档。
以下是应该呈现PPP的完整代码,包含在Magento PPP-Extension中:
<div id="ppplus"></div>
<script type="text/javascript">
if(typeof payment == 'undefined') {
var payment = {};
}
function selectMethod(code) {
try {
if(typeof awOSCPayment != "undefined") {
awOSCPayment.currentMethod = code;
}
} catch (e) {
}
document.getElementById('p_method_' + code).click();
}
window.externMethodEnabled = false;
window.startPPP = function () {
if(typeof window.thirdPartyObject == 'undefined') {
window.thirdPartyObject = <?php echo $this->getThirdPartyJsonObject(); ?>;
window.thirdPartyMethodObject = <?php echo $this->getThirdPartyMethodJsonObject(); ?>;
}
document.cookie = 'paypalplus_session=; Path=/checkout/onepage; Expires=Thu, 01 Jan 1970 00:00:01 GMT;';
document.cookie = 'paypalplus_session=; Path=/checkout; Expires=Thu, 01 Jan 1970 00:00:01 GMT;';
document.cookie = 'paypalplus_session=; Path=/firecheckout; Expires=Thu, 01 Jan 1970 00:00:01 GMT;';
document.cookie = 'paypalplus_session=; Path=/onestepcheckout; Expires=Thu, 01 Jan 1970 00:00:01 GMT;';
window.pppId = '<?php echo $this->getPayPalPaymentId(); ?>';
selectMethod('<?php echo Iways_PayPalPlus_Model_Payment::METHOD_CODE; ?>');
window.ppp = PAYPAL.apps.PPP(
{
approvalUrl: "<?php echo $paymentExperience; ?>",
placeholder: "ppplus",
mode: "<?php echo Mage::getStoreConfig('iways_paypalplus/api/mode'); ?>",
useraction:"commit",
buttonLocation:"outside",
<?php if($this->isPuiSandboxMode()) : ?>
showPuiOnSandbox: true,
<?php endif; ?>
<?php if($this->showLoadingIndicator()) : ?>
showLoadingIndicator: true,
<?php endif; ?>
country:"<?php echo $this->getCountryId(); ?>",
language:"<?php echo $this->getLanguage(); ?>",
onContinue: function () {
payment.save()
},
onThirdPartyPaymentMethodSelected:function (data) {
this.lastCall = 'onThirdPartyPaymentMethodSelected';
selectMethod(window.thirdPartyObject[data.thirdPartyPaymentMethod]);
},
enableContinue: function (data) {
if(this.lastCall != 'onThirdPartyPaymentMethodSelected') {
selectMethod('<?php echo Iways_PayPalPlus_Model_Payment::METHOD_CODE; ?>');
}
this.lastCall = 'enableContinue';
try {
if($$('#payment-buttons-container > button').length > 0) {
$$('#payment-buttons-container > button')[0].enable();
}
if($('onestepcheckout-place-order') != null) {
$('onestepcheckout-place-order').enable();
}
if($$('#review-buttons-container > button').length > 0) {
$$('#review-buttons-container > button')[0].enable();
}
if($('onestepcheckout-button-place-order') != null) {
$('onestepcheckout-button-place-order').enable();
}
if($$('#checkout-review-submit > button.opc-btn-checkout').length > 0) {
$$('#checkout-review-submit > button.opc-btn-checkout')[0].enable();
}
if($$('#aw-onestepcheckout-place-order-button').length > 0) {
$$('#aw-onestepcheckout-place-order-button')[0].enable();
}
}catch (e) {
console.log(e);
}
},
disableContinue: function (data) {
if(!window.externMethodEnabled) {
try {
if($$('#payment-buttons-container > button').length > 0) {
$$('#payment-buttons-container > button')[0].disable();
}
if($('onestepcheckout-place-order') != null) {
$('onestepcheckout-place-order').disable();
}
if($$('#review-buttons-container > button').length > 0) {
$$('#review-buttons-container > button')[0].disable();
}
if($('onestepcheckout-button-place-order') != null) {
$('onestepcheckout-button-place-order').disable();
}
if($$('#checkout-review-submit > button.opc-btn-checkout').length > 0) {
$$('#checkout-review-submit > button.opc-btn-checkout')[0].disable();
}
if($$('#aw-onestepcheckout-place-order-button').length > 0) {
$$('#aw-onestepcheckout-place-order-button')[0].disable();
}
}catch (e) {
console.log(e);
}
}
},
<?php echo $this->getThirdPartyMethods(); ?>
});
}
window.startPPP();
function checkStep() {
try {
if(typeof window.checkout != 'undefined' && typeof window.lastStep == 'undefined') {
window.lastStep = window.checkout.accordion.currentSection;
}
if (typeof window.lastStep != 'undefined' && window.lastStep != window.checkout.accordion.currentSection) {
window.lastStep = checkout.accordion.currentSection;
if (checkout.accordion.currentSection == "opc-payment") {
window.startPPP();
}
}
} catch(e) {
}
}
window.setInterval(checkStep, 1000);
</script>
感谢您的关注。
答案 0 :(得分:1)
好的,我们发现,没有任何论据可以通过部分禁用付款方式。我找到了另一种方法来解决艰难的道路。参数onLoad采用一个在iframe准备好时调用的函数。每当礼品券出现在购物车中时,我们会通过从iframes DOM中删除付款方式来手动删除付款方式。这不是最佳解决方案,但可行。
希望看到Paypal扩展其API,为开发者提供更多控制权。