mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-31 05:25:32 +08:00
44 lines
2.0 KiB
HTML
44 lines
2.0 KiB
HTML
<!--
|
||
Copyright 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.
|
||
-->
|
||
|
||
<div class="tableform">
|
||
<h3>选择WMS</h3>
|
||
<div class="division">
|
||
<form method="post" action="index.php?app=ome&ctl=admin_branch&act=choosebranch" id="form-branch">
|
||
<table width="100%" cellspacing="0" cellpadding="0" border="0" >
|
||
<tbody>
|
||
<tr>
|
||
<th>仓库对应WMS:</th>
|
||
<td colspan="2">
|
||
<ul style='width:600px;'>
|
||
<{foreach item=wms from=$wms_list}>
|
||
<li style='float:left; padding:10px;'>
|
||
<input type="radio" class='wms_type' name="wms_id" id="wms_id" <{if $wms_disabled}>disabled<{/if}> value="<{$wms.wms_id}>" <{if $branch.wms_id == $wms.wms_id}>checked<{/if}> >
|
||
<span <{if $branch.wms_id == $wms.wms_id}>class="shop-name"<{/if}> title="<{$wms.wms_name}>"><{$wms.wms_name|cut}></span>
|
||
</li>
|
||
<{/foreach}>
|
||
</ul>
|
||
</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
<div class="table-action"><{button label="提交" type="submit" name="submit" id="btn-branch"}> <{button label="提交" style="display:none;" type="button" name="button" id="btn-notice"}> <{button label="关闭" onclick="javascript:void(window.close());" class="btn-secondary" type="button"}></div>
|
||
<{if $branch.branch_id}>
|
||
<input type="hidden" name="branch_id" value="<{$branch.branch_id}>">
|
||
<{/if}>
|
||
</form>
|
||
</div>
|
||
</div> |