zhangjiaqing
8 天以前 1cef3adee31c6934c0da4b4f0b8a6f5ac03b364f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<div>
 
    <div class="text-center">
        <div style="color:#000;font-size:26px">{{printPayFeeInfo.communityName}}
            <span v-if="printPayFeeInfo.apply == 'Y'">申请单</span>
            <span v-if="printPayFeeInfo.apply == 'N'">收据单</span>
            <span v-if="printPayFeeInfo.apply == 'R'">退款单</span>
        </div>
    </div>
    <div style="color:#000;font-size:18px;margin-left:20px">
        <div class="float-left">
            业主:{{printPayFeeInfo.payObjName}}
        </div>
        <div class="float-right text-right">
            <span>单号{{printPayFeeInfo.receiptNum}}</span>
            <br />
            <span>缴费时间:{{printPayFeeInfo.feeTime}}</span>
        </div>
    </div>
    <table class="table vc-table-border" style="color:#000;font-size:18px">
        <thead>
            <tr>
                <th scope="col" class="text-center" width="80px">
                    <vc:i18n name="编号" namespace="printPayFee"></vc:i18n>
                </th>
                <th scope="col" class="text-center">
                    <vc:i18n name="收费内容" namespace="printPayFee"></vc:i18n>
                </th>
                <th scope="col" class="text-center">
                    <vc:i18n name="房屋/车辆" namespace="printPayFee"></vc:i18n>
                </th>
                <th scope="col" class="text-center">
                    <vc:i18n name="收费范围" namespace="printPayFee"></vc:i18n>
                </th>
                <!-- <th scope="col" class="text-center"><span><vc:i18n name="周期" namespace="printPayFee"></vc:i18n></span></th> -->
                <th scope="col" class="text-center">
                    <vc:i18n name="单价" namespace="printPayFee"></vc:i18n>
                </th>
                <th scope="col" class="text-center">
                    <vc:i18n name="面积/用量" namespace="printPayFee"></vc:i18n>
                </th>
                <th scope="col" class="text-center">
                    <vc:i18n name="支付方式" namespace="printPayFee"></vc:i18n>
                </th>
                <th scope="col" class="text-center">
                    <vc:i18n name="应收/实收" namespace="printPayFee"></vc:i18n>
                </th>
                <th scope="col" class="text-center">
                    <vc:i18n name="优惠金额" namespace="printPayFee"></vc:i18n>
                </th>
                <th scope="col" class="text-center">
                    <vc:i18n name="备注" namespace="printPayFee"></vc:i18n>
                </th>
            </tr>
        </thead>
        <tbody class="vc-table-border" style="color:#000;font-size:20px">
            <tr v-for="(item,index) in printPayFeeInfo.fees" class="vc-table-border">
                <th scope="row" class="text-center">{{index +1}}</th>
                <td class="text-center">{{item.feeName}}</td>
                <td class="text-center">{{item.objName}}</td>
                <td class="text-center" v-if="item.preDegrees">
                    {{vc.dateFormat(item.startTime)}}
                    <span>
                        <vc:i18n name="至" namespace="printPayFee"></vc:i18n>
                    </span>
                    {{vc.dateFormat(item.endTime)}}</br>
                    {{item.preDegrees}} 至 {{item.curDegrees}}
                </td>
                <!-- 根据山东 需求 如果为押金时 显示为无-->
                <td class="text-center" v-else-if="item.feeTypeCd == '888800010006'">
                    无
                </td>
                <td class="text-center" v-else>
                    {{vc.dateFormat(item.startTime)}}至{{vc.dateFormat(item.endTime)}}
                </td>
                <!--<td class="text-center">{{item.startTime}}<span><vc:i18n name="至" namespace="printPayFee"></vc:i18n></span>{{item.endTime}}</td>-->
                <!-- <td class="text-center">{{item.cycle}}</td> -->
                <td class="text-center">{{item.squarePrice}}</br>{{item.units}}</td>
                <td class="text-center">{{item.area}}</td>
                <td class="text-center">{{item.primeRate}}</td>
                <td class="text-center" v-if="item.amount < 0">{{item.receivableAmount}}/{{item.amount}}元(退费)
                </td>
                <td class="text-center" v-else>{{item.receivableAmount}}/{{item.amount}}元
                </td>
                <td class="text-center">{{item.discountPrice || 0}}</td>
                <td class="text-center" width="200px">{{item.remark}}</td>
            </tr>
            <tr>
                <td colspan="3" class="text-center ">大写人民币(元)</td>
                <td colspan="2" class="text-center ">{{vc.changeNumMoneyToChinese(printPayFeeInfo.amount)}}
                </td>
                <td colspan="1" class="text-center ">{{printPayFeeInfo.amount}}</td>
                <td colspan="2" class="text-center ">账户扣款</td>
                <td colspan="2" class="text-center ">{{printPayFeeInfo.acctAmount}}
                </td>
            </tr>
            <tr v-if="printPayFeeInfo.content || printPayFeeInfo.qrImg">
                <td colspan="6">
                    <div style="max-width: 600px;" v-html="printPayFeeInfo.content"></div>
                </td>
                <td colspan="4">
                    <img v-if="printPayFeeInfo.qrImg" :src="printPayFeeInfo.qrImg" width="100px" height="100px">
                </td>
 
            </tr>
        </tbody>
    </table>
 
    <div class="row" style="color:#000;font-size:18px;margin-left: 10px;">
        <div class="float-left" style="width: 25%;">
            <vc:i18n name="部门负责人:" namespace="printPayFee"></vc:i18n>
        </div>
        <div class="float-left" style="width: 25%;"><span>
                <vc:i18n name="经办人:" namespace="printPayFee"></vc:i18n>
            </span>{{vc.getData('/nav/getUserInfo').name}}</div>
        <div class="float-left" style="width: 25%;">
                <vc:i18n name="财务收款:" namespace="printPayFee"></vc:i18n>
        </div>
        <div class="float-left" style="width: 25%;">
                <vc:i18n name="客户确认:" namespace="printPayFee"></vc:i18n>
        </div>
    </div>
    <div class="row">
        <div class="col-md-12" id="print-btn">
            <button class="btn btn-primary float-right" type="button" v-on:click="_printPurchaseApplyDiv()">
                <i class="fa fa-check"></i>&nbsp;打印
            </button>
            <button type="button" class="btn btn-warning float-right" style="margin-right:20px;"
                v-on:click="_closePage()">
                    <vc:i18n name="取消" namespace="printPayFee"></vc:i18n>
            </button>
        </div>
    </div>
 
</div>