[IME]
aggiunta setup review cliente
This commit is contained in:
@@ -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 {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user