Skip to content

Commit b65d769

Browse files
author
Wolfgang Wiedermann
committed
2 parents cab4c25 + cad4956 commit b65d769

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

sql/create-tables-and-views.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,8 @@ CREATE TABLE IF NOT EXISTS fi_config_params (
161161
ALTER TABLE fi_config_params ADD UNIQUE fi_config_params_unique_knz(mandant_id, param_knz);
162162

163163
INSERT INTO fi_config_params (mandant_id, param_knz, param_desc, param_value) values
164-
(1, 'geschj_start_monat', 'Startmonat des Geschaeftsjahres', '1');
164+
(1, 'geschj_start_monat', 'Startmonat des Geschaeftsjahres', '1'),
165+
(1, 'op_schliessen_txt', 'Buchungsvorl. OP schliessen', 'Aufl. OP #op_nr# - #op_btxt#');
165166

166167
--
167168
-- Struktur des Views `fi_buchungen_view`

sql/create_table_fi_config_params.sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,5 @@ CREATE TABLE IF NOT EXISTS fi_config_params (
1414
ALTER TABLE fi_config_params ADD UNIQUE fi_config_params_unique_knz(mandant_id, param_knz);
1515

1616
INSERT INTO fi_config_params (mandant_id, param_knz, param_desc, param_value) values
17-
(1, 'geschj_start_monat', 'Startmonat des Geschaeftsjahres', '1');
17+
(1, 'geschj_start_monat', 'Startmonat des Geschaeftsjahres', '1'),
18+
(1, 'op_schliessen_txt', 'Buchungsvorl. OP schliessen', 'Aufl. OP #op_nr# - #op_btxt#');

0 commit comments

Comments
 (0)