Explorar el Código

Divers mineurs

develop
Guillaume Bourgeois hace 10 meses
padre
commit
4025a5b89a
Se han modificado 2 ficheros con 17 adiciones y 1 borrados
  1. +12
    -0
      Repository/Config/TaxRateStore.php
  2. +5
    -1
      Solver/Address/AddressSolver.php

+ 12
- 0
Repository/Config/TaxRateStore.php Ver fichero

@@ -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 Ver fichero

@@ -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) {

Cargando…
Cancelar
Guardar