mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-05 22:55:32 +08:00
40 lines
624 B
HTML
40 lines
624 B
HTML
<!--
|
||
Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
See LICENSE file for license details.
|
||
-->
|
||
|
||
<html>
|
||
<head>
|
||
<title>选择仓库</title>
|
||
|
||
</head>
|
||
|
||
<body>
|
||
<div class="tableform">
|
||
<table border="0" cellspacing="0" cellpadding="0">
|
||
|
||
<tr>
|
||
<td></td>
|
||
</tr>
|
||
|
||
</table>
|
||
</div>
|
||
</body>
|
||
</html>
|
||
<script>
|
||
window.addEvent('domready', function() {
|
||
new Request({
|
||
url : 'index.php?app=ome&ctl=admin_branch&act=ajax_wms_branch&p[0]=<{$wms_id}>',
|
||
method : 'post',
|
||
|
||
onComplete : function(rs){
|
||
var rs = JSON.decode(rs);
|
||
|
||
|
||
}
|
||
}).send();
|
||
|
||
});
|
||
|
||
</script>
|