Files
OMS/app/ome/view/admin/system/jzorderdelivery.html
2026-01-04 17:22:44 +08:00

63 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.
-->
<{capture name="header"}>
<link href="../apps/ome/statics/ome.css" rel="stylesheet" type="text/css">
<{/capture}>
<div class="tableform">
<div class="division">
<input type="hidden" name="shop_id" value="<{$shop_id}>" />
<table>
<tr><th>是否开启家装订单发货</th><td>
<input type="radio" name="jzorderconf" value='1' <{if $jzorderconf=='1'}>checked<{/if}>> 是
<input type="radio" name="jzorderconf" value='0' <{if $jzorderconf=='0' || $jzorderconf==''}>checked<{/if}>> 否
(开启后订单会向淘宝获取家装服务商信息发货) </td></tr>
</table>
<div class="division">
<{button type="submit" label="保存" class="btn-secondery" id="btn_manual"}>
</div>
</div>
</div>
<script>
if($("btn_manual")){
$("btn_manual").addEvent("click",function(e){
var jzorderconf= $E('input[type=radio]:checked').get('value');
new Request({
url:'index.php?app=ome&ctl=admin_shop&act=jzorder',
data:"&shop_id="+"<{$shop_id}>&jzorderconf="+jzorderconf,
method:'post',
onSuccess:function(response){
var resp = JSON.decode(response);
if(resp.rsp=="fail"){
var msg = resp.msg ? resp.msg : resp.res;
MessageBox.error(msg);
}else{ MessageBox.success("保存成功");}
}
}).send();
});
}
</script>