mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-06 23:05:36 +08:00
23 lines
650 B
HTML
23 lines
650 B
HTML
<!--
|
||
Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
See LICENSE file for license details.
|
||
-->
|
||
|
||
<a href="javascript:void(0)" onclick="do_cancel(<{$ar_id}>)">删除</a>
|
||
<script>
|
||
function do_cancel(e){
|
||
if(confirm('是否作废')){
|
||
new Request({
|
||
url:'index.php?app=finance&ctl=ar&act=do_cancel&id='+e,
|
||
method:'get',
|
||
onSuccess:function(json){
|
||
rs = JSON.decode(json);
|
||
if(rs.res == 'fail'){
|
||
alert(rs.msg);
|
||
}
|
||
finderGroup['<{$finder_id}>'].refresh();
|
||
}
|
||
}).send();
|
||
}
|
||
}
|
||
</script> |