[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Noalyss-commit] [noalyss] 10/10: Fix bug quant_purchase , private fee n
From: |
Dany De Bontridder |
Subject: |
[Noalyss-commit] [noalyss] 10/10: Fix bug quant_purchase , private fee not saved |
Date: |
Sat, 21 Jul 2018 07:47:18 -0400 (EDT) |
sparkyx pushed a commit to annotated tag r700-currency-002
in repository noalyss.
commit 6e8d352f086170805985ce210a43469746c94b15
Author: Dany De Bontridder <address@hidden>
Date: Sat May 12 13:58:05 2018 +0200
Fix bug quant_purchase , private fee not saved
---
include/sql/patch/upgrade129.sql | 59 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 59 insertions(+)
diff --git a/include/sql/patch/upgrade129.sql b/include/sql/patch/upgrade129.sql
new file mode 100644
index 0000000..a8b22ec
--- /dev/null
+++ b/include/sql/patch/upgrade129.sql
@@ -0,0 +1,59 @@
+begin;
+
+CREATE OR REPLACE FUNCTION comptaproc.insert_quant_purchase(p_internal text,
p_j_id numeric, p_fiche character varying, p_quant numeric, p_price numeric,
p_vat numeric, p_vat_code integer, p_nd_amount numeric, p_nd_tva numeric,
p_nd_tva_recup numeric, p_dep_priv numeric, p_client character varying,
p_tva_sided numeric, p_price_unit numeric)
+ RETURNS void
+AS $function$
+declare
+ fid_client integer;
+ fid_good integer;
+ account_priv account_type;
+ fid_good_account account_type;
+ n_dep_priv numeric;
+begin
+ n_dep_priv := p_dep_priv;
+ select p_value into account_priv from parm_code where
p_code='DEP_PRIV';
+ select f_id into fid_client from
+ fiche_detail where ad_id=23 and ad_value=upper(trim(p_client));
+ select f_id into fid_good from
+ fiche_detail where ad_id=23 and ad_value=upper(trim(p_fiche));
+ select ad_value into fid_good_account from fiche_detail where ad_id=5
and f_id=fid_good;
+ if strpos( fid_good_account , account_priv ) = 1 then
+ n_dep_priv=p_price;
+ end if;
+
+ insert into quant_purchase
+ (qp_internal,
+ j_id,
+ qp_fiche,
+ qp_quantite,
+ qp_price,
+ qp_vat,
+ qp_vat_code,
+ qp_nd_amount,
+ qp_nd_tva,
+ qp_nd_tva_recup,
+ qp_supplier,
+ qp_dep_priv,
+ qp_vat_sided,
+ qp_unit)
+ values
+ (p_internal,
+ p_j_id,
+ fid_good,
+ p_quant,
+ p_price,
+ p_vat,
+ p_vat_code,
+ p_nd_amount,
+ p_nd_tva,
+ p_nd_tva_recup,
+ fid_client,
+ n_dep_priv,
+ p_tva_sided,
+ p_price_unit);
+ return;
+end;
+$function$
+LANGUAGE plpgsql;
+insert into version (val,v_description) values (130,'fix bug : private fee not
saved into quant_purchase');
+commit;
\ No newline at end of file
- [Noalyss-commit] [noalyss] annotated tag r700-currency-002 created (now 9025a3b), Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 03/10: Task #448 : Currency : purchase, fix bug for autoreverse VAT, Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 02/10: Task #448 : correct bug if VAT Rate = 0 , amount was reset, Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 08/10: integrate fix for bug in insert_quant_purchase which cannot save private fee, Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 07/10: Task #448 : currency improve detail of operation, Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 04/10: Task #448 : correct bug when saving into quant_purchase, Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 05/10: Bug in QUANT_PURCHASE , dp_dep_priv is not saved, Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 01/10: Task #448 : SQL integrated into upgrade128, Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 09/10: Fix bug quant_purchase , private fee not saved, Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 06/10: comment, Dany De Bontridder, 2018/07/21
- [Noalyss-commit] [noalyss] 10/10: Fix bug quant_purchase , private fee not saved,
Dany De Bontridder <=