globalPayment.vue 14.1 KB
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 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455
<template>
  <v-container fluid class="body-color">
    <!-- ****** EXISTING GLOBAL PAYMENT TABLE ****** -->
    <v-form ref="form" v-model="valid" lazy-validation>
      <v-container fluid>
        <v-flex xs12 sm12 lg12>
          <v-layout wrap>
            <v-flex xs12 sm12 lg10>
              <v-layout wrap>
                <v-flex xs12 sm12 lg4>
                  <v-flex xs12 sm4 lg4 class="subheading">
                    <label class="mt-4">Class:</label>
                  </v-flex>
                  <v-flex xs12 sm12 lg10>
                    <v-select
                      :items="addclass"
                      label="Select Class"
                      v-model="selectStudents.selectClassId"
                      item-text="classNum"
                      item-value="_id"
                      name="Select Class"
                      :rules="classRules"
                      @change="getSection()"
                      required
                    ></v-select>
                  </v-flex>
                </v-flex>
                <v-flex xs12 sm12 lg4>
                  <v-flex xs12 sm4 lg4 class="subheading">
                    <label class="mt-4">Section:</label>
                  </v-flex>
                  <v-flex xs12 sm12 lg10 class>
                    <v-select
                      :items="addSection"
                      label="Select Section"
                      v-model="selectStudents.selectSection"
                      item-text="name"
                      item-value="_id"
                      name="Select Section"
                      :rules="sectionRules"
                      @change="getStudents()"
                      required
                    ></v-select>
                  </v-flex>
                </v-flex>
                <v-flex xs12 sm12 lg4>
                  <v-flex xs12 sm4 lg4 class="subheading">
                    <label class="mt-4">Student:</label>
                  </v-flex>
                  <v-flex xs12 sm12 lg10 class>
                    <v-select
                      :items="studentData"
                      label="Select Student"
                      v-model="selectStudents.selectId"
                      item-text="name"
                      item-value="_id"
                      required
                    ></v-select>
                  </v-flex>
                </v-flex>
              </v-layout>
            </v-flex>
            <v-flex xs12 sm12 lg2>
              <v-flex xs12 sm12 lg12>
                <v-btn
                  @click="getInvoicesData()"
                  round
                  dark
                  :loading="loading"
                  class="right mt-4 open-dialog-button"
                >Search</v-btn>
              </v-flex>
            </v-flex>
          </v-layout>
        </v-flex>
      </v-container>
    </v-form>
    <v-container fluid grid-list-md>
      <v-flex xs12>
        <v-layout wrap>
          <v-flex xs12 sm12 md4>
            <v-card
              flat
              class="pa-3"
              v-for="(invoiceData,i) in studentInvoiceData"
              :key="i"
              v-if="i === 0"
            >
              <v-layout>
                <v-flex xs12>
                  <v-avatar
                    size="80px"
                    style="margin: auto;display:block;margin-bottom:10px !important"
                  >
                    <img src="/static/icon/user.png" v-if="!invoiceData.studentId.profilePicUrl" />
                    <img
                      :src="invoiceData.studentId.profilePicUrl"
                      v-else-if="invoiceData.studentId.profilePicUrl"
                    />
                  </v-avatar>
                </v-flex>
              </v-layout>
              <v-layout class="studentProfile">
                <v-flex xs4 sm3 md3>
                  <h4>
                    <b>Name</b>
                  </h4>
                </v-flex>
                <v-flex sm9 xs8 md9>
                  <h4>: {{ invoiceData.studentId.name }}</h4>
                </v-flex>
              </v-layout>
              <v-layout class="studentProfile">
                <v-flex xs4 sm3 md3>
                  <h4>
                    <b>Class</b>
                  </h4>
                </v-flex>
                <v-flex sm9 xs8 md9>
                  <h4>: {{ invoiceData.classId.classNum }}</h4>
                </v-flex>
              </v-layout>
              <v-layout class="studentProfile">
                <v-flex xs4 sm3 md3>
                  <h4>
                    <b>Roll No</b>
                  </h4>
                </v-flex>
                <v-flex sm9 xs8 md9>
                  <h4>: {{ invoiceData.studentId.rollNo }}</h4>
                </v-flex>
              </v-layout>
            </v-card>
          </v-flex>
          <v-flex xs12 sm12 md8 v-show="showInvoiceTable">
            <v-card class="transparent">
              <v-data-table
                :headers="headers"
                :items="studentInvoiceData"
                :search="search"
                hide-actions
              >
                <template slot="items" slot-scope="props">
                  <tr class="tr">
                    <td class="td td-row text-xs-center">{{ props.item.invoiceNumber }}</td>
                    <td class="td td-row text-xs-center">{{ props.item.totalAmount }}</td>
                    <td class="td td-row text-xs-center">{{ props.item.totalDiscount }}</td>
                    <td class="td td-row text-xs-center">{{ props.item.totalSubTotal }}</td>
                    <td class="td td-row text-xs-center">{{ props.item.paymentStatus}}</td>
                    <td class="td td-row text-xs-center">{{ dates(props.item.date) }}</td>
                    <td class="text-xs-center td td-row">
                      <router-link
                        :to="{ name:'View Invoice',params: { viewInvoiceId:props.item._id } }"
                      >
                        <v-tooltip top>
                          <img
                            slot="activator"
                            style="cursor:pointer; width:25px; height:18px; "
                            src="/static/icon/eye1.png"
                          />
                          <span>View</span>
                        </v-tooltip>
                      </router-link>
                    </td>
                  </tr>
                </template>
                <v-alert
                  slot="no-results"
                  :value="true"
                  color="error"
                  icon="warning"
                >Your search for "{{ search }}" found no results.</v-alert>
              </v-data-table>
            </v-card>
          </v-flex>
        </v-layout>
      </v-flex>

      <v-flex xs12>
        <v-layout wrap>
          <v-flex xs12 sm12 md12 v-show="showInvoiceTable">
            <v-card class="transparent">
              <v-data-table
                :headers="header"
                :items="studentInvoiceData"
                :search="search"
                hide-actions
              >
                <template slot="items" slot-scope="props">
                  <tr class="tr" v-for="feetype in props.item.feeType">
                    <td class="td td-row">{{ props.index + 1}}</td>
                    <td class="td td-row text-xs-center">{{ feetype.feeTypeName}}</td>
                    <td class="td td-row text-xs-center">{{ feetype.amount }}</td>
                    <td
                      class="td td-row text-xs-center"
                    >{{ props.item.totalSubTotal - props.item.totalPaidAmount }}</td>
                    <td class="td td-row text-xs-center">{{ feetype.paidAmount }}</td>
                    <td class="td td-row text-xs-center">
                      <input type="text" maxlength="20" />
                    </td>
                  </tr>
                </template>
                <v-alert
                  slot="no-results"
                  :value="true"
                  color="error"
                  icon="warning"
                >Your search for "{{ search }}" found no results.</v-alert>
              </v-data-table>
            </v-card>
          </v-flex>
        </v-layout>
      </v-flex>
    </v-container>
    <div class="loader" v-if="showLoader">
      <v-progress-circular indeterminate color="white"></v-progress-circular>
    </div>
  </v-container>
