Includes all options in Install script

This commit is contained in:
Jorge Enrique Gómez Gómez 2022-10-13 18:58:11 -05:00
parent e548819388
commit 4f5ec9f68b

View File

@ -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