Files
OMS/app/logisticsaccounts/view/actual/delete.html
2026-01-04 19:08:31 +08:00

76 lines
2.2 KiB
HTML

<!--
Copyright 2012-2026 ShopeX (https://www.shopex.cn)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<style type="text/css">
<!--
.STYLE1 {color: #FF0000}
-->
</style>
<div class="tableform">
<div class="division">
<form id='actual_form' method='post'>
<table border="1" cellpadding="0" cellspacing="0" class="girdlist">
<tbody>
<tr >
<td align="center"><p>是否确定删除此任务?</p></td>
</tr>
</tbody>
</table>
<input type='hidden' name='task_id' value='<{$task_id}>'>
<input type='hidden' name='finder_id' value='<{$finder_id}>'>
<div id="cc" class="noprint table-action">
<{button type="button" class="btn" id="actual-save-btn" label="确定"}> &nbsp; <{button type="button" class="btn" id="actual-confirm-btn" label="取消" onclick="javascript:this.getParent('.dialog').retrieve('instance').close();"}></div>
</form>
</div>
</div>
<script>
(function(){
$('actual-save-btn').addEvent('click',function(e){
var _this=this;
var form=this.getParent('form');
var querystring = $('actual_form').toQueryString();
new Request({url:'index.php?app=logisticsaccounts&ctl=admin_actual_task&act=do_delete&',data:querystring,
onComplete:function(rs){
rs=JSON.decode(rs);
if (typeof(rs.error) != 'undefined'){
return MessageBox.error(rs.error);
}else{
alert('删除成功!');
_this.getParent('.dialog').retrieve('instance').close();
window.finderGroup['<{$env.get.finder_id}>'].refresh(true);
}
}}).send();
$('actual-confirm-btn').addEvent('click',function(e){
this.getParent('.dialog').retrieve('instance').close();
});
});
})();
</script>