source: branches/comu-ver2/data/Smarty/templates/default/admin/order/status.tpl @ 17422

Revision 17422, 5.5 KB checked in by Seasoft, 16 years ago (diff)

管理機能 - 受注管理 - ステータス管理 不具合の暫定対応。

  • Property svn:eol-style set to LF
  • Property svn:mime-type set to text/html; charset=UTF-8
Line 
1<!--{*
2/*
3 * This file is part of EC-CUBE
4 *
5 * Copyright(c) 2000-2008 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="<!--{$smarty.server.PHP_SELF|escape}-->" >
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    <!--{foreach key=key item=item from=$arrORDERSTATUS}-->
32      <a
33        style="padding-right: 1em;"
34        <!--{if $key != $SelectedStatus}-->
35          href="#"
36          onclick="document.form1.search_pageno.value='1'; fnModeSubmit('search','status','<!--{$key}-->' );"
37        <!--{/if}-->
38      ><!--{$item}--></a>
39    <!--{/foreach}-->
40  <h2>編集</h2>
41  <!--{* 登録テーブルここから *}-->
42  <!--{if $tpl_linemax > 0 }-->
43  <div>
44    <select name="change_status">
45      <option value="" selected="selected" style="<!--{$Errormes|sfGetErrorColor}-->" >選択してください</option>
46      <!--{foreach key=key item=item from=$arrORDERSTATUS}-->
47      <!--{if $key ne $SelectedStatus}-->
48      <option value="<!--{$key}-->" ><!--{$item}--></option>
49      <!--{/if}-->
50      <!--{/foreach}-->
51      <option value="delete">削除</option>
52    </select>
53    <button type="button" onclick="fnSelectCheckSubmit();"><span>移動</span></button>
54  </div>
55
56  <p>
57    <!--{$tpl_linemax}-->件が該当しました。
58    <!--{$tpl_strnavi}-->
59  </p>
60   
61  <div class="btn">
62    <button type="button" onclick="fnBoxChecked(true);"><span>全て選択</span></button>
63    <button type="button" onclick="fnBoxChecked(false);"><span>全て解除</span></button>
64  </div>
65
66  <table class="list center">
67    <tr>
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><a href ="<!--{$smarty.server.PHP_SELF|escape}-->" onclick="fnOpenWindow('./edit.php?order_id=<!--{$arrStatus[cnt].order_id}-->','order_disp','800','900'); return false;" ><!--{$arrStatus[cnt].order_id}--></td>
81      <td><!--{$arrStatus[cnt].create_date|sfDispDBDate:false}--></td>
82      <td><!--{$arrStatus[cnt].order_name01|escape}--><!--{$arrStatus[cnt].order_name02|escape}--></td>
83      <!--{assign var=payment_id value=`$arrStatus[cnt].payment_id`}-->
84      <td><!--{$arrPayment[$payment_id]|escape}--></td>
85      <td class="right"><!--{$arrStatus[cnt].total|number_format}--></td>
86      <td><!--{if $arrStatus[cnt].status eq 5}--><!--{$arrStatus[cnt].commit_date|sfDispDBDate:false}--><!--{else}-->未発送<!--{/if}--></td>
87      <td><!--{$arrORDERSTATUS[$status]}--></td>
88      <td><input type="checkbox" name="move[]" value="<!--{$arrStatus[cnt].order_id}-->" ></td>
89    </tr>
90    <!--{/section}-->
91  </table>
92  <input type="hidden" name="move[]" value="" />
93   
94  <div class="btn">
95    <button type="button" onclick="fnBoxChecked(true);"><span>全て選択</span></button>
96    <button type="button" onclick="fnBoxChecked(false);"><span>全て解除</span></button>
97  </div>
98   
99  <p><!--{$tpl_strnavi}--></p>
100   
101  <!--{elseif $arrStatus != "" & $tpl_linemax == 0}-->
102  <div class="message">
103    該当するデータはありません。
104  </div>
105  <!--{/if}-->
106           
107  <!--{* 登録テーブルここまで *}-->
108</div>
109</form>
110
111
112<script type="text/javascript">
113<!--
114  function fnSelectCheckSubmit(){
115
116    var selectflag = 0;
117    var fm = document.form1;
118       
119    if(fm.change_status.options[document.form1.change_status.selectedIndex].value == ""){
120    selectflag = 1;
121    }
122   
123    if(selectflag == 1){
124      alert('セレクトボックスが選択されていません');
125      return false;
126    }
127    var i;
128    var checkflag = 0;
129    var max = fm["move[]"].length;
130   
131    if(max) {
132      for (i=0;i<max;i++){
133        if(fm["move[]"][i].checked == true){
134          checkflag = 1;
135        }
136      }
137    } else {
138      if(fm["move[]"].checked == true) {
139        checkflag = 1;
140      }
141    }
142
143    if(checkflag == 0){
144      alert('チェックボックスが選択されていません');
145      return false;
146    }
147   
148    if(selectflag == 0 && checkflag == 1){
149    document.form1.mode.value = 'update';
150    document.form1.submit();
151    }
152  }
153 
154  function fnBoxChecked(check){
155    var count;
156    var fm = document.form1;
157    var max = fm["move[]"].length;
158    for(count=0; count<max; count++){
159      fm["move[]"][count].checked = check;
160    }
161  }
162 
163//-->
164</script>
Note: See TracBrowser for help on using the repository browser.