mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 19:05:34 +08:00
46 lines
2.2 KiB
HTML
46 lines
2.2 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.
|
||
-->
|
||
|
||
<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
|
||
<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}>>增量库存
|
||
<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> |