소스 검색

Divers mineurs

develop
Guillaume Bourgeois 1 년 전
부모
커밋
4025a5b89a
2개의 변경된 파일17개의 추가작업 그리고 1개의 파일을 삭제
  1. +12
    -0
      Repository/Config/TaxRateStore.php
  2. +5
    -1
      Solver/Address/AddressSolver.php

+ 12
- 0
Repository/Config/TaxRateStore.php 파일 보기

@@ -48,4 +48,16 @@ class TaxRateStore extends AbstractStore

return $taxRatesList;
}

public function getAsFormChoices($query = null): array
{
$taxRateArray = $this->createDefaultQuery($query)->find();
$taxRateChoices = [];

foreach($taxRateArray as $taxRate) {
$taxRateChoices[$taxRate->getTitle()] = $taxRate->getId();
}

return $taxRateChoices;
}
}

+ 5
- 1
Solver/Address/AddressSolver.php 파일 보기

@@ -13,8 +13,12 @@ class AddressSolver
return $address->getAddress() . ' - ' . $address->getZip() . ' ' . $address->getCity();
}

public function getSummary(AddressInterface $address, $withTitle = true): string
public function getSummary(AddressInterface $address = null, $withTitle = true): string
{
if(is_null($address)) {
return 'Adresse non définie';
}

$html = '';

if ($address->getTitle() && $withTitle) {

Loading…
취소
저장