From feef0e4c2b4bd6b776b25f5a1bd6fdbf63fd08b2 Mon Sep 17 00:00:00 2001 From: ivan Date: Wed, 17 Aug 2005 22:23:46 +0000 Subject: infrastructure for easier schema changes, and: add payment_gateway, payment_gateway_option and agent_payment_gateway tables, add paystart_month, paystart_year, payissue and payip fields to cust_main, add preliminary gateway and gateway override editing to web UI, use payment gateway override when processing payments (card type, not taxclass yet) --- FS/t/option_Common.t | 5 +++++ FS/t/payment_gateway.t | 8 ++++++++ FS/t/payment_gateway_option.t | 8 ++++++++ 3 files changed, 21 insertions(+) create mode 100644 FS/t/option_Common.t create mode 100644 FS/t/payment_gateway.t create mode 100644 FS/t/payment_gateway_option.t (limited to 'FS/t') diff --git a/FS/t/option_Common.t b/FS/t/option_Common.t new file mode 100644 index 000000000..ad261415c --- /dev/null +++ b/FS/t/option_Common.t @@ -0,0 +1,5 @@ +BEGIN { $| = 1; print "1..1\n" } +END {print "not ok 1\n" unless $loaded;} +use FS::option_Common; +$loaded=1; +print "ok 1\n"; diff --git a/FS/t/payment_gateway.t b/FS/t/payment_gateway.t new file mode 100644 index 000000000..b91d58244 --- /dev/null +++ b/FS/t/payment_gateway.t @@ -0,0 +1,8 @@ +BEGIN { $| = 1; print "1..1 +" } +END {print "not ok 1 +" unless $loaded;} +use FS::payment_gateway; +$loaded=1; +print "ok 1 +"; diff --git a/FS/t/payment_gateway_option.t b/FS/t/payment_gateway_option.t new file mode 100644 index 000000000..e52b6b487 --- /dev/null +++ b/FS/t/payment_gateway_option.t @@ -0,0 +1,8 @@ +BEGIN { $| = 1; print "1..1 +" } +END {print "not ok 1 +" unless $loaded;} +use FS::payment_gateway_option; +$loaded=1; +print "ok 1 +"; -- cgit v1.2.1