From 46c253706892d24f0233a6c55ed1cc2c0a8dbd7b Mon Sep 17 00:00:00 2001 From: sparkyx Date: Wed, 14 Oct 2020 17:38:05 +0200 Subject: [PATCH] fix SQL bug --- include/sql/patch/upgrade147.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/sql/patch/upgrade147.sql b/include/sql/patch/upgrade147.sql index b2fc79c54..5828d3eab 100644 --- a/include/sql/patch/upgrade147.sql +++ b/include/sql/patch/upgrade147.sql @@ -9,7 +9,8 @@ and dt_id in (2,3,4,5,10,20,21); INSERT INTO public.document_option (do_code, document_type_id, do_enable, do_option) select 'contact_multiple',dt_id , 1, NULL from document_type where -not exists (select 1 from document_option where document_type_id in (2,3,4,5,10,20) and do_code='contact_multiple' ); +not exists (select 1 from document_option where document_type_id in (2,3,4,5,10,20) and do_code='contact_multiple' ) +and dt_id in (2,3,4,5,10,20) ; INSERT INTO public.document_option (do_code, document_type_id, do_enable, do_option) select 'make_invoice', dt_id, 1, NULL from document_type