aggiunta setup
All checks were successful
IntegryManagementSystem_Multi/pipeline/head This commit looks good

This commit is contained in:
2024-12-02 14:54:16 +01:00
parent e08e7c5fcc
commit ac555b8972

View File

@@ -0,0 +1,32 @@
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_20241202121225 extends BaseMigration implements MigrationModelInterface {
@Override
public void up() throws Exception {
if (isHistoryDB())
return;
createSetup("W_VDOCU_TAB_RC", "SAVE_REST", "DIRETTA", "N",
"Indica se utilizza il salvataggio rest per tipo emissione documento", false, "SI_NO", false, false,
false, false, false, null, false, "SELECT 'S' UNION ALL SELECT 'N'");
createSetup("W_VDOCU_TAB_RC", "SAVE_REST", "DIFERITA", "N",
"Indica se utilizza il salvataggio rest per tipo emissione documento", false, "SI_NO", false, false,
false, false, false, null, false, "SELECT 'S' UNION ALL SELECT 'N'");
if (isCustomer(IntegryCustomer.RossoGargano)){
updateSetupValue("W_VDOCU_TAB_RC", "SAVE_REST", "DIRETTA", "S");
}
}
@Override
public void down() throws Exception {
}
}