mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
293 lines
18 KiB
Vue
293 lines
18 KiB
Vue
<template>
|
|
<div class="row">
|
|
<div class="col">
|
|
<loading-component style="height: 50px; top: 0;" key="1" color="success" v-show="$store.getters.isLoading(section)"></loading-component>
|
|
<div class="row" v-show="!$store.getters.isLoading(section)">
|
|
<div class="col">
|
|
<div class="row m-b-20">
|
|
<div class="col">
|
|
<h6 class="all-caps m-b-5 bold no-margin">Create Service</h6>
|
|
<div class="font-heading fs-14 scalled scalled muted">Create a new exchange service</div>
|
|
</div>
|
|
</div>
|
|
<div class="row m-b-5 animate__animated animate__fadeInUpBig animate__fast" v-if="error">
|
|
<div class="col">
|
|
<small class="bold fs-14 scalled scalled text-danger">{{error}}</small>
|
|
</div>
|
|
</div>
|
|
<div class="row m-l-0 m-r-0 m-b-20">
|
|
<div class="col-auto pointer bg-master-lightest p-t-15 p-b-15" v-if="data" @click="parameters.configurations.active = !parameters.configurations.active">
|
|
<div class="row h-100 align-items-center">
|
|
<div class="col-auto p-r-0">
|
|
<div class="icon-thumbnail fs-16 scalled icon-25 btn-rounded" :class="[{'bg-success': parameters.configurations.active}, {'bg-white': !parameters.configurations.active}]">
|
|
<i class="fa fa-check fs-16 scalled text-white"></i>
|
|
</div>
|
|
</div>
|
|
<div class="col p-l-0 p-r-25">
|
|
<div class="font-heading fs-8 all-caps muted">Active For this</div>
|
|
<div class="font-heading fs-8 all-caps">Segment's Customers</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row m-b-10">
|
|
<div class="col">
|
|
<div class="font-heading all-caps fs-14 scalled scalled hint-text muted">
|
|
Service Configurations
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row m-b-20 m-l-0 m-r-0">
|
|
<div class="col p-l-10 p-r-10">
|
|
<div class="row">
|
|
<div class="col p-l-5 p-r-5">
|
|
<div class="row">
|
|
<div class="col-5 p-r-0">
|
|
<validation-wrapper-component selecatable :validator="$v.custom_field">
|
|
<label>Custom Fields</label>
|
|
<select-component :options="inActiveFields" v-model="custom_field"></select-component>
|
|
</validation-wrapper-component>
|
|
</div>
|
|
<div class="col-auto p-l-25 p-r-25 bg-success pointer" @click="activateCustomField(custom_field, true)">
|
|
<div class="row align-items-center h-100">
|
|
<div class="col">
|
|
<i class="fa fa-plus text-white"></i>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col p-l-5">
|
|
<div class="row no-margin">
|
|
<div class="col padding-10 bg-master-lightest">
|
|
<div class="row m-l-0 m-r-0 m-b-10">
|
|
<div class="col-4 p-l-5 p-r-5" v-show="custom_fields.tax.active">
|
|
<validation-wrapper-component :validator="$v.parameters.configurations.tax" >
|
|
<label>Tax</label>
|
|
<input type="text" class="form-control" v-model.lazy="parameters.configurations.tax" v-money="percentage">
|
|
<div class="absolute lh-10" style="top: 0; right: 0;">
|
|
<i class="fa fa-times text-white pointer fs-16 scalled bg-danger padding-5" @click="activateCustomField('tax', false)"></i>
|
|
</div>
|
|
</validation-wrapper-component>
|
|
</div>
|
|
</div>
|
|
<div class="row m-l-0 m-r-0 m-b-10">
|
|
<div class="col-4 p-l-5 p-r-5" v-show="custom_fields.service_charge.active">
|
|
<validation-wrapper-component :validator="$v.parameters.configurations.service_charge" >
|
|
<label>Service Charge</label>
|
|
<input type="text" class="form-control" v-model.lazy="parameters.configurations.service_charge" v-money="percentage">
|
|
<div class="absolute lh-10" style="top: 0; right: 0;">
|
|
<i class="fa fa-times text-white pointer fs-16 scalled bg-danger padding-5" @click="activateCustomField('service_charge', false)"></i>
|
|
</div>
|
|
</validation-wrapper-component>
|
|
</div>
|
|
<div class="col-5 p-l-5 p-r-5" v-show="custom_fields.minimum_charge.active">
|
|
<div class="row">
|
|
<div class="col p-r-0">
|
|
<validation-wrapper-component :validator="$v.parameters.configurations.minimum_charge" >
|
|
<label>Minimum Charge</label>
|
|
<input type="text" class="form-control" v-model.lazy="parameters.configurations.minimum_charge" v-money="money">
|
|
<div class="absolute lh-10" style="top: 0; right: 0;">
|
|
<i class="fa fa-times text-white pointer fs-16 scalled bg-danger padding-5" @click="activateCustomField('minimum_charge', false)"></i>
|
|
</div>
|
|
</validation-wrapper-component>
|
|
</div>
|
|
<div class="col-auto bg-white b-t b-r b-b b-grey">
|
|
<div class="row h-100 align-items-center">
|
|
<div class="col">
|
|
<div class="font-heading fs-14 scalled scalled muted">MYR</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row m-l-0 m-r-0 m-b-5">
|
|
<div class="col-5 p-l-5 p-r-5" v-show="custom_fields.po_limit.active">
|
|
<validation-wrapper-component :validator="$v.parameters.configurations.po_limit" >
|
|
<label>Abandoned PO Limit **</label>
|
|
<input type="text" class="form-control" v-model.lazy="parameters.configurations.po_limit" v-money="integer">
|
|
<div class="absolute lh-10" style="top: 0; right: 0;">
|
|
<i class="fa fa-times text-white pointer fs-16 scalled bg-danger padding-5" @click="activateCustomField('po_limit', false)"></i>
|
|
</div>
|
|
</validation-wrapper-component>
|
|
</div>
|
|
<div class="col-7 p-l-5 p-r-5" v-show="custom_fields.bank_id.active">
|
|
<validation-wrapper-component selecatable :validator="$v.parameters.configurations.bank_id" >
|
|
<label>Receivable Bank Account</label>
|
|
<selectable-component :endpoint="route('api.bank.list')+'?filters={%22company_id%22:1}'" section="BankAccountListSection" valueColumn="id" :labelColumn="['bank_name', 'account_no']" v-model="parameters.configurations.bank_id"></selectable-component>
|
|
<div class="absolute lh-10" style="top: 0; right: 0;">
|
|
<i class="fa fa-times text-white pointer fs-16 scalled bg-danger padding-5" @click="activateCustomField('bank_id', false)"></i>
|
|
</div>
|
|
</validation-wrapper-component>
|
|
</div>
|
|
</div>
|
|
<div class="row m-l-0 m-r-0 m-b-10" v-show="custom_fields.po_limit.active">
|
|
<div class="col p-l-5 p-r-5">
|
|
<div class="fs-8 muted">** Abandoned PO's limit is only applicable to transfers that have been paid in full.</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row m-b-10">
|
|
<div class="col">
|
|
<div class="font-heading all-caps fs-14 scalled scalled hint-text muted">
|
|
Currencies Settings
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row m-l-0 m-r-0 m-b-10">
|
|
<div class="col p-r-0">
|
|
<currencies-list-component :data="parameters.configurations" :section="section" v-model="parameters.configurations.currencies"></currencies-list-component>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col p-r-5">
|
|
<div class="btn btn-sm btn-default bg-master-lightest btn-block b-rad-none" data-dismiss="modal">Cancel</div>
|
|
</div>
|
|
<div class="col p-l-5">
|
|
<div class="btn btn-sm btn-success btn-block b-rad-none" @click="submitForm()">{{this.data ? 'Update' : 'Create'}} Service</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import ModalFormHandler from '../../../general/mixins/modalFormHandler';
|
|
import { required, requiredIf, minValue, decimal} from "vuelidate/lib/validators";
|
|
export default {
|
|
props: {
|
|
segment_id: {
|
|
required: true,
|
|
type: Number
|
|
}
|
|
},
|
|
data(){
|
|
return {
|
|
custom_fields: {
|
|
bank_id: {
|
|
name: 'Receivable Bank Account',
|
|
active: false
|
|
},
|
|
po_limit: {
|
|
name: 'Abandoned PO Limit',
|
|
active: false
|
|
},
|
|
tax: {
|
|
name: 'Tax',
|
|
active: false
|
|
},
|
|
minimum_charge: {
|
|
name: 'Minimum Charge',
|
|
active: false
|
|
},
|
|
service_charge: {
|
|
name: 'Service Charge',
|
|
active: false
|
|
}
|
|
},
|
|
custom_field: '',
|
|
parameters: {
|
|
id: null,
|
|
configurations: {
|
|
active: false,
|
|
bank_id: '',
|
|
service_charge: {
|
|
value: 0
|
|
},
|
|
minimum_charge: {
|
|
value: 0
|
|
},
|
|
tax: {
|
|
value: 0
|
|
},
|
|
po_limit: {
|
|
value: 0
|
|
},
|
|
currencies: [],
|
|
}
|
|
}
|
|
}
|
|
},
|
|
validations: {
|
|
custom_field: {},
|
|
parameters: {
|
|
configurations: {
|
|
bank_id: {},
|
|
service_charge: {},
|
|
minimum_charge: {},
|
|
tax: {},
|
|
po_limit: {}
|
|
}
|
|
}
|
|
},
|
|
watch: {
|
|
'data': function() {
|
|
this.updateActiveCustomFields();
|
|
}
|
|
},
|
|
created(){
|
|
this.updateActiveCustomFields();
|
|
},
|
|
computed: {
|
|
inActiveFields(){
|
|
return Object.keys(this.custom_fields).map(function(key) {
|
|
return {id: key, text: this.custom_fields[key].name}
|
|
}, this);
|
|
}
|
|
},
|
|
methods: {
|
|
submitForm(){
|
|
this.parameters.custom_fields = {
|
|
bank_id: this.custom_fields.bank_id.active ? this.parameters.configurations.bank_id : null,
|
|
service_charge: this.custom_fields.service_charge.active ? {type: 'percentage', value: this.parameters.configurations.service_charge} : null,
|
|
minimum_charge: this.custom_fields.minimum_charge.active ? {type: 'fixed_amount', value: this.parameters.configurations.minimum_charge} : null,
|
|
tax: this.custom_fields.tax.active ? {type: 'percentage', value: this.parameters.configurations.tax} : null,
|
|
po_limit: this.custom_fields.po_limit.active ? {type: 'fixed_amount', value: this.parameters.configurations.po_limit}: null,
|
|
};
|
|
|
|
this.submit(this.route('api.segment.constant.service.update', this.segment_id, this.parameters.id), 'put', 'segmentSection', true, true)
|
|
},
|
|
activateCustomField(fieldName, status){
|
|
if(fieldName !== ''){
|
|
this.custom_fields[fieldName].active = status
|
|
if(!status) this.parameters[fieldName] = '';
|
|
}
|
|
},
|
|
updateActiveCustomFields() {
|
|
|
|
if(this.data.detail){
|
|
Object.keys(this.data.detail).forEach((key) => {
|
|
if(this.custom_fields.hasOwnProperty(key)){
|
|
this.custom_fields[key].active = true;
|
|
}
|
|
});
|
|
}
|
|
|
|
if(this.data.configurations){
|
|
this.parameters.configurations = {
|
|
active: this.data.configurations.hasOwnProperty('active') ? this.data.configurations.active : false,
|
|
bank_id: this.data.configurations.hasOwnProperty('bank_id') ? this.data.configurations.bank_id : '',
|
|
service_charge: this.data.configurations.hasOwnProperty('service_charge') ? this.data.configurations.service_charge.value : 0,
|
|
minimum_charge: this.data.configurations.hasOwnProperty('minimum_charge') ? this.data.configurations.minimum_charge.value : 0,
|
|
tax: this.data.configurations.hasOwnProperty('tax') ? this.data.configurations.tax.value : 0,
|
|
po_limit: this.data.configurations.hasOwnProperty('po_limit') ? this.data.configurations.po_limit.value : 0,
|
|
currencies: this.data.configurations.hasOwnProperty('currencies') ? this.data.configurations.currencies : []
|
|
};
|
|
}
|
|
|
|
}
|
|
},
|
|
mixins: [ModalFormHandler],
|
|
|
|
|
|
}
|
|
</script> |