paymentHistory.vue 4.85 KB
<template>
  <v-app id="pages-dasboard">
    <!-- ****** EXISTING-USER TABLE DATA****** -->
    <v-card flat>
      <v-card-actions>
        <v-layout>
          <h4 class="right mt-2 ml-2">Payment History</h4>
        </v-layout>
        <v-spacer></v-spacer>
      </v-card-actions>
    </v-card>
    <v-data-table
      :headers="headers"
      :items="paymentHistory"
      :pagination.sync="pagination"
      :search="search"
    >
      <template slot="items" slot-scope="props">
        <td id="td" class="text-xs-center">{{ props.index + 1 }}</td>
        <td id="td" class="text-xs-center">{{ props.item.studentId.name }}</td>
        <td id="td" class="text-xs-center">{{ props.item.classId.classNum }}</td>
        <td id="td" class="text-xs-center">{{ props.item.feeType[0].feeTypeName }}</td>
        <td id="td" class="text-xs-center">{{ props.item.paymentMethod }}</td>
        <!-- <td id="td" class="text-xs-center">{{ props.item.feeType[0].discount }}</td> -->
        <td id="td" class="text-xs-center">{{ props.item.totalPaidAmount }}</td>
        <td id="td" class="text-xs-center">{{ dates(props.item.date) }}</td>
        <!-- <td class="text-xs-center">
          <span>
            <img
              style="cursor:pointer; width:20px; height:18px; "
              class="mr-5"
              @click="editItem(props.item)"
              src="/static/icon/edit1.png"
            />
            <img
              style="cursor:pointer;width:20px; height:20px; "
              class="mr-5"
              @click="deleteItem(props.item)"
              src="/static/icon/delete1.png"
            />
          </span>
        </td> -->
      </template>
      <v-alert
        slot="no-results"
        :value="true"
        color="error"
        icon="warning"
      >Your search for "{{ search }}" found no results.</v-alert>
    </v-data-table>
    <div class="loader" v-if="showLoader">
      <v-progress-circular indeterminate color="white"></v-progress-circular>
    </div>
  </v-app>
</template>

<script>
import http from "@/Services/http.js";
import moment from "moment";

export default {
  data: () => ({
    showLoader: false,
    search: "",
    pagination: {
      rowsPerPage: 15
    },
    headers: [
      {
        text: "No",
        align: "center",
        sortable: false,
        value: "No"
      },
      {
        text: "Student",
        value: "student",
        sortable: false,
        align: "center"
      },
      { text: "Class", value: "class", sortable: false, align: "center" },
      { text: "Fee Type", value: "feeTypeName", sortable: false, align: "center" },
      { text: "Method", value: "paymentMethod", sortable: false, align: "center" },
      {
        text: "Paid Amount",
        value: "totalPaidAmount",
        sortable: false,
        align: "center"
      },
      {
        text: "Date",
        value: "date",
        sortable: false,
        align: "center"
      },
      // { text: "Action", value: "", sortable: false, align: "center" }
    ],
    paymentHistory: []
  }),
  methods: {
    dates: function(date) {
      return moment(date).format("MMMM DD, YYYY");
    },
    getPaymentHistory() {
      this.showLoader = true;
      var token = this.$store.state.token;
      http()
        .get("/getInvoicesList", {
          params:{ paymentStatus: "FULLY_PAID"},
          headers: { Authorization: "Bearer " + token }
        })
        .then(response => {
          this.paymentHistory = response.data.data;
          this.showLoader = false;
        })
        .catch(error => {
          this.showLoader = false;
          if (error.response.status === 401) {
            this.$router.replace({ path: "/" });
            this.$store.dispatch("setToken", null);
            this.$store.dispatch("Id", null);
          }
        });
    }
    // getRole() {
    //   this.showLoader = true;
    //   var token = this.$store.state.token;
    //   http()
    //     .get("/getRolesList", {
    //       headers: { Authorization: "Bearer " + token }
    //     })
    //     .then(response => {
    //       this.userRole = response.data.data;
    //       this.showLoader = false;
    //       // console.log("UserList=====>",this.desserts)
    //     })
    //     .catch(error => {
    //       this.showLoader = false;
    //       if (error.response.status === 401) {
    //         this.$router.replace({ path: "/" });
    //         this.$store.dispatch("setToken", null);
    //         this.$store.dispatch("Id", null);
    //       }
    //     });
    // }
  },
  mounted() {
    this.getPaymentHistory();
    // this.getRole();
  },
  created() {
    this.$root.$on("app:search", search => {
      this.search = search;
    });
  },
  beforeDestroy() {
    // dont forget to remove the listener
    this.$root.$off("app:search");
  }
};
</script>
<style scoped>
.active {
  background-color: gray;
  color: white !important;
}
.activebtn {
  color: black !important;
}
</style>