소스 검색

Relivraisons

feature/export_comptable
Guillaume 4 년 전
부모
커밋
14e67e4769
2개의 변경된 파일2개의 추가작업 그리고 6개의 파일을 삭제
  1. +0
    -5
      ShopBundle/Model/OrderShop.php
  2. +2
    -1
      ShopBundle/Services/Order/OrderUtils.php

+ 0
- 5
ShopBundle/Model/OrderShop.php 파일 보기

@@ -75,11 +75,6 @@ abstract class OrderShop extends AbstractEntity implements FilterMerchantInterfa
*/
protected $orderProducts;

/**
* @ORM\OneToMany(targetEntity="Lc\ShopBundle\Context\CreditHistoryInterface", mappedBy="orderShop", orphanRemoval=true)
*/
protected $creditHistories;

/**
* @ORM\Column(type="text", nullable=true)
*/

+ 2
- 1
ShopBundle/Services/Order/OrderUtils.php 파일 보기

@@ -180,7 +180,8 @@ class OrderUtils

foreach ($orderShop->getOrderProducts() as $orderProduct) {
if ($orderProduct->getProduct()->getId() == $orderProductAdd->getProduct()->getId()
&& (string)$this->priceUtils->getPrice($orderProduct) == (string)$this->priceUtils->getPrice($orderProductAdd)
&& $orderProduct->getRedelivery() == $orderProductAdd->getRedelivery()
&& (string) $this->priceUtils->getPrice($orderProduct) == (string) $this->priceUtils->getPrice($orderProductAdd)
&& $this->compareOrderProductReductionCatalog($orderProduct->getOrderProductReductionCatalog(), $orderProductAdd->getOrderProductReductionCatalog())) {

$orderProduct->setQuantityOrder($orderProduct->getQuantityOrder() + $orderProductAdd->getQuantityOrder());

Loading…
취소
저장