Files
OMS/app/inventorydepth/view/dispatch_confirm.html
2025-12-28 23:13:25 +08:00

28 lines
1.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!--
Copyright © ShopeX http://www.shopex.cn. All rights reserved.
See LICENSE file for license details.
-->
<div id="downloading" class="division">
商品已经分配给所选店铺,您可以前往已分配商品界面查看已分配好的商品,也可以留在此界面继续分配商品。
</div>
<div class="table-action">
<{button label=$___idm="继续分配商品"|t:'idm' type="button" id="btn_continue"}>
<{button label=$___idm="查看已分配商品"|t:'idm' type="button" id="btn_break"}>
</div>
<script>
//继续分配商品
$('btn_continue').addEvent('click',function(e){
this.getParent('.dialog').retrieve('instance').close();
$$('[name^=shopIds[]').set('checked','');
$('btn_submit').set('disabled','');
});
//查看已分配商品
$('btn_break').addEvent('click',function(e){
this.getParent('.dialog').retrieve('instance').close();
$('shopForm').getParent('.dialog').retrieve('instance').close();
W.page('index.php?app=inventorydepth&ctl=product&act=index_merchan');
});
</script>