HEX
Server: Apache
System: Linux p3plzcpnl506847.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: slfopp7cb1df (5698090)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/slfopp7cb1df/www/inventorypacket.com/resources/src/views/app/pages/settings/sms_templates.vue
<template>
  <div class="main-content">
    <breadcumb :page="$t('sms_templates')" :folder="$t('Settings')"/>
    <div v-if="isLoading" class="loading_page spinner spinner-primary mr-3"></div>

    <div id="section_notifications_template" v-else>

   <!-- Notification Client -->
  <div class="row mt-5">
    <div class="col-md-12">

      <div class="card">
        <div class="card-header">
          <h4>{{$t('Notification_Client')}}</h4>
        </div>
        <!--begin::form-->
        <div class="card-body">

          <b-tabs active-nav-item-class="nav nav-tabs" content-class="mt-3">

            <!-- Sell -->
            <b-tab :title="$t('Sale')">

              <form @submit.prevent="update_sms_body('sale')">
                  <div class="row">
                    <div class=" col-md-12">
                      <span> <strong>{{$t('Available_Tags')}} : </strong></span>
                      <p>
                        {contact_name},{business_name},{invoice_number},{invoice_url},{total_amount},{paid_amount},{due_amount}
                      </p>
                    </div>
                    <hr>
                    <div class="form-group col-md-12">
                      <label for="sms_body_sale">{{$t('sms_body')}} </label>
                      <textarea type="text" v-model="sms_body_sale" class="form-control" style=" height: 200px!important;"
                        name="sms_body_sale" id="sms_body_sale" :placeholder="$t('sms_body')"></textarea>
                    </div>

                  </div>

                  <div class="row mt-3">
                    <div class="col-md-6">
                      <button type="submit" :disabled="Submit_Processing" class="btn btn-primary">
                        <span v-if="Submit_Processing" class="spinner-border spinner-border-sm" role="status"
                          aria-hidden="true"></span> <i class="i-Yes me-2 font-weight-bold"></i> {{$t('submit')}}
                      </button>
                    </div>
                  </div>
              </form>

            </b-tab>

            <!-- Quotation -->
            <b-tab :title="$t('Quote')">

              <form @submit.prevent="update_sms_body('quotation')">
                  <div class="row">
                    <div class=" col-md-12">
                      <span> <strong>{{$t('Available_Tags')}} : </strong></span>
                      <p>
                        {contact_name},{business_name},{quotation_number},{quotation_url},{total_amount}
                      </p>
                    </div>
                    <hr>
                    <div class="form-group col-md-12">
                      <label for="sms_body_quotation">{{$t('sms_body')}} </label>
                      <textarea type="text" v-model="sms_body_quotation" class="form-control"
                        style=" height: 200px!important;" name="sms_body_quotation" id="sms_body_quotation"
                        :placeholder="$t('sms_body')"></textarea>
                    </div>

                  </div>

                  <div class="row mt-3">
                    <div class="col-md-6">
                      <button type="submit" :disabled="Submit_Processing" class="btn btn-primary">
                        <span v-if="Submit_Processing" class="spinner-border spinner-border-sm" role="status"
                          aria-hidden="true"></span> <i class="i-Yes me-2 font-weight-bold"></i> {{$t('submit')}}
                      </button>
                    </div>
                  </div>
              </form>

            </b-tab>

            <!-- Payment Received -->
            <b-tab :title="$t('PaiementsReceived')">

              <form @submit.prevent="update_sms_body('payment_received')">
                  <div class="row">
                    <div class=" col-md-12">
                      <span> <strong>{{$t('Available_Tags')}} : </strong></span>
                      <p>
                        {contact_name},{business_name},{payment_number},{paid_amount}
                      </p>
                    </div>
                    <hr>
                    <div class="form-group col-md-12">
                      <label for="sms_body_payment_received">{{$t('sms_body')}} </label>
                      <textarea type="text" v-model="sms_body_payment_received" class="form-control"
                        style=" height: 200px!important;" name="sms_body_payment_received" id="sms_body_payment_received"
                        :placeholder="$t('sms_body')"></textarea>
                    </div>

                  </div>

                  <div class="row mt-3">
                    <div class="col-md-6">
                      <button type="submit" :disabled="Submit_Processing" class="btn btn-primary">
                        <span v-if="Submit_Processing" class="spinner-border spinner-border-sm" role="status"
                          aria-hidden="true"></span> <i class="i-Yes me-2 font-weight-bold"></i> {{$t('submit')}}
                      </button>
                    </div>
                  </div>
              </form>

            </b-tab>

          </b-tabs>


        </div>
      </div>
    </div>
  </div>


  <!-- {{-- Notification Supplier --}} -->
  <div class="row mt-5">
    <div class="col-md-12">

      <div class="card">
        <div class="card-header">
          <h4>{{$t('Notification_Supplier')}}</h4>
        </div>
        <!--begin::form-->
        <div class="card-body">

          <b-tabs active-nav-item-class="nav nav-tabs" content-class="mt-3">

            <!-- Purchase -->
            <b-tab :title="$t('Purchase')">

              <form @submit.prevent="update_sms_body('purchase')">
                <div class="row">
                  <div class=" col-md-12">
                    <span> <strong>{{$t('Available_Tags')}} : </strong></span>
                    <p>
                      {contact_name},{business_name},{invoice_number},{invoice_url},{total_amount},{paid_amount},{due_amount}
                    </p>
                  </div>
                  <hr>
                  <div class="form-group col-md-12">
                    <label for="sms_body_purchase">{{$t('sms_body')}} </label>
                    <textarea type="text" v-model="sms_body_purchase" class="form-control"
                      style=" height: 200px!important;" name="sms_body_purchase" id="sms_body_purchase"
                      :placeholder="$t('sms_body')"></textarea>
                  </div>

                </div>

                <div class="row mt-3">
                  <div class="col-md-6">
                    <button type="submit" :disabled="Submit_Processing" class="btn btn-primary">
                      <span v-if="Submit_Processing" class="spinner-border spinner-border-sm" role="status"
                        aria-hidden="true"></span> <i class="i-Yes me-2 font-weight-bold"></i> {{$t('submit')}}
                    </button>
                  </div>
                </div>
              </form>

            </b-tab>

            <!-- Payment Sent -->
            <b-tab :title="$t('PaiementsSent')">

              <form @submit.prevent="update_sms_body('payment_sent')">
                <div class="row">
                  <div class=" col-md-12">
                    <span> <strong>{{$t('Available_Tags')}} : </strong></span>
                    <p>
                      {contact_name},{business_name},{payment_number},{paid_amount}
                    </p>
                  </div>
                  <hr>
                  <div class="form-group col-md-12">
                    <label for="sms_body_payment_sent">{{$t('sms_body')}}</label>
                    <textarea type="text" v-model="sms_body_payment_sent" class="form-control"
                      style=" height: 200px!important;" name="sms_body_payment_sent" id="sms_body_payment_sent"
                      :placeholder="$t('sms_body')"></textarea>
                  </div>

                </div>

                <div class="row mt-3">
                  <div class="col-md-6">
                    <button type="submit" :disabled="Submit_Processing" class="btn btn-primary">
                      <span v-if="Submit_Processing" class="spinner-border spinner-border-sm" role="status"
                        aria-hidden="true"></span> <i class="i-Yes me-2 font-weight-bold"></i> {{$t('submit')}}
                    </button>
                  </div>
                </div>
              </form>

            </b-tab>

          </b-tabs>

        </div>
      </div>
    </div>
  </div>