</template>

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

export default {
  data: () => ({
    snackbar: false,
    showInvoiceTable: false,
    y: "top",
    x: "right",
    mode: "",
    timeout: 3000,
    text: "",
    showLoader: false,
    loading: false,
    search: "",
    valid: true,
    addclass: [],
    // index: '',
    feeType: {
      amount: "",
      discount: "",
      totalPaidAmount: "",
      subTotal: "",
      feeTypeName: "",
      userData: {},
    },
    feeTypeData: [],
    selectStudents: {},
    addSection: [],
    classRules: [(v) => !!v || " Class Name is required"],
    sectionRules: [(v) => !!v || " Section Name is required"],
    studentRules: [(v) => !!v || "Student Name is required"],
    headers: [
      {
        text: "Invoice Number",
        align: "center",
        sortable: false,
        value: "invoiceNumber",
      },
      {
        text: "Total Pay",
        value: "totalAmount",
        sortable: false,
        align: "center",
      },
      {
        text: "Weaver",
        value: "totalDiscount",
        sortable: false,
        align: "center",
      },
      {
        text: "	Total Collection",
        value: "totalSubTotal",
        sortable: false,
        align: "center",
      },
      {
        text: "Clearance",
        value: "paymentStatus",
        sortable: false,
        align: "center",
      },
      { text: "Payment Date", value: "date", sortable: false, align: "center" },
      { text: "Action", value: "", sortable: false, align: "center" },
    ],

    header: [
      {
        text: "#",
        // align: "center",
        sortable: false,
      },
      {
        text: "Fees Name",
        align: "center",
        sortable: false,
        value: "feeTypeName",
      },
      {
        text: "Fees Amount",
        align: "center",
        sortable: false,
        value: "amount",
      },
      {
        text: "Due",
        align: "center",
        sortable: false,
      },
      {
        text: "Paid Amount",
        align: "center",
        sortable: false,
        value: "paidAmount",
      },
      {
        text: "Weaver",
        align: "center",
        sortable: false,
        value: "paidAmount",
      },
    ],
    studentData: [],
    studentInvoiceData: [],
  }),
  methods: {
    dates: function (date) {
      return moment(date).format("MMMM DD, YYYY");
    },
    getSection() {
      var token = this.$store.state.token;
      this.showLoader = true;
      this.studentInvoiceData = [];
      http()
        .get(
          "/getSectionsList",
          {
            params: {
              classId: this.selectStudents.selectClassId,
              schoolId: this.$store.state.schoolId,
            },
          },
          {
            headers: { Authorization: "Bearer " + token },
          }
        )
        .then((response) => {
          this.addSection = response.data.data;
          this.showLoader = false;
          // console.log("getSectionsList=====>", this.addSection);
        })
        .catch((error) => {
          this.showLoader = false;
          // console.log("err====>", err);
          // this.$router.replace({ path: '/' });
        });
    },
    getStudents() {
      this.showLoader = true;
      http()
        .get("/getStudentWithClass", {
          params: {
            classId: this.selectStudents.selectClassId,
            sectionId: this.selectStudents.selectSection,
            schoolId: this.$store.state.schoolId,
          },
        })
        .then((response) => {
          this.studentData = response.data.data;
          this.showLoader = false;
        })
        .catch((err) => {
          //   console.log("err====>", err);
          this.showLoader = false;
        });
    },
    getInvoicesData() {
      this.showLoader = true;
      this.showInvoiceTable = true;
      http()
        .get("/getInvoicesList", {
          params: {
            classId: this.selectStudents.selectClassId,
            studentId: this.selectStudents.selectId,
            schoolId: this.$store.state.schoolId,
          },
        })
        .then((response) => {
          this.studentInvoiceData = response.data.data;
          // console.log("this.studentInvoiceData", this.studentInvoiceData);
          this.showLoader = false;
        })
        .catch((err) => {
          //   console.log("err====>", err);
          this.showLoader = false;
        });
    },
    getAmmountDetails(feeTyp) {
      let feeType = {
        subTotal: "",
        subParticularTotal: "",
        paidAmount: "",
      };
      // *********** SUBTOTAL ***********
      feeType.subTotal =
        Number(feeType.subTotal) + Number(this.feeTypeData[i].subTotal);
      this.feeType.subTotal = feeType.subTotal.toFixed(2);
      // *********** PAID-AMOUNT ***********
      feeType.paidAmount =
        Number(feeType.paidAmount) + Number(this.feeTypeData[i].paidAmount);
      this.feeType.paidAmount = feeType.paidAmount.toFixed(2);
    },
  },
  mounted() {
    var token = this.$store.state.token;
    http()
      .get("/getClassesList", {
        params: {
          schoolId: this.$store.state.schoolId,
        },
        headers: { Authorization: "Bearer " + token },
      })
      .then((response) => {
        this.addclass = response.data.data;
      })
      .catch((error) => {
        this.showLoader = false;
        if (error.response.status === 401) {
          this.$router.replace({ path: "/" });
          this.$store.dispatch("setToken", null);
          this.$store.dispatch("Id", null);
          this.$store.dispatch("Role", null);
        }
      });
  },
  // 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>
.studentProfile {
  border: 1px solid lightgrey;
}
</style>