Commit cdb9753a authored by 吴春's avatar 吴春

提交账户流水增加本位币显示以及增加出纳审核通过查询

parent 97b02980
......@@ -113,6 +113,7 @@
<el-option :label='$t("visa.v_tongguo")' :value='2'></el-option>
<el-option :label='$t("fnc.bohui")' :value='3'></el-option>
<el-option :label='$t("fnc.a_cnzancun")' :value='5'></el-option>
</el-select>
</el-form-item>
</el-col>
......@@ -127,6 +128,13 @@
</el-date-picker>
</el-form-item>
</el-col>
<el-col :span="4" :gutter="35">
<el-form-item label="出纳审核通过">
<el-switch v-model="msg.IsSelectCNTG" inactive-text="" active-value="true" ></el-switch>
</el-form-item>
</el-col>
</el-row>
</el-form>
<ul>
......@@ -145,12 +153,13 @@
<th width="440">关联单号(多单据表示合并审核)</th>
<th width="340">收/付款对象</th>
<th>币种</th>
<th>本位币金额</th>
<th>收款</th>
<th>付款</th>
<th>余额</th>
</tr>
<tr>
<td :colspan="8">{{$t('fnc.a_qcyue')}}</td>
<td :colspan="9">{{$t('fnc.a_qcyue')}}</td>
<td>{{moneyFormat(StartMoney)}}</td>
</tr>
<tr v-for="(item,index) in DataList">
......@@ -165,12 +174,13 @@
</td>
<td>{{item.Alias}}</td>
<td>{{item.CurrencyName}}</td>
<td>{{ moneyFormat(item.BWMoney) }}</td>
<td>{{ item.AllotType == 1 ? moneyFormat(item.Money) : '' }}</td>
<td>{{ item.AllotType == 2 ? moneyFormat(item.Money) : '' }}</td>
<td>{{ moneyFormat(item.EndMoney) }}</td>
</tr>
<tr>
<td :colspan="6">{{$t('fnc.a_heji')}}{{$t('hotel.hotel_totalRoom')}}{{ DataList.length }} {{$t('hotel.hotel_item')}}</td>
<td :colspan="7">{{$t('fnc.a_heji')}}{{$t('hotel.hotel_totalRoom')}}{{ DataList.length }} {{$t('hotel.hotel_item')}}</td>
<td>{{ InMoney == 0 ? '-' : moneyFormat(InMoney) }}</td>
<td>{{ OutMoney == 0 ? '-' : moneyFormat(OutMoney) }}</td>
<td>{{ moneyFormat(allMoney) }}</td>
......@@ -207,6 +217,7 @@ export default {
QEndDate:'',
BankList:[],
Is_Cashier:-1,
IsSelectCNTG:false,
},
Type:1,
AccountId:'',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment