0

我已经在我的 Symfony2.3 项目中安装了这些用于 paypal 集成的包。

“jms/payment-core-bundle”:“1.0.*@dev”“jms/payment-paypal-bundle”:“dev-master”

我已按照此链接http://jmsyst.com/bundles/JMSPaymentPaypalBundle进行配置。我有实体和数据库,但我无法获得表单和视图。

我的问题是如何使用这些捆绑包获取付款页面?有什么表格吗?如果是这样,我怎么能得到它?

4

1 回答 1

1

您需要一个付款操作来呈现一个类似这样的表单:

 * @Route("/{id}", name="paiement")
     * @Template()
     */
    public function paymentAction($id=0) // this is a personnal ID i pass to the controler to identify the previous shopping cart
    {
        $form = $this->getFormFactory()->create('jms_choose_payment_method', null, array(
            'amount'   => $order->getPrice(),
            'currency' => 'EUR',
            'default_method' => 'payment_paypal', // Optional
            'predefined_data' => array()
        ));

        if ('POST' === $this->request->getMethod()) {
            $form->bindRequest($this->request);
            $order = new Order();
            $this->em->persist( $order);
            $this->em->flush( $order);

            $form = $this->getFormFactory()->create('jms_choose_payment_method', null, array(
                'amount'   => $order->getPrice(),
                'currency' => 'EUR',
                'default_method' => 'payment_paypal', // Optional
                'predefined_data' => array(
                    'paypal_express_checkout' => array(
                        'return_url' => $this->router->generate('payment_complete', array(
                            'id' =>$order->getId()
                        ), true),
                        'cancel_url' => $this->router->generate('payment_cancel', array(
                            'id' => $order->getId()
                        ), true)
                    ),
                ),
            ));

            $form->bindRequest($this->request);

    // Once the Form is validate, you update the order with payment instruction
            if ($form->isValid()) {
                $instruction = $form->getData();
                $this->ppc->createPaymentInstruction($instruction);
                $order->setPaymentInstruction($instruction);
                $this->em->persist($order);
                $this->em->flush($order);
                // now, let's redirect to payment_complete with the order id
                return new RedirectResponse($this->router->generate('payment_complete', array('id' => $order->getId() )));
            }
        }
        return $this->render('YourBundle:Paiement:paymentChooseTemplate.html.twig',array('form' => $form->createView() , 'id' => $id));
    }

此代码中的重要部分是显示贝宝选择的表单创建,您可以通过呈现此表单将其嵌入到您的付款页面中,然后在您的付款操作中检查其有效性,然后继续使用代码。

我现在在我们当前的网站上以不同的方式执行此操作,而无需使用默认表单,这也是可能的。

给你一些链接,你可以获得更多信息:

http://symfony2.ylly.fr/how-to-set-up-jmspayment-bundle-and-add-the-paypal-plugin-sebastien/

http://jmsyst.com/bundles/JMSPaymentCoreBundle/master/usage

令人遗憾的是,JMS 官方网站包含有关此的文档......但仍然很容易理解它是如何工作的,所以我想这就是他们不打扰的原因。

于 2015-04-10T09:32:15.620 回答