From 4f5ec9f68b9ed308f251a7bd715fa82507d36cc9 Mon Sep 17 00:00:00 2001 From: "Jorge E. Gomez" Date: Thu, 13 Oct 2022 18:58:11 -0500 Subject: [PATCH] Includes all options in Install script --- install_odoo_code.sh | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/install_odoo_code.sh b/install_odoo_code.sh index f4088dc..d687687 100755 --- a/install_odoo_code.sh +++ b/install_odoo_code.sh @@ -95,7 +95,7 @@ cp_vendor01 () echo "(selected modules)" echo " …from $SRC to $DEST" echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" - rsync $OPTIONS $EXCL $SRC $DEST + rsync $OPTIONS $SRC $DEST echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~" } @@ -133,7 +133,9 @@ cp_all () { cp_core # Install Odoo core cp_community # Install OCA modules - cp_vendor # Install Avancys modules + cp_vendor # Install standard Avancys modules + cp_vendor01 # Install replacement for removed Avancys modules + cp_vendor02 # Install Avancys e-document modules cp_custom # Install Custom modules } @@ -175,7 +177,10 @@ case $Modules in 'vendor') # Install Avancys modules cp_vendor exit;; - 'vendor02') # Install Avancys e-invoice modules + 'vendor01') # Install replacement for removed Avancys modules + cp_vendor01 + exit;; + 'vendor02') # Install Avancys e-document modules cp_vendor02 exit;; 'custom') # Install Custom modules developed in-house