Skip to content

Commit

Permalink
fix: calcolo automatico geolocalizzazione
Browse files Browse the repository at this point in the history
  • Loading branch information
loviuz authored and Pek5892 committed Nov 19, 2024
1 parent 60e32ed commit d26a066
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
13 changes: 12 additions & 1 deletion modules/anagrafiche/src/Anagrafica.php
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,18 @@ protected function fixRagioneSociale()

protected function geolocalizzazione()
{
if (!empty($this->sedeLegale->indirizzo) && !empty($this->sedeLegale->citta) && !empty($this->sedeLegale->provincia)) {
$new_indirizzo = $this->sedeLegale->indirizzo.', '.$this->sedeLegale->citta.', '.$this->sedeLegale->provincia;
$prev_indirizzo = $this->sedeLegale->original['indirizzo'].', '.$this->sedeLegale->original['citta'].', '.$this->sedeLegale->original['provincia'];

if (
!empty($this->sedeLegale->indirizzo)
&&
!empty($this->sedeLegale->citta)
&&
!empty($this->sedeLegale->provincia)
&&
$new_indirizzo != $prev_indirizzo
) {
$indirizzo = urlencode($this->sedeLegale->indirizzo.', '.$this->sedeLegale->citta.', '.$this->sedeLegale->provincia);

if (setting('Gestore mappa') == 'OpenStreetMap') {
Expand Down
13 changes: 12 additions & 1 deletion modules/anagrafiche/src/Sede.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,18 @@ protected function fixRappresentanteFiscale()

protected function geolocalizzazione()
{
if (!empty($this->indirizzo) && !empty($this->citta) && !empty($this->provincia) && empty($this->gaddress)) {
$new_indirizzo = $this->indirizzo.', '.$this->citta.', '.$this->provincia;
$prev_indirizzo = $this->original['indirizzo'].', '.$this->original['citta'].', '.$this->original['provincia'];

if (
!empty($this->indirizzo)
&&
!empty($this->citta)
&&
!empty($this->provincia)
&&
$new_indirizzo != $prev_indirizzo
) {
$indirizzo = urlencode($this->indirizzo.', '.$this->citta.', '.$this->provincia);

if (setting('Gestore mappa') == 'OpenStreetMap') {
Expand Down

0 comments on commit d26a066

Please sign in to comment.