aggiunta setup review cliente
This commit is contained in:
2024-08-11 16:10:31 +02:00
parent b9df8c14e3
commit ba7c89e626

View File

@@ -0,0 +1,25 @@
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_20240801182906 extends BaseMigration implements MigrationModelInterface {
@Override
public void up() throws Exception {
if (isHistoryDB())
return;
String value = "N";
if (isCustomer(IntegryCustomer.Materica)){
value = "S";
}
createSetup("PVM","CATALOGO","REVIEW_CLIENTE",value,"Se impostato nella modifica di un preventivo mostra il form di compilazione cliente anche se già impostato","SI_NO");
}
@Override
public void down() throws Exception {
}
}