FSN#31783: Vrije-artikel bestelaanvraag afronding.

svn path=/Database/trunk/; revision=24478
This commit is contained in:
Maykel Geerdink
2015-03-17 11:25:40 +00:00
parent de653b9847
commit 52e6d43b6c
3 changed files with 16 additions and 2 deletions

View File

@@ -494,7 +494,11 @@ CREATE_TABLE(bes_disc_params, 0)
DEFAULT 1000000,
bes_disc_params_bestellimiet5
NUMBER(11,2)
DEFAULT 1000000
DEFAULT 1000000,
bes_disc_params_freeartikel /* Vrije-artikel mode {0=ouderwets, 1=vrij artikelen, 2=met suggest voor bestaande (future)} */
NUMBER(1)
DEFAULT 0
NOT NULL
);
//// flexprops

View File

@@ -1424,6 +1424,8 @@ FACXSL_LCL('lcl_bes_subtotal', 'Subtotaal', 'Subtotal', 'Zwischensumme', 'Sous-t
FACXSL_LCL('lcl_bes_aantontv_mess', 'Er is/zijn {0} artikel(en) ontvangen. Het aantal kan niet lager zijn.', '{0} Article(s) has/have been received. The amount cannot be lower', '{0} Artikel(en) ist/sind erhalten. Die Menge kan nicht weniger sein.', 'Le nombre ne peut <20>tre inf<6E>rieur')
FACXSL_LCL('lcl_bes_verhogen_mess', 'Aantal mag niet verhoogd worden', 'Amount may not be increased', 'Anzahl darf nicht erh<72>ht werden', 'Nombre ne peut <20>tre augment<6E>')
FACXSL_LCL('lcl_bes_cnt_insert', 'Contract aangemaakt door bestelling ', 'Contract created by purchase order ', 'Vertr<74>ge erstellt durch Bestellung ', 'Contrat cr<63><72>s par Commande ')
FACXSL_LCL('lcl_bes_free_artgroep', 'Vrije artikel groep', 'Free article group', 'Freies Artikelgruppe', 'Groupe gratuit d''articles')
FACXSL_LCL('lcl_bez_no_double_art', 'Kan artikel '{0}' niet toevoegen. Dubbel artikelnummer is niet toegestaan.', 'Could not add article '{0}'. Double article number is not allowed.', 'Artikel '{0}' konnte nicht hinzugef<65>gt werden. Doppelte Artikelnummer ist nicht zul<75>ssig.', 'Il ne peut pas ajouter l''article '{0}'. Num<75>ro d''article double n''est pas autoris<69>.')
END_FACXSL_LCL()
START_FACXSL_LCL('ASP', NULL)
@@ -1612,7 +1614,7 @@ FACXSL_LCL('lcl_prs_frame_algemeen', 'Persoonlijke gegevens', 'Personal details'
FACXSL_LCL('lcl_prs_basisblok', 'Basisgegevens', 'General details', 'Basisdatei', 'Donn<6E>es de base')
FACXSL_LCL('lcl_prs_organisatieblok', 'Organisatiegegevens', 'Organisation details', 'Organisationsdatei', 'Donn<6E>es d''organisation')
FACXSL_LCL('lcl_prs_flexblok', 'Aanvullende gegevens', 'Additional details', 'Zus<75>tzliche Daten', 'Donn<6E>es suppl<70>mentaires')
FACXSL_LCL('lcl_prs_frame_facilities', 'Lopende zaken', 'In process', 'Im Gange', 'En cours')
FACXSL_LCL('lcl_prs_frame_facilities', 'Lopende zaken', 'Current affairs', 'Im Gange', 'En cours')
FACXSL_LCL('lcl_prs_frame_substitutes', 'Vervangers', 'Substitutes', 'Vertretung', 'Rempla<6C>ants')
FACXSL_LCL('lcl_prs_finblock', 'Kostengegevens', 'Costs details', 'Kostendaten', 'Donn<6E>es des co<63>ts')
FACXSL_LCL('lcl_prs_substitutesblock', 'Vervangers', 'Substitutes', 'Vertreter(innen)', 'Rempla<6C>ants')

View File

@@ -189,6 +189,14 @@ ALTER TABLE ins_srtcontrole ADD ins_srtcontrole_type NUMBER(1) DEFAULT (1);
ALTER TABLE mld_afmeldtekst ADD mld_ins_discipline_key NUMBER(10)
CONSTRAINT mld_r_ins_discipline_key2 REFERENCES ins_tab_discipline(ins_discipline_key);
/////////////////////////////////////////////////////////////////////////////////////////// FSN#31783
ALTER TABLE bes_disc_params ADD bes_disc_params_freeartikel NUMBER(1) DEFAULT 0 NOT NULL;
UPDATE bes_disc_params
SET bes_disc_params_freeartikel = 1,
bes_disc_params_punchouturl = NULL
WHERE bes_disc_params_punchouturl LIKE 'FREE';
/////////////////////////////////////////////////////////////////////////////////////////// FSN#nnnn
/////////////////////////////////////////////////////////////////////////////////////////// FSN#nnnn