</div>



  </div>
</template>

<script>
import { mapActions, mapGetters } from "vuex";
import NProgress from "nprogress";

export default {
  metaInfo: {
    title: "SMS Templates"
  },
  data() {
    return {
      
      isLoading: true,
      Submit_Processing :false,
      sms_body_sale: '',
      sms_body_quotation: '',
      sms_body_payment_received: '',

      sms_body_purchase: '',
      sms_body_payment_sent:'',

      sms_body:'',
     
    };
  },

  methods: {
    ...mapActions(["refreshUserPermissions"]),

    
     //---------------------------------- update_sms_body_sale ----------------\\
    update_sms_body(sms_body_type) {
        this.Submit_Processing = true;
        NProgress.start();
        NProgress.set(0.1);

        if(sms_body_type == 'sale'){
          this.sms_body = this.sms_body_sale;
        }else if(sms_body_type == 'quotation'){
          this.sms_body = this.sms_body_quotation;
        }else if(sms_body_type == 'payment_received'){
          this.sms_body = this.sms_body_payment_received;
        }else if(sms_body_type == 'purchase'){
          this.sms_body = this.sms_body_purchase;
        }else if(sms_body_type == 'payment_sent'){
          this.sms_body = this.sms_body_payment_sent;
        }
        
        axios
          .put("/update_sms_body",{
            sms_body: this.sms_body,
            sms_body_type: sms_body_type,
          })
          .then(response => {
            Fire.$emit("Event_sms");
            this.makeToast(
              "success",
              this.$t("Successfully_Updated"),
              this.$t("Success")
            );
            NProgress.done();
            this.Submit_Processing = false;
          })
          .catch(error => {
            NProgress.done();
            this.makeToast("danger", this.$t("InvalidData"), this.$t("Failed"));
            this.Submit_Processing = false;
          });
    },


     //---------------------------------- get_sms_template ----------------\\
    get_sms_template() {
      axios
        .get("get_sms_template")
        .then(response => {
          this.sms_body_sale = response.data.sms_body_sale;
          this.sms_body_quotation = response.data.sms_body_quotation;
          this.sms_body_payment_received = response.data.sms_body_payment_received;
          this.sms_body_purchase = response.data.sms_body_purchase;
          this.sms_body_payment_sent = response.data.sms_body_payment_sent;

          this.isLoading = false;
        })
        .catch(error => {
          setTimeout(() => {
            this.isLoading = false;
          }, 500);
        });
    },   


   
  }, //end Methods

  //----------------------------- Created function-------------------

  created: function() {
    this.get_sms_template();


    Fire.$on("Event_sms", () => {
      this.get_sms_template();
    });
  }
};
</script>