From cd48c5e032194a2badbc3ec15d640a9230a9ca37 Mon Sep 17 00:00:00 2001 From: Korina Cordero Date: Tue, 2 Mar 2021 02:19:37 +0000 Subject: [PATCH] Add script to generate the customer source report. #539 --- .../generateCustomerSourceReport.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 utils/customer_source_report/generateCustomerSourceReport.sh diff --git a/utils/customer_source_report/generateCustomerSourceReport.sh b/utils/customer_source_report/generateCustomerSourceReport.sh new file mode 100755 index 00000000..5d0c3700 --- /dev/null +++ b/utils/customer_source_report/generateCustomerSourceReport.sh @@ -0,0 +1,9 @@ +#!/bin/sh + +/var/www/resq/bin/console report:customer_source 2020 09 /tmp/customer_source_report_202009.csv +/var/www/resq/bin/console report:customer_source 2020 10 /tmp/customer_source_report_202010.csv +/var/www/resq/bin/console report:customer_source 2020 11 /tmp/customer_source_report_202011.csv +/var/www/resq/bin/console report:customer_source 2020 12 /tmp/customer_source_report_202012.csv +/var/www/resq/bin/console report:customer_source 2021 01 /tmp/customer_source_report_202101.csv +/var/www/resq/bin/console report:customer_source 2021 02 /tmp/customer_source_report_202102.csv +/var/www/resq/bin/console report:customer_source 2021 03 /tmp/customer_source_report_202103.csv