source: branches/version-2_5-dev/data/Smarty/templates/admin/order/status.tpl @ 19954

Revision 19954, 5.4 KB checked in by nanasess, 13 years ago (diff)

#382(管理画面XHTMLに変更)

  • ボタンに return false を付与

#628(未使用処理・定義などの削除)

  • Smarty/templates/admin/sales を削除
  • Property svn:eol-style set to LF
  • Property svn:mime-type set to text/x-smarty-template; charset=UTF-8
Line 
1<!--{*
2/*
3 * This file is part of EC-CUBE
4 *
5 * Copyright(c) 2000-2010 LOCKON CO.,LTD. All Rights Reserved.
6 *
7 * http://www.lockon.co.jp/
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22 */
23*}-->
24<form name="form1" id="form1" method="POST" action="?" >
25<input type="hidden" name="mode" value="" />
26<input type="hidden" name="status" value="<!--{if $arrForm.status == ""}-->1<!--{else}--><!--{$arrForm.status}--><!--{/if}-->" />
27<input type="hidden" name="search_pageno" value="<!--{$tpl_pageno}-->" >
28<input type="hidden" name="order_id" value="" />
29<div id="order" class="contents-main">
30  <h2>抽出条件</h2>
31    <div class="btn">
32    <!--{foreach key=key item=item from=$arrORDERSTATUS}-->
33      <a
34        class="btn-normal"
35        style="padding-right: 1em;"
36        <!--{if $key != $SelectedStatus}-->
37          href="javascript:;"
38          onclick="document.form1.search_pageno.value='1'; fnModeSubmit('search','status','<!--{$key}-->' ); return false;"
39        <!--{/if}-->
40      ><!--{$item}--></a>
41    <!--{/foreach}-->
42    </div>
43  <h2>ステータス変更</h2>
44  <!--{* 登録テーブルここから *}-->
45  <!--{if $tpl_linemax > 0 }-->
46  <div class="btn">
47    <select name="change_status">
48      <option value="" selected="selected" style="<!--{$Errormes|sfGetErrorColor}-->" >選択してください</option>
49      <!--{foreach key=key item=item from=$arrORDERSTATUS}-->
50      <!--{if $key ne $SelectedStatus}-->
51      <option value="<!--{$key}-->" ><!--{$item}--></option>
52      <!--{/if}-->
53      <!--{/foreach}-->
54      <option value="delete">削除</option>
55    </select>
56    <a class="btn-normal" href="javascript:;" onclick="fnSelectCheckSubmit(); return false;"><span>移動</span></a>
57  </div>
58  <span class="attention">※ <!--{$arrORDERSTATUS[$smarty.const.ORDER_CANCEL]}-->もしくは、削除に変更時には、在庫数を手動で戻してください。</span><br />
59
60  <p class="remark">
61    <!--{$tpl_linemax}-->件が該当しました。
62    <!--{$tpl_strnavi}-->
63  </p>
64
65  <table class="list center">
66    <tr>
67      <th><label for="move_check">選択</label> <input type="checkbox" name="move_check" id="move_check" onclick="fnAllCheck(this, 'input[name=move[]]')" /></th>
68      <th>対応状況</th>
69      <th>注文番号</th>
70      <th>受注日</th>
71      <th>顧客名</th>
72      <th>支払方法</th>
73      <th>購入金額(円)</th>
74      <th>入金日</th>
75      <th>発送日</th>
76    </tr>
77    <!--{section name=cnt loop=$arrStatus}-->
78    <!--{assign var=status value="`$arrStatus[cnt].status`"}-->
79    <tr style="background:<!--{$arrORDERSTATUS_COLOR[$status]}-->;">
80      <td><input type="checkbox" name="move[]" value="<!--{$arrStatus[cnt].order_id}-->" ></td>
81      <td><!--{$arrORDERSTATUS[$status]}--></td>
82      <td><a href="#" onclick="fnOpenWindow('./edit.php?order_id=<!--{$arrStatus[cnt].order_id}-->','order_disp','800','900'); return false;" ><!--{$arrStatus[cnt].order_id}--></td>
83      <td><!--{$arrStatus[cnt].create_date|sfDispDBDate:false}--></td>
84      <td><!--{$arrStatus[cnt].order_name01|h}--><!--{$arrStatus[cnt].order_name02|h}--></td>
85      <!--{assign var=payment_id value=`$arrStatus[cnt].payment_id`}-->
86      <td><!--{$arrPayment[$payment_id]|h}--></td>
87      <td class="right"><!--{$arrStatus[cnt].total|number_format}--></td>
88      <td><!--{if $arrStatus[cnt].payment_date != ""}--><!--{$arrStatus[cnt].payment_date|sfDispDBDate:false}--><!--{else}-->未入金<!--{/if}--></td>
89      <td><!--{if $arrStatus[cnt].status eq 5}--><!--{$arrStatus[cnt].commit_date|sfDispDBDate:false}--><!--{else}-->未発送<!--{/if}--></td>
90    </tr>
91    <!--{/section}-->
92  </table>
93  <input type="hidden" name="move[]" value="" />
94
95  <p><!--{$tpl_strnavi}--></p>
96
97  <!--{elseif $arrStatus != "" & $tpl_linemax == 0}-->
98  <div class="message">
99    該当するデータはありません。
100  </div>
101  <!--{/if}-->
102
103  <!--{* 登録テーブルここまで *}-->
104</div>
105</form>
106
107
108<script type="text/javascript">
109<!--
110  function fnSelectCheckSubmit(){
111
112    var selectflag = 0;
113    var fm = document.form1;
114
115    if(fm.change_status.options[document.form1.change_status.selectedIndex].value == ""){
116    selectflag = 1;
117    }
118
119    if(selectflag == 1){
120      alert('セレクトボックスが選択されていません');
121      return false;
122    }
123    var i;
124    var checkflag = 0;
125    var max = fm["move[]"].length;
126
127    if(max) {
128      for (i=0;i<max;i++){
129        if(fm["move[]"][i].checked == true){
130          checkflag = 1;
131        }
132      }
133    } else {
134      if(fm["move[]"].checked == true) {
135        checkflag = 1;
136      }
137    }
138
139    if(checkflag == 0){
140      alert('チェックボックスが選択されていません');
141      return false;
142    }
143
144    if(selectflag == 0 && checkflag == 1){
145    document.form1.mode.value = 'update';
146    document.form1.submit();
147    }
148  }
149
150//-->
151</script>
Note: See TracBrowser for help on using the repository browser.