Browse Source

Erreur 500 : PointSaleRepository::findOnePointSaleById()

feature/souke
Guillaume Bourgeois 9 months ago
parent
commit
24a7af9cf3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      common/logic/Order/Order/Repository/OrderRepository.php

+ 1
- 1
common/logic/Order/Order/Repository/OrderRepository.php View File

$pointSale = null; $pointSale = null;
$arrayUserPointSale = $this->userPointSaleRepository->findUserPointSalesByUser($user, $distribution); $arrayUserPointSale = $this->userPointSaleRepository->findUserPointSalesByUser($user, $distribution);


if (count($arrayUserPointSale) == 1) {
if (count($arrayUserPointSale) == 1 && $arrayUserPointSale[0]->id_point_sale) {
$pointSale = $this->pointSaleRepository->findOnePointSaleById($arrayUserPointSale[0]->id_point_sale); $pointSale = $this->pointSaleRepository->findOnePointSaleById($arrayUserPointSale[0]->id_point_sale);
} else { } else {
$lastOrder = $this->findOneOrderLastByUser($user); $lastOrder = $this->findOneOrderLastByUser($user);

Loading…
Cancel
Save