Files
OMS/app/ome/view/admin/system/cnauto.html
2026-01-04 19:08:31 +08:00

52 lines
1.8 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.
-->
<{capture name="header"}>
<link href="../apps/ome/statics/ome.css" rel="stylesheet" type="text/css">
<{/capture}>
<div class="tableform">
<{if $shopData.shop_type == 'taobao'}>
<form action="index.php?<{$env.server.QUERY_STRING}>" id="shop_dly_crop" method="post">
<div class="division">
<input type="hidden" name="shop_id" value="<{$shop_id}>" />
<table>
<tr>
<th>菜鸟流转订单仓库设置</th>
<td>
<select name="branch_id">
<option value="">请选择</option>
<{foreach from=$branch_list item=branch}>
<option value="<{$branch.branch_id}>" <{if $branch.branch_id==$auto_branch_id}>selected<{/if}>><{$branch.name}></option>
<{/foreach}>
</select>
<span class="red">选择后菜单流转订单会指定为此仓库确认生成发货单会推向对应WMS</span>
</td>
</tr>
</table>
<div class="division">
<{button type="submit" label="保存" class="btn-secondery" id="btn_manual"}>
</div>
</div>
<{else}>
<span class="red">仅淘系店铺支持菜鸟流转订单仓库设置</span>
<{/if}>
</form>
</div>