Commit 6df6faccda647d360e37ced6672fa3fc72cb514c
1 parent
914cee937f
Exists in
master
and in
3 other branches
design changes
Showing
2 changed files
with
8 additions
and
10 deletions
Show diff stats
src/pages/Account/invoice.vue
... | ... | @@ -390,14 +390,12 @@ |
390 | 390 | :key="index" |
391 | 391 | v-on:keyup="getAmmountDetails(feeType)" |
392 | 392 | > |
393 | - <td style="width:40px" class="tdFeeType"> 1 </td> | |
393 | + <td style="width:40px" class="tdFeeType"> {{index + 1}} </td> | |
394 | 394 | <td style="width:120px" class="tdFeeType" disabled>{{ feeType.feeTypeName }}</td> |
395 | - <td class="tdFeeType"> | |
396 | - <v-text-field | |
397 | - placeholder="fill your Amount" | |
398 | - v-model="feeType.amount" | |
399 | - type="number" | |
400 | - ></v-text-field> | |
395 | + <td class="tdFeeType" | |
396 | + style="width:120px" | |
397 | + disabled | |
398 | + >{{feeType.amount}} | |
401 | 399 | </td> |
402 | 400 | <!-- <td |
403 | 401 | style="width:120px" |
... | ... | @@ -986,8 +984,8 @@ export default { |
986 | 984 | feeType: { |
987 | 985 | amount: "0.00", |
988 | 986 | discount: "0.00", |
989 | - paidAmount: "0.00", | |
990 | 987 | subTotal: "0.00", |
988 | + paidAmount: "0.00", | |
991 | 989 | feeTypeName: "" |
992 | 990 | }, |
993 | 991 | invoiceData: { | ... | ... |
src/pages/Account/viewInvoice.vue
... | ... | @@ -136,9 +136,9 @@ |
136 | 136 | </tr> |
137 | 137 | <tr> |
138 | 138 | <td colspan="4"> |
139 | - <span class="right subheding">Discount (RS) :</span> | |
139 | + <span class="right subheding">Discount (%) :</span> | |
140 | 140 | </td> |
141 | - <td>{{ feeType.amount - feeType.subTotal }}</td> | |
141 | + <td>{{ feeType.discount}}</td> | |
142 | 142 | </tr> |
143 | 143 | <tr> |
144 | 144 | <td colspan="4"> | ... | ... |