Fix minore

This commit is contained in:
valentina 2024-08-01 15:58:11 +02:00
parent a19b5c68c9
commit 573b8fc516
9 changed files with 9 additions and 9 deletions

View File

@ -25,7 +25,7 @@ switch (post('op')) {
$descrizione = post('descrizione');
if (isset($descrizione)) {
$aspetto_new = AspettoBeni::where('id', '=', (new AspettoBeni())->getByField('title', $descrizione))->orWhere('name', $descrizione)->where('id', '!=', $id_record)->first();
$aspetto_new = AspettoBeni::where('id', '=', (new AspettoBeni())->getByField('title', $descrizione))->where('id', '!=', $id_record)->first();
if (empty($aspetto_new)) {
$aspetto->setTranslation('title', $descrizione);
if (Models\Locale::getDefault()->id == Models\Locale::getPredefined()->id) {

View File

@ -24,7 +24,7 @@ use Modules\CategorieDocumentali\Categoria;
switch (post('op')) {
case 'update':
$descrizione = post('descrizione');
$categoria_new = Categoria::where('id', '=', (new Categoria())->getByField('title', $descrizione))->orWhere('name', $descrizione)->where('deleted_at', '=', null)->first();
$categoria_new = Categoria::where('id', '=', (new Categoria())->getByField('title', $descrizione))->where('deleted_at', '=', null)->first();
if (!empty($categoria_new) && $categoria_new->id != $id_record) {
flash()->error(tr('Categoria _NAME_ già esistente!', [

View File

@ -25,7 +25,7 @@ switch (filter('op')) {
$descrizione = filter('descrizione');
if (isset($descrizione)) {
$causale_new = Causale::where('id', '=', (new Causale())->getByField('title', $descrizione))->orWhere('name', $descrizione)->where('id', '!=', $id_record)->first();
$causale_new = Causale::where('id', '=', (new Causale())->getByField('title', $descrizione))->where('id', '!=', $id_record)->first();
if (empty($causale_new)) {
$causale->setTranslation('title', $descrizione);
if (Models\Locale::getDefault()->id == Models\Locale::getPredefined()->id) {

View File

@ -31,7 +31,7 @@ switch (filter('op')) {
$esigibilita = post('esigibilita');
$descrizione = post('descrizione');
$aliquota = Aliquota::where('id', '=', (new Aliquota())->getByField('title', $descrizione))->where('codice', '=', $codice)->orWhere('name', $descrizione)->where('id', '!=', $iva->id)->first();
$aliquota = Aliquota::where('id', '=', (new Aliquota())->getByField('title', $descrizione))->where('codice', '=', $codice)->where('id', '!=', $iva->id)->first();
if (!$aliquota) {
$iva->esente = $esente;
$iva->percentuale = $percentuale;

View File

@ -26,7 +26,7 @@ switch (filter('op')) {
$predefined = post('predefined');
if (isset($descrizione)) {
$porto_new = Porto::where('id', '=', (new Porto())->getByField('title', $descrizione))->orWhere('name', $descrizione)->where('id', '!=', $id_record)->first();
$porto_new = Porto::where('id', '=', (new Porto())->getByField('title', $descrizione))->where('id', '!=', $id_record)->first();
if (empty($porto_new)) {
$porto->setTranslation('title', $descrizione);
if (!empty($predefined)) {

View File

@ -27,7 +27,7 @@ switch (filter('op')) {
$colore = filter('colore');
if (isset($descrizione)) {
$provenienza_new = Provenienza::where('id', '=', (new Provenienza())->getByField('title', $descrizione))->orWhere('name', $descrizione)->where('id', '!=', $id_record)->first();
$provenienza_new = Provenienza::where('id', '=', (new Provenienza())->getByField('title', $descrizione))->where('id', '!=', $id_record)->first();
if (empty($provenienza_new)) {
$provenienza->setTranslation('title', $descrizione);
if (Models\Locale::getDefault()->id == Models\Locale::getPredefined()->id) {

View File

@ -28,7 +28,7 @@ switch (filter('op')) {
$is_bloccata = filter('is_bloccata');
if (isset($descrizione)) {
$relazione_new = Relazione::where('id', '=', (new Relazione())->getByField('title', $descrizione))->orWhere('name', $descrizione)->where('id', '!=', $id_record)->first();
$relazione_new = Relazione::where('id', '=', (new Relazione())->getByField('title', $descrizione))->where('id', '!=', $id_record)->first();
if (empty($relazione_new)) {
$relazione->setTranslation('title', $descrizione);
if (Models\Locale::getDefault()->id == Models\Locale::getPredefined()->id) {

View File

@ -26,7 +26,7 @@ switch (filter('op')) {
$descrizione = filter('descrizione');
if (isset($descrizione)) {
$settore_new = Settore::where('id', '=', (new Settore())->getByField('title', $descrizione))->orWhere('name', $descrizione)->where('id', '!=', $id_record)->first();
$settore_new = Settore::where('id', '=', (new Settore())->getByField('title', $descrizione))->where('id', '!=', $id_record)->first();
if (empty($settore_new)) {
$settore->setTranslation('title', $descrizione);
if (Models\Locale::getDefault()->id == Models\Locale::getPredefined()->id) {

View File

@ -28,7 +28,7 @@ switch (filter('op')) {
$predefined = post('predefined');
if (isset($descrizione)) {
$spedizione_new = Spedizione::where('id', '=', (new Spedizione())->getByField('title', $descrizione))->orWhere('name', $descrizione)->where('id', '!=', $id_record)->first();
$spedizione_new = Spedizione::where('id', '=', (new Spedizione())->getByField('title', $descrizione))->where('id', '!=', $id_record)->first();
if (empty($spedizione_new)) {
$spedizione->setTranslation('title', $descrizione);
if (!empty($predefined)) {