From a7174c7a25598ef32c02a0c8c81beb0f27f4c176 Mon Sep 17 00:00:00 2001 From: sparkyx Date: Sat, 7 Sep 2024 12:09:36 +0200 Subject: [PATCH] Bug : some db doesn't have the view v_quant_detail --- html/css/style-classic7.css | 1 - include/sql/patch/upgrade201.sql | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/html/css/style-classic7.css b/html/css/style-classic7.css index 94bab908c..f3b19a089 100644 --- a/html/css/style-classic7.css +++ b/html/css/style-classic7.css @@ -855,7 +855,6 @@ input[disabled], textarea[disabled], option[disabled], optgroup[disabled], selec a#anchorbutton, .button, a.button,div.content a.button { color:#FFFFFF; - font-weight: bold; text-decoration:none; font-family: arial,verdana,sans-serif,helvetica; background-image: url("../image/bg-submit2.gif"); diff --git a/include/sql/patch/upgrade201.sql b/include/sql/patch/upgrade201.sql index a688665be..e608ee68e 100644 --- a/include/sql/patch/upgrade201.sql +++ b/include/sql/patch/upgrade201.sql @@ -1,6 +1,6 @@ begin; -drop VIEW public.v_quant_detail; +drop VIEW if exists public.v_quant_detail; CREATE OR REPLACE VIEW public.v_quant_detail AS WITH quant AS ( @@ -70,4 +70,4 @@ AS WITH quant AS ( ; insert into version (val,v_description) values (202,'Bug with reconcile, improve view'); -commit; \ No newline at end of file +commit;