优化动态单价

This commit is contained in:
Your Name 2023-09-11 15:53:12 +08:00
parent 0520b9fbe2
commit 0514d3af4e
4 changed files with 26 additions and 14 deletions

View File

@ -206,9 +206,9 @@
errInfo: "计费单价不能为空"
},
{
limit: "money",
limit: "moneyModulus",
param: "",
errInfo: "计费单价格式错误"
errInfo: "计费单价格式错误如1.5000"
}
],
'addFeeConfigInfo.additionalAmount': [
@ -218,7 +218,7 @@
errInfo: "附加费用不能为空"
},
{
limit: "money",
limit: "moneyModulus",
param: "",
errInfo: "附加费用格式错误"
}

View File

@ -33,9 +33,18 @@
</option>
</select>
</div>
<div class="col-lg-1 padding-right-xs padding-left-xl input-group-sm">
<input v-model="simplifyFeeReceiptInfo.receiptCode" type="text"
:placeholder="vc.i18n('收据编号','simplifyFeeReceipt')" class="form-control ">
</div>
<div class="col-lg-1 padding-right-xs padding-left-xl">
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px"
v-on:click="_queryFeeReceiptMethod()">查询
</button>
</div>
<div class="col-lg-2 padding-right-xs padding-left-xl" v-if="simplifyFeeReceiptInfo.objType != '6666' ">
</div>
<div class="col-lg-6 text-right padding-right-lg">
<div class="col-lg-4 text-right padding-right-lg">
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px" v-on:click="_printFeeReceipt()">打印
</button>
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px" v-on:click="_printFeeSmallReceipt()">打印小票

View File

@ -13,6 +13,7 @@
payObjId: '',
roomId: '',
carId: '',
receiptCode:'',
total: '',
records: '',
ownerId: '',
@ -71,12 +72,13 @@
} else {
_objId = $that.simplifyFeeReceiptInfo.contractId
}
var param = {
let param = {
params: {
page: _page,
row: _rows,
objType: $that.simplifyFeeReceiptInfo.objType,
objId: _objId,
receiptCode:$that.simplifyFeeReceiptInfo.receiptCode,
communityId: vc.getCurrentCommunity().communityId
}
};
@ -158,6 +160,7 @@
objId: '',
roomId: '',
carId: '',
receiptCode:'',
total: '',
records: '',
ownerId: '',

View File

@ -4,31 +4,31 @@
<thead>
<tr>
<th class="text-center">
<span><vc:i18n name="设备编码" namespace="simplifyOwnerAccessContol"></vc:i18n></span>
<vc:i18n name="设备编码" namespace="simplifyOwnerAccessContol"></vc:i18n>
</th>
<th class="text-center">
<span><vc:i18n name="设备名称" namespace="simplifyOwnerAccessContol"></vc:i18n></span>
<vc:i18n name="设备名称" namespace="simplifyOwnerAccessContol"></vc:i18n>
</th>
<th class="text-center">
<span><vc:i18n name="对象类型" namespace="simplifyOwnerAccessContol"></vc:i18n></span>
<vc:i18n name="对象类型" namespace="simplifyOwnerAccessContol"></vc:i18n>
</th>
<th class="text-center">
<span><vc:i18n name="对象名称" namespace="simplifyOwnerAccessContol"></vc:i18n></span>
<vc:i18n name="对象名称" namespace="simplifyOwnerAccessContol"></vc:i18n>
</th>
<th class="text-center">
<span><vc:i18n name="指令" namespace="simplifyOwnerAccessContol"></vc:i18n></span>
<vc:i18n name="指令" namespace="simplifyOwnerAccessContol"></vc:i18n>
</th>
<th class="text-center">
<span><vc:i18n name="状态" namespace="simplifyOwnerAccessContol"></vc:i18n></span>
<vc:i18n name="状态" namespace="simplifyOwnerAccessContol"></vc:i18n>
</th>
<th class="text-center">
<span><vc:i18n name="说明" namespace="simplifyOwnerAccessContol"></vc:i18n></span>
<vc:i18n name="说明" namespace="simplifyOwnerAccessContol"></vc:i18n>
</th>
<th class="text-center">
<span><vc:i18n name="同步时间" namespace="simplifyOwnerAccessContol"></vc:i18n></span>
<vc:i18n name="同步时间" namespace="simplifyOwnerAccessContol"></vc:i18n>
</th>
<th class="text-center">
<span><vc:i18n name="操作" namespace="simplifyOwnerAccessContol"></vc:i18n></span>
<vc:i18n name="操作" namespace="simplifyOwnerAccessContol"></vc:i18n>
</th>
</tr>
</thead>