doushi1974 2015-06-05 05:32
浏览 175
已采纳

Symfony2从数据库中查询特定值

A simple shop. A user has money in his balance account and when he buys something the balance needs to be decreased based on the sum of the cart. I have an action that is redirected if the payment was successful. If it was I want to decrease the balance like this:

  /**
     * @Route("/successfull", name="successfull_purchase")
     * @Template("MediaparkLtUserBundle:User:paymentConfirmed.html.twig")
     */
    public function successfullPurchaseAction(Request $request) {
        $currentUser = $this->getCurrentUser(); // logged users id
        $em = $this->getEntityManager();
        $user = $em->getRepository('MediaparkLtUserBundle:User')->find($currentUser);
        $pay = $em->getRepository('MediaparkLtUserBundle:AccountMovement')->findOneBy(array('user'=>$currentUser));
        $sum = $pay->getAmount();
        $balance = $user->getNonpayableFunds();
        $newBalance = $balance - $sum;

        $user->setNonpayableFunds($newBalance);

        $em->persist($user);
        $em->flush();
        return array('user' => $user, 'pay'=> $pay);
    }

As you can see im querying two tables. In User table im getting the current user. In AccountMovement I am getting the movement based on that user.

So I am trying to get the Amount on the specific time, but I always get the first buy.

For example:

AccountMovement table:

id-1
user_id - 5
amount - 50.00

id-2
user_id - 5
amount - 5.00

With my query I always get the first input, whitch is 50.00. I need to get the last(or current input). How can I do that? Is it possible to do something like this:

$pay = $em->getRepository('MediaparkLtUserBundle:AccountMovement')->findOneBy(array('user'=>$currentUser, 'DESC')); (to get the last input)??

Any ideas?

展开全部

  • 写回答

1条回答 默认 最新

  • douwan4993 2015-06-05 06:02
    关注

    I think you could the the similar thing:

    $pay = $em->getRepository('MediaparkLtUserBundle:AccountMovement')
            ->findBy(array('user'=>$currentUser), array('id' => 'DESC'), 1)[0];
    

    Not ideal, but it should work. Be aware that this could throw OutOfRangeException if no results exist in the database.

    Why not store the last amount of money in User itself? Or some other entity which is related to User entity?

    Also, be sure to wrap that action in DB transaction via beginTransaction() and commit().

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部