瀏覽代碼

Merge branch 'develop'

master
Guillaume Bourgeois 5 月之前
父節點
當前提交
b4da6dcf01
共有 2 個檔案被更改,包括 31 行新增17 行删除
  1. +29
    -15
      Repository/Order/OrderShopStore.php
  2. +2
    -2
      Resources/translations/admin.fr.yaml

+ 29
- 15
Repository/Order/OrderShopStore.php 查看文件

@@ -133,21 +133,6 @@ class OrderShopStore extends AbstractStore
);
}

// 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 function countByCurrentCycle(bool $excludeComplementaryOrderShops = true, $query = null)
@@ -181,6 +166,35 @@ class OrderShopStore extends AbstractStore
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
public function getNextCycleId(Distribution $distribution, $query = null): int
{

+ 2
- 2
Resources/translations/admin.fr.yaml 查看文件

@@ -133,8 +133,8 @@ entity:
label: Règle de taxe
label_plurial: Règles de taxes
UserMerchant:
label: Utilisateur avec compte prépayé actif
label_plurial: Utilisateurs avec comptes prépayés actifs
label: Utilisateur
label_plurial: Utilisateurs
fields:
user:
email: Email

Loading…
取消
儲存