Files
OMS/app/inventorydepth/view/sync/setting.html
2026-01-04 19:08:31 +08:00

46 lines
2.2 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 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.
-->
<form method="post" action="index.php?app=inventorydepth&ctl=sync_set&act=index" id="form-setting" >
<div class="tableform tableform-tabs">
<div class="division">
<table width="100%" cellspacing="0" cellpadding="0" border="0" >
<tbody>
<tr>
<th>库存同步基准设置</th>
<td>
<input type="radio" name="set[stock.sync.set]" value="sales" <{if $setData.stock_sync_set != 'skuid'}> checked<{/if}>>销售物料
<input type="radio" name="set[stock.sync.set]" value="skuid" <{if $setData.stock_sync_set == 'skuid'}> checked<{/if}>>平台SKUID
&nbsp;&nbsp;<span style="color:red;">* 选择平台skuid时需在商品上架时同步店铺商品。暂支持<{$support_name}></span>
</td>
</tr>
<tr>
<th>库存同步方式设置</th>
<td>
<input type="radio" name="set[stock.sync.mode]" value="full" <{if $setData.stock_sync_mode != 'increment'}> checked<{/if}>>全量库存
<input type="radio" name="set[stock.sync.mode]" value="increment" <{if $setData.stock_sync_mode == 'increment'}> checked<{/if}>>增量库存
&nbsp;&nbsp;<span style="color:red;">* 选择增量库存的时候,会对比上一次库存进行加减。(增量仅支持<{$mode_support_name}></span>
</td>
</tr>
</tbody>
</table>
</div>
<div class="table-action">
<{button label="提交" type="submit" name="submit" id="btn-setting"}>
</div>
</div>
</form>