Browse Source

Ajout méthode OrderShopStore

develop
Guillaume Bourgeois 1 year ago
parent
commit
4053218e54
1 changed files with 29 additions and 15 deletions
  1. +29
    -15
      Repository/Order/OrderShopStore.php

+ 29
- 15
Repository/Order/OrderShopStore.php View File

); );
} }


// getOrderShopsOfWeekByUser
//getByCurrentCycleAndUser
public function getByCurrentDistributionAndUser(UserInterface $user = null, array $params = [], $query = null)
{
return $this->getByCurrentDistribution(
array_merge(
[
'user' => $user,
'excludeComplementaryOrderShops' => true
],
$params
),
$query
);
}


//public $countOrderShopsOfWeek = null; //public $countOrderShopsOfWeek = null;
// public function countByCurrentCycle(bool $excludeComplementaryOrderShops = true, $query = null) // public function countByCurrentCycle(bool $excludeComplementaryOrderShops = true, $query = null)
return $this->countOrderShopsOfWeek;*/ return $this->countOrderShopsOfWeek;*/
} }


public function getByCurrentDistributionAndUser(UserInterface $user = null, array $params = [], $query = null)
{
return $this->getByCurrentDistribution(
array_merge(
[
'user' => $user,
'excludeComplementaryOrderShops' => true
],
$params
),
$query
);
}

public function countValidByCurrentDistributionAndUser(UserInterface $user = null, array $params = [], $query = null)
{
return $this->countByCurrentDistribution(
array_merge(
[
'isValid' => true,
'user' => $user,
'excludeComplementaryOrderShops' => true
],
$params
),
$query
);
}

// getNextWeekId // getNextWeekId
public function getNextCycleId(Distribution $distribution, $query = null): int public function getNextCycleId(Distribution $distribution, $query = null): int
{ {

Loading…
Cancel
Save