Commit 5f3a7efc0b41c713c9a24e294601eb68993f896c

Authored by Shikha Mishra
1 parent 0672ac8e06

remove required validation from paid amount field

Showing 1 changed file with 3 additions and 3 deletions   Show diff stats
src/pages/Account/invoice.vue
... ... @@ -362,14 +362,14 @@
362 362 ></v-text-field>
363 363 </td>
364 364 <td class="tdFeeType">{{ feeType.subTotal }}</td>
365   - <td class="tdFeeType" v-if="invoiceData.paymentStatus === 'NOT_PAID'">
  365 + <!-- <td class="tdFeeType" v-if="invoiceData.paymentStatus === 'NOT_PAID'">
366 366 <v-text-field
367 367 placeholder="fill your Paid Amount"
368 368 v-model="feeType.paidAmount"
369 369 type="number"
370 370 :disabled="disabled"
371 371 ></v-text-field>
372   - </td>
  372 + </td> -->
373 373 <td class="tdFeeType" v-if="invoiceData.paymentStatus == ''">
374 374 <v-text-field
375 375 placeholder="fill your Paid Amount"
... ... @@ -601,7 +601,7 @@ export default {
601 601 totalAmount: this.feeType.amount,
602 602 totalDiscount: this.feeType.discount,
603 603 totalSubTotal: this.feeType.subTotal,
604   - totalPaidAmount: this.feeType.paidAmount
  604 + // totalPaidAmount: this.feeType.paidAmount
605 605 };
606 606 if (invoiceData.paymentStatus == "NOT_PAID") {
607 607 delete invoiceData.totalPaidAmount;
... ...