The message sqlplus: command not found
gives the answer. Since you have an environment variable ORACLE_HOME set, put this line in your script after exporting ORACLE_HOME:
export PATH=$PATH:$ORACLE_HOME/bin
I also have a superstition of exporting TNS_ADMIN:
export TNS_ADMIN=$ORACLE_HOME/network/admin
I don't know if that's strictly necessary.