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

27 lines
1.6 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.
-->
<tr>
<th>订单缓冲时间:</th>
<td><select name="set[auto.setting][bufferTime]" >
<option value="10" <{if $setData.auto_setting.bufferTime == '10'}>selected<{/if}>>10分钟</option>
<option value="30" <{if $setData.auto_setting.bufferTime == '30'}>selected<{/if}>>30分钟</option>
<option value="60" <{if $setData.auto_setting.bufferTime == '60'}>selected<{/if}>>1小时</option>
<option value="120" <{if $setData.auto_setting.bufferTime == '120'}>selected<{/if}>>2小时</option>
<option value="180" <{if $setData.auto_setting.bufferTime == '180'}>selected<{/if}>>3小时</option>
<option value="240" <{if $setData.auto_setting.bufferTime == '240'}>selected<{/if}>>4小时</option>
</select><{help}>用户下单后需等待一定的时间后才进入处理流程,能有效解决多个订单合并的问题<{/help}></td>
</tr>