#!/bin/bash

AREA=$1
CHECK=$2
TOTAL=$3
CLICKED_TAG=$4 # hold or void
IDS=$5 # details indexs

if [ "$AREA" = "init" ]; then
  # code executed only on the first time
  exit
fi

#echo "#### $AREA - $CHECK - $TOTAL - $CLICKED_TAG - $IDS" >> /tmp/order.log

#echo "ERROR=<br>error message"
echo "OK"

