Files
OMS/app/finance/view/bill/add.html
2026-01-04 19:08:31 +08:00

116 lines
4.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=finance&ctl=bill&act=do_add_bill&finder_id=<{$finder_id}>" id="add_form">
<input type="hidden" value='<{$json}>' id="json" />
<div>
<table class="gridlist" style="*width:97%;">
<tr>
<td>费用对象</td>
<td><input type="text" vtype="required" name="fee_obj" /></td>
</tr>
<tr>
<td>客户/会员</td>
<td><input type="text" vtype="required" name="member" /></td>
</tr>
<tr>
<td>费用类型</td>
<td>
<select vtype="required" id="fee_type" onchange='change_fee_type(this.value)'>
<{foreach from=$fee_type_data key=key item=val}>
<option value="<{$key}>"><{$val.name}></option>
<{/foreach}>
</select>
</td>
</tr>
<tr>
<td>费用名称</td>
<td>
<div id='replace_type'>
<select vtype="required" name="fee_item">
<{foreach from=$fee_type_data key=key item=val name=foo}>
<{if $smarty.foreach.foo.first}>
<{foreach from=$val['fee_item'] item=item key=id}>
<option value="<{$item}>"><{$item}></option>
<{/foreach}>
<{/if}>
<{/foreach}>
</select>
</div>
</td>
</tr>
<tr>
<td>业务单据号</td>
<td><input type="text" vtype="required" name="order_bn" /></td>
</tr>
<tr>
<td>支付单据号</td>
<td><input type="text" vtype="required" name="credential_number" /></td>
</tr>
<tr>
<td>发生日期</td>
<td><{input type="date" name="trade_time" vtype="required" /}></td>
</tr>
<tr>
<td>总金额</td>
<td><input type="text" vtype="required&&money" name="money" /></td>
</tr>
</table>
<div align="center">
<button value="提交" id="btn-do-confirm" class="btn btn-primary" onclick="do_submit()" >
<span>
<span>确定</span>
</span>
</button>
</div>
</div>
</form>
<script>
var form = $('add_form');
form.store('target',{
onRequest:function (){
$('add_form').set('disabled', 'true');
$('add_form').getElements('span')[1].set('text','处理中');
},
onComplete:function(rs){
var result = JSON.decode(rs);
if (typeof(result.error) != 'undefined'){
$('add_form').set('disabled', '');
$('add_form').getElements('span')[1].set('text','确定');
}else {
$('add_form').getParent('.dialog').retrieve('instance').close();
finderGroup['<{$env.get.finder_id}>'].refresh();
}
}
});
function do_submit(){
$('add_form').fireEvent('submit',{stop:function(){}});
}
function change_fee_type(type_id){
var json = $('json').value;
a = JSON.decode(json);
rs = a[type_id]['fee_item'];
var option='',v='';
for(v in rs) {
option += '<option value="'+rs[v]+'">'+rs[v]+'</option>';
}
var left = '<select vtype="required" name="fee_item">';
var middle = option;
var right = '</select>'
var html = left+middle+right;
$('replace_type').set('html',html);
}
</script>