creata e attivata SETUP per stampa bilancio provvisorio

This commit is contained in:
2024-10-07 12:17:31 +02:00
parent 871d1f7aec
commit ba04afba6e

View File

@@ -0,0 +1,23 @@
package it.integry.ems.migration.model;
import it.integry.ems.migration._base.BaseMigration;
import it.integry.ems.migration._base.MigrationModelInterface;
public class Migration_20241007121240 extends BaseMigration implements MigrationModelInterface {
@Override
public void up() throws Exception {
if (isHistoryDB())
return;
createSetup("W_CBILANCIO_CONTRAP_DISP", "SETUP", "STAMPA_PROVVISIORIA", "S",
"Se impostato a S vuol dire che se anno del bilancio è uguale ad anno attuale oppure maggiore di anno magazzino sulla stampa il titolo riporterà ''BILANCIO PROVVISORIO''", false, null, false, false,
false, false, false, null, false, null);
}
@Override
public void down() throws Exception {
}
}