Merge branch 'master' into develop
Some checks failed
IntegryManagementSystem_Multi/pipeline/head There was a failure building this commit
Some checks failed
IntegryManagementSystem_Multi/pipeline/head There was a failure building this commit
This commit is contained in:
@@ -85,7 +85,7 @@ public enum IntegryCustomer {
|
||||
Morgante(IntegryCustomerDB.Morgante_Morgante),
|
||||
ResinaColor(IntegryCustomerDB.ResinaColor_ResinaColor),
|
||||
RistoCash(IntegryCustomerDB.RistoCash_RistoCash),
|
||||
RossoGargano(IntegryCustomerDB.RossoGargano_RossoGargano),
|
||||
RossoGargano(IntegryCustomerDB.RossoGargano_RossoGargano, IntegryCustomerDB.RossoGargano_RossoGarganoCont),
|
||||
Salpar(IntegryCustomerDB.Salpar_AlfaImmobiliare,
|
||||
IntegryCustomerDB.Salpar_MasabaSrl,
|
||||
IntegryCustomerDB.Salpar_Salpar,
|
||||
|
||||
@@ -137,6 +137,7 @@ public enum IntegryCustomerDB {
|
||||
|
||||
|
||||
RossoGargano_RossoGargano("rossogargano"),
|
||||
RossoGargano_RossoGarganoCont("rossogarganocont"),
|
||||
|
||||
|
||||
Salpar_VgAlimenti("vgalimenti"),
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
package it.integry.ems.migration.model;
|
||||
|
||||
import it.integry.ems.migration._base.BaseMigration;
|
||||
import it.integry.ems.migration._base.IntegryCustomer;
|
||||
import it.integry.ems.migration._base.MigrationModelInterface;
|
||||
|
||||
public class Migration_20250207183025 extends BaseMigration implements MigrationModelInterface {
|
||||
|
||||
@Override
|
||||
public void up() throws Exception {
|
||||
if (isHistoryDB())
|
||||
return;
|
||||
String value = "N";
|
||||
if (isCustomer(IntegryCustomer.RossoGargano))
|
||||
value = "S";
|
||||
createSetup("PVM","MONITORAGGIO_LINEE_V2","IDENTIFY_UL_WITH_BARCODE",value,"Se impostata ad S tutti i punti in cui si visualizza una udc (lista produzioni / carichi/ scarichi) nel MES viene sostituito il num collo con il barcode","SI_NO");
|
||||
}
|
||||
|
||||
@Override
|
||||
public void down() throws Exception {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user