Server : Apache
System : Linux iZ2vcgyutqttsd1p850kl8Z 3.10.0-1160.92.1.el7.x86_64 #1 SMP Tue Jun 20 11:48:01 UTC 2023 x86_64
User : www ( 1000)
PHP Version : 5.6.40
Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Directory :  /www/wwwroot/saimikebio.com/ecshopjcw/templates/
Upload File :
Current Directory [ Writeable ] Root Directory [ Writeable ]


Current File : /www/wwwroot/saimikebio.com/ecshopjcw/templates/order_operate.htm
<!-- $Id -->
{include file="pageheader.htm"}
<form name="theForm" method="get" action="order.php" onsubmit="return check()">
<div class="list-div">
<table>
  <tr>
    <th width="120">{$lang.label_action_note}</th>
    <td><textarea name="action_note" cols="60" rows="3">{$action_note}</textarea>
    {if $require_note}{$lang.require_field}{/if}</td>
  </tr>
  {if $show_cancel_note}
  <tr>
    <th>{$lang.label_cancel_note}</th>
    <td><textarea name="cancel_note" cols="60" rows="3" id="cancel_note">{$cancel_note}</textarea>
      {$lang.require_field}{$lang.notice_cancel_note}</td>
  </tr>
  {/if}
  {if $show_invoice_no}
  <tr>
    <th>{$lang.label_invoice_no}</th>
    <td><input name="invoice_no" type="text" size="30" /></td>
  </tr>
  {/if}
  {if $show_refund}
  <tr>
    <th>{$lang.label_handle_refund}</th>
    <td><p>{if !$anonymous}<label><input type="radio" name="refund" value="1" />{$lang.return_user_money}</label><br>{/if}
      <label><input type="radio" name="refund" value="2" />{$lang.create_user_account}</label><br>
      <label><input name="refund" type="radio" value="3" />
      {$lang.not_handle}</label><br>
    </p></td>
  </tr>
  <tr>
    <th>{$lang.label_refund_note}</th>
    <td><textarea name="refund_note" cols="60" rows="3" id="refund_note">{$refund_note}</textarea></td>
  </tr>
  {/if}
  <tr>
    <td colspan="2">
      <div align="center">
        <input type="submit" name="submit" value="{$lang.button_submit}" class="button" />
        <input type="button" name="back" value="{$lang.back}" class="button" onclick="history.back()" />
        <input type="hidden" name="order_id" value="{$order_id}" />
        <input type="hidden" name="operation" value="{$operation}" />
        <input type="hidden" name="act" value="{if $batch}batch_operate_post{else}operate_post{/if}" />
        </div></td>
  </tr>
</table>
</div>
</form>
<script language="JavaScript">
  var require_note = '{$require_note}';
  var show_refund  = '{$show_refund}';
  var show_cancel = '{$show_cancel_note}';
{literal}
  function check()
  {
    if (require_note && document.forms['theForm'].elements['action_note'].value == '')
    {
      alert(pls_input_note);
      return false;
    }
	if (show_cancel && document.forms['theForm'].elements['cancel_note'].value == '')
	{
	  alert(pls_input_cancel);
	  return false;
	}
    if (show_refund)
    {
      var selected = false;
      for (var i = 0; i < document.forms['theForm'].elements.length; i++)
      {
        ele = document.forms['theForm'].elements[i];
        if (ele.tagName == 'INPUT' && ele.name == 'refund' && ele.checked)
        {
          selected = true;
          break;
        }
      }
      if (!selected)
      {
        alert(pls_select_refund);
        return false;
      }
    }
    return true;
  }
{/literal}
</script>
{include file="pagefooter.htm"}