-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
parametro per invio email a referenti su chiusura ordine. closes #238
- Loading branch information
Showing
11 changed files
with
195 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<?php | ||
|
||
namespace App\Formatters; | ||
|
||
class GenericProductFormat extends Formatter | ||
{ | ||
protected function genericColumns() | ||
{ | ||
return [ | ||
'name' => (object) [ | ||
'name' => _i('Nome'), | ||
'checked' => true, | ||
], | ||
'supplier_code' => (object) [ | ||
'name' => _i('Codice Fornitore'), | ||
], | ||
'measure' => (object) [ | ||
'name' => _i('Unità di Misura'), | ||
], | ||
'category' => (object) [ | ||
'name' => _i('Categoria'), | ||
], | ||
'price' => (object) [ | ||
'name' => _i('Prezzo Unitario'), | ||
'checked' => true, | ||
], | ||
'active' => (object) [ | ||
'name' => _i('Ordinabile'), | ||
], | ||
'vat_rate' => (object) [ | ||
'name' => _i('Aliquota IVA'), | ||
], | ||
'portion_quantity' => (object) [ | ||
'name' => _i('Pezzatura'), | ||
], | ||
'variable' => (object) [ | ||
'name' => _i('Variabile'), | ||
], | ||
'package_size' => (object) [ | ||
'name' => _i('Dimensione Confezione'), | ||
], | ||
'weight' => (object) [ | ||
'name' => _i('Peso'), | ||
], | ||
'multiple' => (object) [ | ||
'name' => _i('Multiplo'), | ||
], | ||
'min_quantity' => (object) [ | ||
'name' => _i('Minimo'), | ||
], | ||
'max_quantity' => (object) [ | ||
'name' => _i('Massimo Consigliato'), | ||
], | ||
'max_available' => (object) [ | ||
'name' => _i('Disponibile'), | ||
], | ||
]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
|
||
namespace App\Parameters\Config; | ||
|
||
class AutoReferentOrderSummery extends Config | ||
{ | ||
public function identifier() | ||
{ | ||
return 'auto_referent_order_summary'; | ||
} | ||
|
||
public function type() | ||
{ | ||
return 'boolean'; | ||
} | ||
|
||
public function default() | ||
{ | ||
return 0; | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"/js/gasdotto.js": "/js/gasdotto.js?id=a09d9e89336a27cced111ddfd20c181f", | ||
"/css/gasdotto.css": "/css/gasdotto.css?id=997e46c44b439912f20b9c87e677eb7b" | ||
"/css/gasdotto.css": "/css/gasdotto.css?id=0151594e1431026defac81030890d060" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.