add modules folder based on s_menu
This commit is contained in:
@@ -0,0 +1,848 @@
|
||||
<template>
|
||||
<v-layout row justify-center>
|
||||
<!-- Dialog Ganti Unit -->
|
||||
<v-dialog v-model="dialogUnit" persistent max-width="25%">
|
||||
<v-card>
|
||||
<v-card-title class="title grey lighten-2" primary-title>
|
||||
Ganti Satuan {{ selectedItem.itemDesc ? selectedItem.itemDesc : "" }}
|
||||
</v-card-title>
|
||||
<v-card-text>
|
||||
<v-layout row>
|
||||
<v-flex xs12>
|
||||
<v-select :loading="loadingUnit" v-model="selectedUnit" return-object :items="unitOptions"
|
||||
label="Pilih Satuan" item-text="unitName"></v-select>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
</v-card-text>
|
||||
<v-card-actions>
|
||||
<v-spacer></v-spacer>
|
||||
<v-btn color="error" flat @click="dialogUnit = false">
|
||||
Tutup
|
||||
</v-btn>
|
||||
<v-btn color="primary" flat @click="saveUnit()">Ganti</v-btn>
|
||||
</v-card-actions>
|
||||
</v-card>
|
||||
</v-dialog>
|
||||
|
||||
<!-- Dialog Induk Form Request -->
|
||||
<v-dialog v-model="dialogRequest" persistent max-width="75%">
|
||||
<v-card>
|
||||
<v-card-title class="headline grey lighten-2" primary-title>
|
||||
FORM STOCK REQUEST
|
||||
</v-card-title>
|
||||
<v-card-text class="pt-0 pb-0">
|
||||
|
||||
<v-layout row>
|
||||
<v-flex pa-2 xs6>
|
||||
<v-menu v-model="menuDateUse" :close-on-content-click="false" transition="scale-transition"
|
||||
:nudge-right="40" lazy :disabled="act == 'preview'" offset-y full-width max-width="290px"
|
||||
min-width="290px">
|
||||
<template v-slot:activator="{ on }">
|
||||
<v-text-field :value="dateUseFormatted" label="Tanggal Permintaan" readonly v-on="on"
|
||||
@blur="dDateUse = deFormatedDate(dateUseFormatted)"></v-text-field>
|
||||
</template>
|
||||
<v-date-picker no-title v-model="xDateUse" @input="menuDateUse = false"></v-date-picker>
|
||||
</v-menu>
|
||||
</v-flex>
|
||||
<v-flex pa-2 xs6>
|
||||
<v-autocomplete v-model="xRegional" label="Regional*" menu-icon="mdi-chevron-down"
|
||||
:items="regionalOptions" item-text="S_RegionalName" :disabled="act == 'preview'"
|
||||
item-value="S_RegionalID" return-object readonly :error="errors.regional"
|
||||
:error-messages="errors.regional ? 'Regional harus diisi' : ''"></v-autocomplete>
|
||||
</v-flex>
|
||||
<v-flex pa-2 xs6>
|
||||
<v-autocomplete v-model="xBranch" :label="user.M_BranchID != '0' ? 'Cabang*' : 'Cabang'" menu-icon="mdi-chevron-down" :items="branchOptions"
|
||||
item-text="M_BranchName" item-value="M_BranchCode" placeholder="Pilih Cabang"
|
||||
:disabled="act == 'preview'" return-object :error="errors.branch"
|
||||
:error-messages="errors.branch ? 'Cabang harus diisi' : ''"></v-autocomplete>
|
||||
</v-flex>
|
||||
<v-flex pa-2 xs6>
|
||||
<v-text-field v-model="xDescription" label="Keterangan*" :disabled="act == 'preview'"
|
||||
:error="errors.description" :error-messages="errors.description ? 'Keterangan harus diisi' : ''"
|
||||
required></v-text-field>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
<v-layout row>
|
||||
<v-flex pa-2 pl-0 xs12>
|
||||
<v-btn v-if="dialogItem == false && act != 'preview'" color="primary" @click="dialogItem = true">Pilih
|
||||
Item</v-btn>
|
||||
<v-btn v-if="dialogItem == true && act != 'preview'" color="primary" @click="dialogItem = false">Tutup
|
||||
Pilih
|
||||
Item</v-btn>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
<v-layout v-if="errors.details" row>
|
||||
<v-flex xs12 pl-2 pr-2 pt-2 pb-2>
|
||||
<v-alert :value="true" type="error" dismissible v-html="msgErrDetails">
|
||||
|
||||
</v-alert>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
|
||||
<div v-if="dialogItem == true && act != 'preview'">
|
||||
<v-divider></v-divider>
|
||||
<v-card elevation="10" class=" mt-2">
|
||||
<v-layout row>
|
||||
<v-flex class="mt-2" pa-2 pb-0 xs3>
|
||||
<v-text-field v-model="searchItem" label="Cari..." placeholder="Ketikkan item"
|
||||
style="max-width: 250px" hide-details></v-text-field>
|
||||
</v-flex>
|
||||
<v-flex class="mt-2" pa-2 pb-0 xs3>
|
||||
<v-autocomplete v-model="selectedDivision" :items="divisionOptions" label="Divisi" return-object
|
||||
menu-icon="mdi-chevron-down" item-text="DivisionName" hide-details
|
||||
item-value="DivisionID"></v-autocomplete>
|
||||
|
||||
</v-flex>
|
||||
<v-flex class="mt-2" pa-2 pb-0 xs3>
|
||||
<v-autocomplete v-model="selectedItemGroup" :items="itemGroupOptions" hide-details label="Grup"
|
||||
return-object menu-icon="mdi-chevron-down" item-text="Nat_GroupName"
|
||||
item-value="Nat_GroupID"></v-autocomplete>
|
||||
|
||||
</v-flex>
|
||||
<v-flex class="mt-2" pa-2 pb-0 xs3>
|
||||
<v-autocomplete v-model="selectedItemSubGroup" :items="itemSubGroupOptions" return-object hide-details
|
||||
label="Sub Grup" menu-icon="mdi-chevron-down" item-text="Nat_SubGroupName"
|
||||
item-value="Nat_SubGroupID"></v-autocomplete>
|
||||
|
||||
</v-flex>
|
||||
<v-flex class="mt-2" pa-2 pb-0 xs2>
|
||||
<v-btn dark color="success" style="min-width: 40px; height: 40px; margin: 0" @click="itemSearch()">
|
||||
<v-icon>search</v-icon>
|
||||
</v-btn>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
|
||||
<v-layout row>
|
||||
<v-flex xs12 pl-2 pr-2 pt-2 pb-2>
|
||||
<v-data-table :headers="headers" :items="items" :loading="loadingItem" hide-actions
|
||||
class="elevation-1">
|
||||
<template slot="items" slot-scope="props">
|
||||
<td class="text-xs-left pa-2" v-bind:class="{ 'amber lighten-4': isSelected(props.item) }"
|
||||
@click="selectMe(props.item)">
|
||||
<div style="
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
">
|
||||
{{ props.item.itemCode }}
|
||||
<v-chip small style="border-radius: 5px; flex-grow: 0">
|
||||
{{ props.item.itemDesc }}
|
||||
</v-chip>
|
||||
</div>
|
||||
</td>
|
||||
<td class="text-xs-center pa-2" v-bind:class="{ 'amber lighten-4': isSelected(props.item) }"
|
||||
@click="selectMe(props.item)">
|
||||
{{ props.item.remaining_stock }}
|
||||
</td>
|
||||
<td class="text-xs-center pa-2" v-bind:class="{ 'amber lighten-4': isSelected(props.item) }"
|
||||
@click="selectMe(props.item)">
|
||||
{{ props.item.unitName }}
|
||||
</td>
|
||||
<td class="text-xs-center pa-2" v-bind:class="{ 'amber lighten-4': isSelected(props.item) }"
|
||||
@click="selectMe(props.item)">
|
||||
<!--<v-btn v-if="checkSelected(props.item) == true" flat style="min-width: 35px; height: 35px; margin: 0" small color="grey" depressed><v-icon small>check</v-icon></v-btn---->
|
||||
<v-btn v-if="checkSelected(props.item) == false"
|
||||
style="min-width: 35px; height: 35px; margin: 0" small color="success"
|
||||
@click="addItem(props.item)"><v-icon small>check</v-icon></v-btn>
|
||||
|
||||
<v-btn
|
||||
style="min-width: 35px; height: 35px; margin: 0"
|
||||
small color="info"
|
||||
@click="get_riwayat(props.item.itemId)"
|
||||
>
|
||||
<v-icon small>history</v-icon>
|
||||
</v-btn>
|
||||
</td>
|
||||
</template>
|
||||
</v-data-table>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
<v-divider></v-divider>
|
||||
<v-layout row>
|
||||
<v-flex xs6>
|
||||
<v-pagination style="margin-top: 10px; margin-bottom: 10px" v-model="itemCurrentPage"
|
||||
:length="itemTotalPage" :total-visible="7"></v-pagination>
|
||||
</v-flex>
|
||||
<v-flex class="pt-2 text-xs-right" xs6>
|
||||
<v-btn color="primary" @click="dialogItem = false">Tutup Pilih Item</v-btn>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
</v-card>
|
||||
<v-divider></v-divider>
|
||||
</div>
|
||||
<v-card elevation="0" flat class=" mt-2">
|
||||
<v-layout row style="max-height: 600px; overflow: auto">
|
||||
<v-flex xs12 pl-2 pr-2 pt-2 pb-2>
|
||||
<v-data-table :headers="headersItems" :items="selectedItems" hide-actions
|
||||
:loading="loadingDetailRequest" class="elevation-1">
|
||||
<template slot="items" slot-scope="props">
|
||||
<td class="text-xs-left pa-2" v-bind:class="{ 'amber lighten-4': isSelected(props.item) }"
|
||||
@click="selectMe(props.item)">
|
||||
<div style="
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
">
|
||||
{{ props.item.itemCode }}
|
||||
<v-chip small style="border-radius: 5px; flex-grow: 0">
|
||||
{{ props.item.itemDesc }}
|
||||
</v-chip>
|
||||
</div>
|
||||
</td>
|
||||
<td class="text-xs-center pa-2" v-bind:class="{ 'amber lighten-4': isSelected(props.item) }"
|
||||
@click="selectMe(props.item)">
|
||||
<v-btn depressed v-if="act != 'preview'" small color="primary"
|
||||
@click="openDialogUnit(props.item)">{{ props.item.unitName }}</v-btn>
|
||||
<span v-else>{{ props.item.unitName }}</span>
|
||||
</td>
|
||||
<td class="text-xs-center pa-2" v-bind:class="{ 'amber lighten-4': isSelected(props.item) }"
|
||||
@click="selectMe(props.item)">
|
||||
<v-text-field v-if="act != 'preview'" v-model="props.item.qty"
|
||||
type="number" min=0 step=1
|
||||
@keypress="blockDecimalInput($event)" @change="updateQuantity(props.item)">
|
||||
</v-text-field>
|
||||
<span v-else>{{ props.item.qty }}</span>
|
||||
</td>
|
||||
<td class="text-xs-center pa-2" v-bind:class="{ 'amber lighten-4': isSelected(props.item) }"
|
||||
@click="selectMe(props.item)">
|
||||
<v-btn v-if="act != 'preview'" style="min-width: 35px; height: 35px; margin: 0" small
|
||||
color="error" dark @click="deleteItem(props.item)"><v-icon small>close</v-icon></v-btn>
|
||||
|
||||
<v-btn
|
||||
style="min-width: 35px; height: 35px; margin: 0"
|
||||
small color="info"
|
||||
@click="get_riwayat(props.item.itemId)"
|
||||
>
|
||||
<v-icon small>history</v-icon>
|
||||
</v-btn>
|
||||
</td>
|
||||
</template>
|
||||
</v-data-table>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
</v-card>
|
||||
|
||||
</v-card-text>
|
||||
<v-card-actions>
|
||||
<v-spacer></v-spacer>
|
||||
<v-btn v-if="act === 'new'" color="info" :disabled="loadingSave" dark @click="saveAndRequestPurchase()">Save & Request Purchase</v-btn>
|
||||
<v-btn v-if="act === 'edit'" color="info" :disabled="loadingSave" dark @click="requestPending()">Request Purchase</v-btn>
|
||||
<v-btn color="error" flat @click="closeDialogRequest()">
|
||||
Tutup
|
||||
</v-btn>
|
||||
<v-btn v-if="act === 'new'" color="primary" :disabled="loadingSave" dark
|
||||
@click="savePurchaseRequest()">Simpan</v-btn>
|
||||
<v-btn v-if="act === 'edit'" color="primary" :disabled="loadingSave" dark
|
||||
@click="updatePurchaseRequest()">Simpan
|
||||
Perubahan</v-btn>
|
||||
</v-card-actions>
|
||||
|
||||
</v-card>
|
||||
</v-dialog>
|
||||
|
||||
<one-dialog-alert
|
||||
:status="dialogConfirmRequest"
|
||||
:msg="'Yakin mau melakukan Purchase Request? Tidak bisa diedit setelah melakukan Request'"
|
||||
@forget-dialog-alert="dialogConfirmRequest = false"
|
||||
@close-dialog-alert="confirmAndRequestPurchase()"
|
||||
confirmLabel="Yakin"
|
||||
cancelLabel="Batal"
|
||||
></one-dialog-alert>
|
||||
</v-layout>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
module.exports = {
|
||||
name: "AddPurchaseRequestDialog",
|
||||
components: {
|
||||
"one-dialog-alert": httpVueLoader("../../common/oneDialogAlert.vue")
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
errors: { regional: false, branch: false, description: false, details: false },
|
||||
msgErrDetails: "<p>Data item belum ada. Silahkan masukkan data item terlebih dahulu.</p>",
|
||||
itemUnitChange: {},
|
||||
dialogItem: false,
|
||||
regionalRules: [(v) => !!v || "Regional harus diisi"],
|
||||
branchRules: [(v) => !!v || "Cabang harus diisi"],
|
||||
descRules: [(v) => !!v || "Keterangan harus diisi"],
|
||||
validationForm: true,
|
||||
dialogConfirmRequest: false,
|
||||
headers: [
|
||||
{
|
||||
text: "ITEM PERSEDIAAN",
|
||||
align: "center",
|
||||
sortable: false,
|
||||
value: "itemName",
|
||||
width: "15%",
|
||||
class: "success lighten-3 white--text",
|
||||
},
|
||||
{
|
||||
text: "SISA STOCK",
|
||||
align: "center",
|
||||
sortable: false,
|
||||
value: "qty",
|
||||
width: "10%",
|
||||
class: "success lighten-3 white--text",
|
||||
},
|
||||
{
|
||||
text: "SATUAN",
|
||||
align: "center",
|
||||
sortable: false,
|
||||
value: "unitName",
|
||||
width: "15%",
|
||||
class: "success lighten-3 white--text",
|
||||
},
|
||||
{
|
||||
text: "AKSI",
|
||||
align: "center",
|
||||
sortable: false,
|
||||
value: "action",
|
||||
width: "10%",
|
||||
class: "success lighten-3 white--text",
|
||||
},
|
||||
],
|
||||
headersItems: [
|
||||
{
|
||||
text: "ITEM PERSEDIAAN",
|
||||
align: "center",
|
||||
sortable: false,
|
||||
value: "itemName",
|
||||
width: "15%",
|
||||
class: "blue lighten-3 white--text",
|
||||
},
|
||||
{
|
||||
text: "SATUAN",
|
||||
align: "center",
|
||||
sortable: false,
|
||||
value: "unitName",
|
||||
width: "15%",
|
||||
class: "blue lighten-3 white--text",
|
||||
},
|
||||
{
|
||||
text: "JUMLAH",
|
||||
align: "center",
|
||||
sortable: false,
|
||||
value: "qty",
|
||||
width: "10%",
|
||||
class: "blue lighten-3 white--text",
|
||||
},
|
||||
{
|
||||
text: "AKSI",
|
||||
align: "center",
|
||||
sortable: false,
|
||||
value: "action",
|
||||
width: "10%",
|
||||
class: "blue lighten-3 white--text",
|
||||
},
|
||||
]
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
loadingDetailRequest() {
|
||||
return this.$store.state.requester.loadingDetailRequest;
|
||||
},
|
||||
loadingUnit() {
|
||||
return this.$store.state.requester.loadingUnit;
|
||||
},
|
||||
dialogUnit: {
|
||||
get() {
|
||||
return this.$store.state.requester.dialogUnit;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateDialogUnit", val);
|
||||
},
|
||||
},
|
||||
selectedUnit: {
|
||||
get() {
|
||||
return this.$store.state.requester.selectedUnit;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateSelectedUnit", val);
|
||||
},
|
||||
},
|
||||
unitOptions: {
|
||||
get() {
|
||||
return this.$store.state.requester.unitOptions;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateUnitOptions", val);
|
||||
},
|
||||
},
|
||||
dialogRequest: {
|
||||
get() {
|
||||
return this.$store.state.requester.dialogRequest;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateDialogRequest", val);
|
||||
},
|
||||
},
|
||||
menuDateUse: {
|
||||
get() {
|
||||
return this.$store.state.requester.menuDateUse;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateMenuDateUse", val);
|
||||
},
|
||||
},
|
||||
dateUseFormatted() {
|
||||
return this.formatDate(this.xDateUse);
|
||||
},
|
||||
dDateUse: {
|
||||
get() {
|
||||
return this.$store.state.requester.dDateUse;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateDDateUse", val);
|
||||
},
|
||||
},
|
||||
xDateUse: {
|
||||
get() {
|
||||
return this.$store.state.requester.xDateUse;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateXDateUse", val);
|
||||
},
|
||||
},
|
||||
xBranch: {
|
||||
get() {
|
||||
return this.$store.state.requester.xBranch;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateXBranch", val);
|
||||
},
|
||||
},
|
||||
branchOptions() {
|
||||
return this.$store.state.requester.branchOptions;
|
||||
},
|
||||
regionalOptions() {
|
||||
return this.$store.state.requester.regionalOptions;
|
||||
},
|
||||
xRegional: {
|
||||
get() {
|
||||
return this.$store.state.requester.xRegional;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateXRegional", val);
|
||||
},
|
||||
},
|
||||
xDescription: {
|
||||
get() {
|
||||
return this.$store.state.requester.xDescription;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateXDescription", val);
|
||||
},
|
||||
},
|
||||
xPRID() {
|
||||
return this.$store.state.requester.xPRID;
|
||||
},
|
||||
act() {
|
||||
return this.$store.state.requester.act;
|
||||
},
|
||||
itemCurrentPage: {
|
||||
get() {
|
||||
return this.$store.state.requester.itemCurrentPage;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateItemCurrentPage", val);
|
||||
this.$store.dispatch("requester/getItems", {
|
||||
search: this.searchItem,
|
||||
division: this.selectedDivision.DivisionID ? this.selectedDivision.DivisionID : "",
|
||||
itemGroup: this.selectedItemGroup.Nat_GroupID ? this.selectedItemGroup.Nat_GroupID : "",
|
||||
itemSubGroup: this.selectedItemSubGroup.Nat_SubGroupID ? this.selectedItemSubGroup.Nat_SubGroupID : ""
|
||||
});
|
||||
},
|
||||
},
|
||||
itemTotalPage: {
|
||||
get() {
|
||||
return this.$store.state.requester.itemTotalPage;
|
||||
},
|
||||
},
|
||||
items: {
|
||||
get() {
|
||||
return this.$store.state.requester.items;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateItems", val);
|
||||
}
|
||||
},
|
||||
selectedItem: {
|
||||
get() {
|
||||
return this.$store.state.requester.selectedItem;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateSelectedItem", val);
|
||||
}
|
||||
},
|
||||
searchItem: {
|
||||
get() {
|
||||
return this.$store.state.requester.searchItem;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateSearchItem", val);
|
||||
}
|
||||
},
|
||||
loadingItem: {
|
||||
get() {
|
||||
return this.$store.state.requester.loadingItem;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateLoadingItem", val);
|
||||
}
|
||||
},
|
||||
itemGroupOptions: {
|
||||
get() {
|
||||
return this.$store.state.requester.itemGroupOptions;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateItemGroupOptions", val);
|
||||
}
|
||||
},
|
||||
selectedItemGroup: {
|
||||
get() {
|
||||
return this.$store.state.requester.selectedItemGroup;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateSelectedItemGroup", val);
|
||||
console.log(val)
|
||||
this.$store.commit("requester/updateItemSubGroupOptions", val.subGroups);
|
||||
this.$store.commit("requester/updateSelectedItemSubGroup", val.subGroups[0]);
|
||||
}
|
||||
},
|
||||
itemSubGroupOptions: {
|
||||
get() {
|
||||
return this.$store.state.requester.itemSubGroupOptions;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateItemSubGroupOptions", val);
|
||||
}
|
||||
},
|
||||
selectedItemSubGroup: {
|
||||
get() {
|
||||
return this.$store.state.requester.selectedItemSubGroup;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateSelectedItemSubGroup", val);
|
||||
|
||||
}
|
||||
},
|
||||
loadingItemSubGroup: {
|
||||
get() {
|
||||
return this.$store.state.requester.loadingItemSubGroup;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateLoadingItemSubGroup", val);
|
||||
}
|
||||
},
|
||||
loadingItemGroup: {
|
||||
get() {
|
||||
return this.$store.state.requester.loadingItemGroup;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateLoadingItemGroup", val);
|
||||
}
|
||||
},
|
||||
divisionOptions: {
|
||||
get() {
|
||||
return this.$store.state.requester.divisionOptions;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateDivisionOptions", val);
|
||||
}
|
||||
},
|
||||
selectedDivision: {
|
||||
get() {
|
||||
return this.$store.state.requester.selectedDivision;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateSelectedDivision", val);
|
||||
this.$store.dispatch("requester/getItemGroupSubGroup");
|
||||
}
|
||||
},
|
||||
loadingSave: {
|
||||
get() {
|
||||
return this.$store.state.requester.loadingSave;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateLoadingSave", val);
|
||||
}
|
||||
},
|
||||
selectedItem: {
|
||||
get() {
|
||||
return this.$store.state.requester.selectedItem;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateSelectedItem", val);
|
||||
}
|
||||
},
|
||||
selectedItems: {
|
||||
get() {
|
||||
return this.$store.state.requester.selectedItems;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateSelectedItems", val);
|
||||
}
|
||||
},
|
||||
dialog_riwayat: {
|
||||
get() {
|
||||
return this.$store.state.requester.dialog_riwayat
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/update_dialog_riwayat", val)
|
||||
}
|
||||
},
|
||||
user: {
|
||||
get() {
|
||||
return this.$store.state.requester.user
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateUser", val)
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
blockDecimalInput(e) {
|
||||
const invalidChars = ['.', ',', '-', 'e'];
|
||||
if (invalidChars.includes(e.key)) {
|
||||
e.preventDefault();
|
||||
}
|
||||
},
|
||||
|
||||
requestPending() {
|
||||
let items = this.$store.state.requester.selectedItems;
|
||||
let valid = true
|
||||
items.forEach(item => {
|
||||
if (item.qty <= 0.9) {
|
||||
valid = false
|
||||
}
|
||||
});
|
||||
if (valid == true) {
|
||||
this.$store.commit("requester/updateLoadingSave", true);
|
||||
this.$store.dispatch("requester/updatePurchaseRequest", {
|
||||
act: "pending",
|
||||
PRID: this.$store.state.requester.selectedMainTable.prId,
|
||||
PRNumber: this.$store.state.requester.selectedMainTable.prNumber,
|
||||
PRDateUse: this.xDateUse,
|
||||
PRRegional: this.xRegional.S_RegionalID,
|
||||
PRBranch: typeof this.xBranch === "object" && this.xBranch !== null && "M_BranchCode" in this.xBranch ? this.xBranch.M_BranchCode : "",
|
||||
PRDescription: this.xDescription,
|
||||
items: this.$store.state.requester.selectedItems
|
||||
});
|
||||
this.errors.details = false;
|
||||
|
||||
} else {
|
||||
this.errors.details = true;
|
||||
if (this.msgErrDetails == "") {
|
||||
this.msgErrDetails = "<p>Qty " + item.itemDesc + " tidak boleh 0</p>";
|
||||
} else {
|
||||
this.msgErrDetails += "<p>Qty " + item.itemDesc + " tidak boleh 0</p>";
|
||||
}
|
||||
}
|
||||
},
|
||||
saveAndRequestPurchase() {
|
||||
if (this.validateForm()) {
|
||||
// Show confirmation dialog instead of proceeding directly
|
||||
this.dialogConfirmRequest = true;
|
||||
} else {
|
||||
this.errors.details = true;
|
||||
this.msgErrDetails = this.selectedItems.length == 0 ?
|
||||
"<p>Data item belum ada. Silahkan masukkan data item terlebih dahulu.</p>" :
|
||||
this.msgErrDetails;
|
||||
}
|
||||
},
|
||||
confirmAndRequestPurchase() {
|
||||
// Close the dialog
|
||||
this.dialogConfirmRequest = false;
|
||||
|
||||
// Now proceed with the actual save and request
|
||||
this.$store.commit("requester/updateLoadingSave", true);
|
||||
this.$store.dispatch("requester/saveAndDoPurchaseRequest", {
|
||||
PRDateUse: this.xDateUse,
|
||||
PRRegional: this.xRegional.S_RegionalID,
|
||||
PRBranch: typeof this.xBranch === "object" && this.xBranch !== null && "M_BranchCode" in this.xBranch ? this.xBranch.M_BranchCode : "",
|
||||
PRDescription: this.xDescription,
|
||||
items: this.selectedItems
|
||||
});
|
||||
},
|
||||
|
||||
updatePurchaseRequest() {
|
||||
if (this.validateForm()) {
|
||||
this.$store.commit("requester/updateLoadingSave", true);
|
||||
this.$store.dispatch("requester/updatePurchaseRequest", {
|
||||
act: "edit",
|
||||
PRID: this.$store.state.requester.selectedMainTable.prId,
|
||||
PRNumber: this.$store.state.requester.selectedMainTable.prNumber,
|
||||
PRDateUse: this.xDateUse,
|
||||
PRRegional: this.xRegional.S_RegionalID,
|
||||
PRBranch: typeof this.xBranch === "object" && this.xBranch !== null && "M_BranchCode" in this.xBranch ? this.xBranch.M_BranchCode : "",
|
||||
PRDescription: this.xDescription,
|
||||
items: this.selectedItems
|
||||
});
|
||||
}
|
||||
|
||||
},
|
||||
checkSelected(item) {
|
||||
let selectedItems = this.selectedItems;
|
||||
let rtn = false
|
||||
if (selectedItems.length == 0) {
|
||||
console.log(item.itemId, "selectedItems.length == 0");
|
||||
rtn = false;
|
||||
}
|
||||
selectedItems.forEach(itemloop => {
|
||||
if (itemloop.itemId == item.itemId) {
|
||||
console.log(item.itemId, "itemloop.itemId == item.itemId");
|
||||
rtn = true;
|
||||
}
|
||||
});
|
||||
console.log(item.itemId, "return false");
|
||||
return rtn;
|
||||
},
|
||||
savePurchaseRequest() {
|
||||
if (this.validateForm()) {
|
||||
this.$store.commit("requester/updateLoadingSave", true);
|
||||
this.$store.dispatch("requester/savePurchaseRequest", {
|
||||
PRDateUse: this.xDateUse,
|
||||
PRRegional: this.xRegional.S_RegionalID,
|
||||
PRBranch: typeof this.xBranch === "object" && this.xBranch !== null && "M_BranchCode" in this.xBranch ? this.xBranch.M_BranchCode : "",
|
||||
PRDescription: this.xDescription,
|
||||
items: this.selectedItems
|
||||
});
|
||||
}
|
||||
|
||||
},
|
||||
itemSearch() {
|
||||
this.$store.dispatch("requester/getItems", {
|
||||
search: this.searchItem,
|
||||
division: this.selectedDivision.DivisionID ? this.selectedDivision.DivisionID : "",
|
||||
itemGroup: this.selectedItemGroup.Nat_GroupID ? this.selectedItemGroup.Nat_GroupID : "",
|
||||
itemSubGroup: this.selectedItemSubGroup.Nat_SubGroupID ? this.selectedItemSubGroup.Nat_SubGroupID : ""
|
||||
});
|
||||
},
|
||||
addItem(item) {
|
||||
let selectedItems = this.selectedItems;
|
||||
let index = selectedItems.findIndex(itemloop => itemloop.itemId == item.itemId);
|
||||
if (index == -1) {
|
||||
selectedItems.push(item);
|
||||
}
|
||||
|
||||
this.$store.commit("requester/updateSelectedItems", selectedItems);
|
||||
console.log(this.selectedItems);
|
||||
},
|
||||
deleteItem(item) {
|
||||
let selectedItems = this.selectedItems;
|
||||
let index = selectedItems.findIndex(itemloop => itemloop.itemId == item.itemId);
|
||||
if (index != -1) {
|
||||
selectedItems.splice(index, 1);
|
||||
}
|
||||
this.$store.commit("requester/updateSelectedItems", selectedItems);
|
||||
},
|
||||
|
||||
updateQuantity(item) {
|
||||
let items = this.selectedItems;
|
||||
let index = items.findIndex(itemloop => itemloop.itemId == item.itemId);
|
||||
items[index].qty = item.qty;
|
||||
console.log(items[index].qty)
|
||||
this.$store.commit("requester/updateSelectedItems", items);
|
||||
},
|
||||
saveUnit() {
|
||||
let items = this.selectedItems;
|
||||
let index = items.findIndex(itemloop => itemloop.itemId == this.itemUnitChange.itemId);
|
||||
let selectedUnit = this.selectedUnit;
|
||||
|
||||
items[index].unitId = selectedUnit.unitId;
|
||||
items[index].unitCode = selectedUnit.unitCode;
|
||||
items[index].unitName = selectedUnit.unitName;
|
||||
this.$store.commit("requester/updateSelectedItems", items);
|
||||
this.$store.commit("requester/updateDialogUnit", false);
|
||||
},
|
||||
openDialogUnit(item) {
|
||||
this.itemUnitChange = item
|
||||
this.$store.dispatch("requester/getUnitByItemId", {
|
||||
itemId: item.itemId,
|
||||
selectedUnit: { unitId: item.unitId, unitCode: item.unitCode, unitName: item.unitName }
|
||||
});
|
||||
},
|
||||
isSelected(p) {
|
||||
return (
|
||||
p.itemId ==
|
||||
this.$store.state.requester.selectedItem
|
||||
.itemId
|
||||
);
|
||||
},
|
||||
selectMe(spr) {
|
||||
this.$store.commit("requester/updateSelectedItem", spr);
|
||||
},
|
||||
formatDate(date) {
|
||||
if (!date) return null;
|
||||
|
||||
const [year, month, day] = date.split("-");
|
||||
return `${day}-${month}-${year}`;
|
||||
},
|
||||
deFormatedDate(date) {
|
||||
if (!date) return null;
|
||||
|
||||
const [day, month, year] = date.split("-");
|
||||
return `${year}-${month.padStart(2, "0")}-${day.padStart(2, "0")}`;
|
||||
},
|
||||
closeDialogRequest() {
|
||||
this.errors.details = false
|
||||
this.$store.commit(
|
||||
"requester/updateXDateUse",
|
||||
moment(new Date()).format("YYYY-MM-DD")
|
||||
);
|
||||
this.$store.commit("requester/updateXBranch", "");
|
||||
this.$store.commit("requester/updateXRegional", "");
|
||||
this.$store.commit("requester/updateXDescription", "");
|
||||
this.$store.commit("requester/updateDialogRequest", false);
|
||||
this.$store.commit("requester/updateSelectedItems", []);
|
||||
},
|
||||
validateForm() {
|
||||
this.errors.regional = _.isEmpty(this.xRegional) ? true : false;
|
||||
if (this.user.M_BranchID == '0') {
|
||||
this.errors.branch = false
|
||||
} else if (this.user.M_BranchID != '0') {
|
||||
this.errors.branch = _.isEmpty(this.xBranch) ? true : false;
|
||||
}
|
||||
this.errors.description = this.xDescription == "" ? true : false;
|
||||
this.errors.details = this.selectedItems.length == 0 ? true : false;
|
||||
this.msgErrDetails = this.selectedItems.length == 0 ? "<p>Data item belum ada. Silahkan masukkan data item terlebih dahulu.</p>" : "";
|
||||
|
||||
let details = this.selectedItems
|
||||
details.forEach(item => {
|
||||
if (parseInt(item.qty) == 0 || item.qty == "" || parseInt(item.qty) <= 0) {
|
||||
this.errors.details = true;
|
||||
if (this.msgErrDetails == "") {
|
||||
this.msgErrDetails = "<p>Qty " + item.itemDesc + " tidak boleh 0</p>";
|
||||
} else {
|
||||
this.msgErrDetails += "<p>Qty " + item.itemDesc + " tidak boleh 0</p>";
|
||||
}
|
||||
}
|
||||
});
|
||||
//console.log(this.errors.details);
|
||||
if (this.errors.regional == false && this.errors.branch == false && this.errors.description == false && this.errors.details == false) {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
},
|
||||
get_riwayat(id) {
|
||||
this.$store.dispatch("requester/getRiwayatItem", {itemid: id})
|
||||
this.dialog_riwayat = true
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
dialogItem(newVal) {
|
||||
if (newVal == true) {
|
||||
this.$store.commit("requester/updateItems", []);
|
||||
this.$store.dispatch("requester/getItems", {
|
||||
search: this.searchItem,
|
||||
division: this.selectedDivision.DivisionID ? this.selectedDivision.DivisionID : "",
|
||||
itemGroup: this.selectedItemGroup.Nat_GroupID ? this.selectedItemGroup.Nat_GroupID : "",
|
||||
itemSubGroup: this.selectedItemSubGroup.Nat_SubGroupID ? this.selectedItemSubGroup.Nat_SubGroupID : ""
|
||||
});
|
||||
}
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
@@ -0,0 +1,280 @@
|
||||
<template>
|
||||
<v-layout row justify-center>
|
||||
<v-dialog v-model="dialogDetail" persistent max-width="500px">
|
||||
<v-card>
|
||||
<v-card-title class="headline grey lighten-2" primary-title>
|
||||
FORM REQUEST DETAIL <span class="text-h6 font-weight-bold" v-if="act === 'edit'"> {{selectedMainTable.prNumber}}</span>
|
||||
</v-card-title>
|
||||
<v-card-text class="pt-0 pb-0">
|
||||
<v-form ref="formDetail" v-model="validationDetail" lazy-validtion>
|
||||
<v-layout wrap>
|
||||
<v-flex xs12>
|
||||
<v-text-field
|
||||
v-model="xDescriptionDetail"
|
||||
label="Deskripsi"
|
||||
:rules="descriptionRules"
|
||||
required
|
||||
></v-text-field>
|
||||
</v-flex>
|
||||
<v-flex xs12>
|
||||
<v-text-field
|
||||
v-model="xAmountRequest"
|
||||
type="number"
|
||||
label="Jumlah"
|
||||
:min="1"
|
||||
:rules="amountRules"
|
||||
required
|
||||
></v-text-field>
|
||||
</v-flex>
|
||||
<v-flex xs12>
|
||||
<v-autocomplete label="Item Unit" v-model="selected_item_unit"
|
||||
:items="item_units" :search-input.sync="search_item_unit"
|
||||
auto-select-first no-filter item-text="ItemUnitName"
|
||||
return-object
|
||||
no-data-text="Pilih Item Unit"
|
||||
>
|
||||
<template slot="item" slot-scope="{ item }">
|
||||
<v-list-tile-content>
|
||||
<v-list-tile-title v-text="item.ItemUnitName"></v-list-tile-title>
|
||||
</v-list-tile-content>
|
||||
</template>
|
||||
</v-autocomplete>
|
||||
</v-flex>
|
||||
<v-flex xs12>
|
||||
<!-- <v-text-field
|
||||
v-model="xEstimationPrice"
|
||||
label="Harga"
|
||||
type="number"
|
||||
:min="1"
|
||||
prefix="Rp "
|
||||
:rules="priceRules"
|
||||
required
|
||||
:hint="convertMoney(xEstimationPrice)"
|
||||
></v-text-field> -->
|
||||
<v-text-field
|
||||
v-model="xEstimationPrice"
|
||||
label="Harga"><template v-slot:append-outer>
|
||||
<span class="text-h4 font-weight-bold">{{formatAngka(xEstimationPrice)}}</span>
|
||||
</template>
|
||||
</v-text-field>
|
||||
</v-flex>
|
||||
<v-flex xs12>
|
||||
<!-- <v-text-field
|
||||
v-model="total_price"
|
||||
label="Total Harga"
|
||||
type="number"
|
||||
prefix="Rp "
|
||||
readonly
|
||||
:hint="convertMoney(total_price)"
|
||||
></v-text-field> -->
|
||||
<v-text-field
|
||||
v-model="total_price"
|
||||
label="Total Harga"><template v-slot:append-outer>
|
||||
<span class="text-h4 font-weight-bold">{{formatAngka(total_price)}}</span>
|
||||
</template>
|
||||
</v-text-field>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
</v-form>
|
||||
</v-card-text>
|
||||
<v-card-actions>
|
||||
<v-spacer></v-spacer>
|
||||
<v-btn color="error" flat @click="closeDialogDetail()"> Tutup </v-btn>
|
||||
<v-btn v-if="act === 'new'" color="primary" dark @click="saveDetail()"
|
||||
>Simpan</v-btn
|
||||
>
|
||||
<v-btn
|
||||
v-if="act === 'edit'"
|
||||
color="primary"
|
||||
dark
|
||||
@click="updateDetail()"
|
||||
>Simpan Perubahan</v-btn
|
||||
>
|
||||
</v-card-actions>
|
||||
</v-card>
|
||||
</v-dialog>
|
||||
</v-layout>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
module.exports = {
|
||||
name: "AddRequestDetailDialog",
|
||||
data() {
|
||||
return {
|
||||
descriptionRules: [(v) => !!v || "Deskripsi harus diisi"],
|
||||
amountRules: [(v) => (!!v && v > 0) || "Jumlah harus diisi"],
|
||||
priceRules: [(v) => (!!v && v > 0) || "Harga harus diisi"],
|
||||
validationDetail: false,
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
this.$store.dispatch("requester/getUnit", this.search_item_unit)
|
||||
},
|
||||
computed: {
|
||||
selectedMainTable() {
|
||||
return this.$store.state.requester.selectedMainTable;
|
||||
},
|
||||
selectedDetailTable() {
|
||||
return this.$store.state.requester.selectedDetailTable;
|
||||
},
|
||||
xDescriptionDetail: {
|
||||
get() {
|
||||
return this.$store.state.requester.xDescriptionDetail;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateXDescriptionDetail", val);
|
||||
},
|
||||
},
|
||||
xAmountRequest: {
|
||||
get() {
|
||||
return this.$store.state.requester.xAmountRequest;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateXAmountRequest", val);
|
||||
},
|
||||
},
|
||||
xEstimationPrice: {
|
||||
get() {
|
||||
return this.$store.state.requester.xEstimationPrice;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateXEstimationPrice", val);
|
||||
},
|
||||
},
|
||||
dialogDetail: {
|
||||
get() {
|
||||
return this.$store.state.requester.dialogDetail;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateDialogDetail", val);
|
||||
},
|
||||
},
|
||||
act() {
|
||||
return this.$store.state.requester.act;
|
||||
},
|
||||
total_price() {
|
||||
return this.$store.state.requester.total_price;
|
||||
},
|
||||
item_units() {
|
||||
return this.$store.state.requester.item_units;
|
||||
},
|
||||
selected_item_unit: {
|
||||
get() {
|
||||
return this.$store.state.requester.selected_item_unit;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateSelectedItemUnit", val);
|
||||
},
|
||||
},
|
||||
search_item_unit: {
|
||||
get() {
|
||||
return this.$store.state.requester.search_item_unit;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateSearchItemUnit", val);
|
||||
},
|
||||
},
|
||||
act() {
|
||||
return this.$store.state.requester.act;
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
convertMoney(money){
|
||||
return one_money(money)
|
||||
},
|
||||
formatAngka(nilai) {
|
||||
// Jika tidak ada nilai
|
||||
if (!nilai) return '';
|
||||
|
||||
try {
|
||||
// Ubah ke string
|
||||
let strNilai = String(nilai);
|
||||
|
||||
// Jika berisi titik desimal
|
||||
if (strNilai.includes('.')) {
|
||||
// Split bagian utama dan desimal
|
||||
let bagian = strNilai.split('.');
|
||||
let utama = bagian[0];
|
||||
let desimal = bagian[1];
|
||||
|
||||
// Format bagian utama
|
||||
utama = utama.replace(/\B(?=(\d{3})+(?!\d))/g, '.');
|
||||
|
||||
// Kembalikan gabungan
|
||||
return utama + ',' + desimal;
|
||||
} else {
|
||||
// Tidak ada desimal, hanya format bagian utama
|
||||
return strNilai.replace(/\B(?=(\d{3})+(?!\d))/g, '.');
|
||||
}
|
||||
} catch (error) {
|
||||
console.error("Error formatting:", error);
|
||||
return nilai;
|
||||
}
|
||||
},
|
||||
closeDialogDetail() {
|
||||
this.$store.commit("requester/updateXDescriptionDetail", "");
|
||||
this.$store.commit("requester/updateXAmountRequest", 0);
|
||||
this.$store.commit("requester/updateXEstimationPrice", 0);
|
||||
this.$refs.formDetail.resetValidation();
|
||||
this.$store.commit("requester/updateDialogDetail", false);
|
||||
},
|
||||
saveDetail() {
|
||||
if (this.$refs.formDetail.validate()) {
|
||||
this.$store.dispatch("requester/saveDetail", {
|
||||
PRID: this.selectedMainTable.PurchaseRequestDirectID,
|
||||
PRDDescriptionDetail: this.xDescriptionDetail,
|
||||
PRDAmountRequest: this.xAmountRequest,
|
||||
PRDEstimationPrice: this.xEstimationPrice,
|
||||
PRDItemUnitID: this.selected_item_unit.ItemUnitID,
|
||||
});
|
||||
}
|
||||
},
|
||||
updateDetail() {
|
||||
if (this.$refs.formDetail.validate()) {
|
||||
this.$store.dispatch("requester/updateDetail", {
|
||||
PRID: this.selectedMainTable.PurchaseRequestDirectID,
|
||||
PRDID: this.selectedDetailTable.PurchaseRequestDirectDetailID,
|
||||
PRDDescriptionDetail: this.xDescriptionDetail,
|
||||
PRDAmountRequest: this.xAmountRequest,
|
||||
PRDEstimationPrice: this.xEstimationPrice,
|
||||
PRDItemUnitID: this.selected_item_unit.ItemUnitID,
|
||||
});
|
||||
}
|
||||
},
|
||||
calculateTotalPrice() {
|
||||
let total_price = this.xAmountRequest * this.xEstimationPrice;
|
||||
this.$store.commit("requester/updateTotalPrice", total_price);
|
||||
},
|
||||
thr_search_item_unit: _.debounce(function () {
|
||||
this.$store.dispatch("requester/getUnit", this.search_item_unit)
|
||||
}, 1000),
|
||||
},
|
||||
watch: {
|
||||
dialogDetail(val, old) {
|
||||
if (val) {
|
||||
// this.$refs.formDetail.reset();
|
||||
// this.$refs.formDetail.resetValidation();
|
||||
}
|
||||
},
|
||||
xAmountRequest(val, old) {
|
||||
if (val <= 0) {
|
||||
this.$store.commit("requester/updateXAmountRequest", 0);
|
||||
}
|
||||
this.calculateTotalPrice();
|
||||
},
|
||||
xEstimationPrice(val, old) {
|
||||
if (val < 0) {
|
||||
this.$store.commit("requester/updateXEstimationPrice", 0);
|
||||
}
|
||||
this.calculateTotalPrice();
|
||||
},
|
||||
search_item_unit(val, old) {
|
||||
if (val == old) return;
|
||||
if (!val) return;
|
||||
if (val.length < 1) return;
|
||||
if (this.$store.state.requester.loadingAutocomplete == 1) return;
|
||||
this.thr_search_item_unit();
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
@@ -0,0 +1,89 @@
|
||||
<template>
|
||||
<v-dialog v-model="dialog_riwayat" persistent max-width="40%">
|
||||
<v-card>
|
||||
<v-card-title class="headline grey lighten-2" primary-title>
|
||||
Riwayat Stock Request Item
|
||||
</v-card-title>
|
||||
|
||||
<v-card-text>
|
||||
<v-data-table
|
||||
:headers="headers" :items="riwayat_item.records"
|
||||
hide-actions class="elevation-1"
|
||||
>
|
||||
<template slot="items" slot-scope="props">
|
||||
<tr>
|
||||
<td class="text-xs-center pa-2">{{ props.item.PurchaseRequestDetailCreated }}</td>
|
||||
<td class="text-xs-center pa-2">{{ props.item.M_ItemDesc }}</td>
|
||||
<td class="text-xs-center pa-2">{{ props.item.ItemUnitName }}</td>
|
||||
<td class="text-xs-center pa-2">{{ props.item.PurchaseRequestDetailQty }}</td>
|
||||
<td class="text-xs-center pa-2">{{ props.item.PurchaseRequestStatus }}</td>
|
||||
</tr>
|
||||
</template>
|
||||
</v-data-table>
|
||||
</v-card-text>
|
||||
|
||||
<v-card-actions>
|
||||
<v-spacer></v-spacer>
|
||||
<v-btn color="error" flat @click="closeDialog()">
|
||||
Tutup
|
||||
</v-btn>
|
||||
</v-card-actions>
|
||||
</v-card>
|
||||
</v-dialog>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
module.exports = {
|
||||
mounted() {},
|
||||
data() {
|
||||
return {
|
||||
headers: [
|
||||
{
|
||||
text: "TANGGAL", align: "center", sortable: false,
|
||||
value: "no", width: "20%", class: "blue lighten-3 white--text",
|
||||
},
|
||||
{
|
||||
text: "ITEM", align: "center", sortable: false,
|
||||
value: "item", width: "30%", class: "blue lighten-3 white--text",
|
||||
},
|
||||
{
|
||||
text: "UNIT", align: "center", sortable: false,
|
||||
value: "unit", width: "20%", class: "blue lighten-3 white--text",
|
||||
},
|
||||
{
|
||||
text: "QTY", align: "center", sortable: false,
|
||||
value: "qty", width: "15%", class: "blue lighten-3 white--text",
|
||||
},
|
||||
{
|
||||
text: "STATUS", align: "center", sortable: false,
|
||||
value: "status", width: "15%", class: "blue lighten-3 white--text",
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
dialog_riwayat: {
|
||||
get() {
|
||||
return this.$store.state.requester.dialog_riwayat
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/update_dialog_riwayat", val)
|
||||
}
|
||||
},
|
||||
riwayat_item: {
|
||||
get() {
|
||||
return this.$store.state.requester.riwayat_item
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/update_riwayat_item", val)
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
closeDialog() {
|
||||
this.riwayat_item = {}
|
||||
this.dialog_riwayat = false
|
||||
}
|
||||
},
|
||||
}
|
||||
</script>
|
||||
@@ -0,0 +1,793 @@
|
||||
<template>
|
||||
<div style="width: 100%">
|
||||
<v-snackbar
|
||||
v-model="snackbar.state"
|
||||
:color="snackbar.type"
|
||||
:timeout="3000"
|
||||
multi-line
|
||||
top
|
||||
>
|
||||
{{ snackbar.message }}
|
||||
<v-btn flat @click="snackbar.state = false">
|
||||
Close
|
||||
</v-btn>
|
||||
</v-snackbar>
|
||||
|
||||
<v-layout row wrap>
|
||||
<v-flex xs12 class="left" fill-height pa-1>
|
||||
<!-- TOOLBAR PR ATAS -->
|
||||
<v-toolbar color="primary" dark>
|
||||
<v-toolbar-title class="white--text"
|
||||
>STOCK REQUEST</v-toolbar-title
|
||||
>
|
||||
<v-spacer></v-spacer>
|
||||
<v-btn icon @click="openDialogRequest()">
|
||||
<v-icon>add_box</v-icon>
|
||||
</v-btn>
|
||||
</v-toolbar>
|
||||
<v-card class="pa-2">
|
||||
<v-layout row>
|
||||
<v-flex pa-1 xs2>
|
||||
<v-menu
|
||||
v-model="menuStartDate"
|
||||
:close-on-content-click="false"
|
||||
transition="scale-transition"
|
||||
:nudge-right="40"
|
||||
lazy
|
||||
offset-y
|
||||
max-width="290px"
|
||||
min-width="290px"
|
||||
hide-details
|
||||
>
|
||||
<template v-slot:activator="{ on }">
|
||||
<v-text-field
|
||||
:value="startDateFormatted"
|
||||
label="Tanggal Awal"
|
||||
readonly
|
||||
style="max-width: 250px"
|
||||
outline
|
||||
hide-details
|
||||
v-on="on"
|
||||
@blur="dStartDate = deFormatedDate(startDateFormatted)"
|
||||
></v-text-field>
|
||||
</template>
|
||||
<v-date-picker
|
||||
no-title
|
||||
v-model="fStartDate"
|
||||
@input="menuStartDate = false"
|
||||
></v-date-picker>
|
||||
</v-menu>
|
||||
</v-flex>
|
||||
<v-flex pa-1 xs2>
|
||||
<v-menu
|
||||
v-model="menuEndDate"
|
||||
hide-details
|
||||
:close-on-content-click="false"
|
||||
transition="scale-transition"
|
||||
:nudge-right="40"
|
||||
lazy
|
||||
offset-y
|
||||
max-width="290px"
|
||||
min-width="290px"
|
||||
>
|
||||
<template v-slot:activator="{ on }">
|
||||
<v-text-field
|
||||
:value="endDateFormatted"
|
||||
label="Tanggal Akhir"
|
||||
readonly
|
||||
style="max-width: 250px"
|
||||
outline
|
||||
hide-details
|
||||
v-on="on"
|
||||
@blur="dEndDate = deFormatedDate(endDateFormatted)"
|
||||
></v-text-field>
|
||||
</template>
|
||||
<v-date-picker
|
||||
no-title
|
||||
v-model="fEndDate"
|
||||
@input="menuEndDate = false"
|
||||
></v-date-picker>
|
||||
</v-menu>
|
||||
</v-flex>
|
||||
<v-flex pa-1 xs2>
|
||||
<v-autocomplete
|
||||
v-model="fStatus"
|
||||
menu-icon="mdi-chevron-down"
|
||||
:items="statusOptions"
|
||||
item-text="title"
|
||||
item-value="value"
|
||||
label="Status"
|
||||
style="max-width: 250px"
|
||||
outline
|
||||
hide-details
|
||||
></v-autocomplete>
|
||||
</v-flex>
|
||||
<v-flex pa-1 xs2>
|
||||
<v-text-field
|
||||
v-model="fSearch"
|
||||
label="Cari..."
|
||||
placeholder="NO. PR"
|
||||
style="max-width: 250px"
|
||||
outline
|
||||
hide-details
|
||||
></v-text-field>
|
||||
</v-flex>
|
||||
<v-flex pa-1 xs2>
|
||||
<v-btn
|
||||
dark
|
||||
color="primary"
|
||||
style="min-width: 50px; height: 50px; margin: 0"
|
||||
@click="mainTableSearch()"
|
||||
>
|
||||
<v-icon>search</v-icon>
|
||||
</v-btn>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
</v-card>
|
||||
|
||||
<!-- LIST TABLE PR -->
|
||||
<v-card class="pa-2 mt-2">
|
||||
<v-layout row style="max-height: 600px; overflow: auto">
|
||||
<v-flex xs12 pl-2 pr-2 pt-2 pb-2>
|
||||
<v-data-table
|
||||
:headers="headers"
|
||||
:items="mainTable"
|
||||
:loading="mainTableLoading"
|
||||
hide-actions
|
||||
class="elevation-1"
|
||||
>
|
||||
<template slot="items" slot-scope="props">
|
||||
<td
|
||||
class="text-xs-center pa-2"
|
||||
v-bind:class="{ 'amber lighten-4': isSelected(props.item) }"
|
||||
@click="selectMe(props.item)"
|
||||
>
|
||||
<div
|
||||
style="
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
"
|
||||
>
|
||||
{{ props.item.prNumber }}
|
||||
<v-chip small style="border-radius: 5px; flex-grow: 0">
|
||||
{{ props.item.prRequestedBy }}
|
||||
</v-chip>
|
||||
</div>
|
||||
</td>
|
||||
<td
|
||||
class="text-xs-left pa-2"
|
||||
v-bind:class="{ 'amber lighten-4': isSelected(props.item) }"
|
||||
@click="selectMe(props.item)"
|
||||
>
|
||||
<div class="date-type-table">
|
||||
<span>
|
||||
|
||||
{{
|
||||
deFormatedDate(props.item.prDate)
|
||||
}}
|
||||
</span>
|
||||
|
||||
</div>
|
||||
</td>
|
||||
<td
|
||||
class="text-xs-left pa-2"
|
||||
v-bind:class="{ 'amber lighten-4': isSelected(props.item) }"
|
||||
@click="selectMe(props.item)"
|
||||
>
|
||||
<div
|
||||
style="
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
"
|
||||
>
|
||||
{{ props.item.prNote }}
|
||||
</div>
|
||||
</td>
|
||||
<td
|
||||
class="text-xs-left pa-2"
|
||||
v-bind:class="{ 'amber lighten-4': isSelected(props.item) }"
|
||||
@click="selectMe(props.item)"
|
||||
>
|
||||
<v-chip
|
||||
small
|
||||
:text-color="
|
||||
props.item.prStatus === 'Draft'
|
||||
? 'black'
|
||||
: 'white'
|
||||
"
|
||||
:color="
|
||||
getChipStatusColor(
|
||||
props.item.prStatus
|
||||
)
|
||||
"
|
||||
>
|
||||
{{ props.item.prStatus }}
|
||||
</v-chip>
|
||||
</td>
|
||||
|
||||
<template
|
||||
v-if="props.item.prStatus == 'Draft'"
|
||||
>
|
||||
<td
|
||||
class="text-xs-center pa-2 pr-5"
|
||||
v-bind:class="{
|
||||
'amber lighten-4': isSelected(props.item),
|
||||
}"
|
||||
>
|
||||
<v-icon small @click="editRequest(props.item)"
|
||||
>edit</v-icon
|
||||
>
|
||||
<v-icon small @click="deleteRequest(props.item)"
|
||||
>delete</v-icon
|
||||
>
|
||||
</td>
|
||||
</template>
|
||||
<template v-else>
|
||||
<td
|
||||
class="text-xs-center pa-2 pr-5"
|
||||
v-bind:class="{
|
||||
'amber lighten-4': isSelected(props.item),
|
||||
}"
|
||||
>
|
||||
<v-icon small @click="previewRequest(props.item)"
|
||||
>receipt</v-icon
|
||||
>
|
||||
</td>
|
||||
</template>
|
||||
</template>
|
||||
</v-data-table>
|
||||
</v-flex>
|
||||
</v-layout>
|
||||
<v-divider></v-divider>
|
||||
<v-pagination
|
||||
style="margin-top: 10px; margin-bottom: 10px"
|
||||
v-model="mainTableCurrentPage"
|
||||
:length="mainTableTotalPage"
|
||||
></v-pagination>
|
||||
</v-card>
|
||||
</v-flex>
|
||||
|
||||
</v-layout>
|
||||
|
||||
<add-purchase-request-dialog></add-purchase-request-dialog>
|
||||
<add-request-detail-dialog></add-request-detail-dialog>
|
||||
<riwayat-dialog></riwayat-dialog>
|
||||
|
||||
<one-dialog-alert
|
||||
:status="dialogAlertDeleteRequest"
|
||||
:msg="msgAlertDeleteRequest"
|
||||
@forget-dialog-alert="dialogAlertDeleteRequest = false"
|
||||
@close-dialog-alert="closeAndDeleteRequest()"
|
||||
></one-dialog-alert>
|
||||
|
||||
<one-dialog-alert
|
||||
:status="dialogAlertDeleteDetail"
|
||||
:msg="msgAlertDeleteRequest"
|
||||
@forget-dialog-alert="dialogAlertDeleteDetail = false"
|
||||
@close-dialog-alert="closeAndDeleteDetail()"
|
||||
></one-dialog-alert>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.date-type-table {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.table.v-table tbody td,
|
||||
table.v-table tbody th {
|
||||
height: 40px;
|
||||
}
|
||||
|
||||
.table.v-table thead tr {
|
||||
height: 40px;
|
||||
}
|
||||
|
||||
.scroll-container {
|
||||
scroll-padding: 50px 0 0 50px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
module.exports = {
|
||||
components: {
|
||||
"add-purchase-request-dialog": httpVueLoader("./addPurchaseRequestDialog.vue"),
|
||||
"add-request-detail-dialog": httpVueLoader("./addRequestDetailDialog.vue"),
|
||||
"riwayat-dialog": httpVueLoader("./dialogRiwayat.vue"),
|
||||
"one-dialog-alert": httpVueLoader("../../common/oneDialogAlert.vue"),
|
||||
"one-dialog-error": httpVueLoader("../../common/oneDialogError.vue"),
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
msgAlertDeleteRequest: "",
|
||||
dialogAlertDeleteRequest: false,
|
||||
dialogAlertDeleteDetail: false,
|
||||
headers: [
|
||||
{
|
||||
text: "NO PR",
|
||||
align: "center",
|
||||
sortable: false,
|
||||
value: "no",
|
||||
width: "15%",
|
||||
class: "blue lighten-3 white--text",
|
||||
},
|
||||
{
|
||||
text: "TANGGAL",
|
||||
align: "left",
|
||||
sortable: false,
|
||||
value: "requestDate",
|
||||
width: "15%",
|
||||
class: "blue lighten-3 white--text",
|
||||
},
|
||||
{
|
||||
text: "KETERANGAN",
|
||||
align: "center",
|
||||
sortable: false,
|
||||
value: "keterangan",
|
||||
width: "30%",
|
||||
class: "blue lighten-3 white--text",
|
||||
},
|
||||
{
|
||||
text: "STATUS",
|
||||
align: "center",
|
||||
sortable: false,
|
||||
value: "status",
|
||||
width: "10%",
|
||||
class: "blue lighten-3 white--text",
|
||||
},
|
||||
{
|
||||
text: "AKSI",
|
||||
align: "center",
|
||||
sortable: false,
|
||||
value: "action",
|
||||
width: "10%",
|
||||
class: "blue lighten-3 white--text",
|
||||
},
|
||||
],
|
||||
detailHeaders: [
|
||||
{
|
||||
text: "NO",
|
||||
align: "center",
|
||||
sortable: false,
|
||||
value: "no",
|
||||
width: "5%",
|
||||
class: "blue lighten-3 white--text",
|
||||
},
|
||||
{
|
||||
text: "KETERANGAN",
|
||||
align: "left",
|
||||
sortable: false,
|
||||
value: "requestDate",
|
||||
width: "25%",
|
||||
class: "blue lighten-3 white--text",
|
||||
},
|
||||
{
|
||||
text: "JUMLAH",
|
||||
align: "left",
|
||||
sortable: false,
|
||||
value: "requestDate",
|
||||
width: "5%",
|
||||
class: "blue lighten-3 white--text",
|
||||
},
|
||||
{
|
||||
text: "HARGA",
|
||||
align: "left",
|
||||
sortable: false,
|
||||
value: "requestDate",
|
||||
width: "15%",
|
||||
class: "blue lighten-3 white--text",
|
||||
},
|
||||
{
|
||||
text: "SATUAN",
|
||||
align: "left",
|
||||
sortable: false,
|
||||
value: "requestDate",
|
||||
width: "20%",
|
||||
class: "blue lighten-3 white--text",
|
||||
},
|
||||
{
|
||||
text: "TOTAL HARGA",
|
||||
align: "left",
|
||||
sortable: false,
|
||||
value: "useDate",
|
||||
width: "15%",
|
||||
class: "blue lighten-3 white--text",
|
||||
},
|
||||
{
|
||||
text: "STATUS",
|
||||
align: "left",
|
||||
sortable: false,
|
||||
value: "status",
|
||||
width: "10%",
|
||||
class: "blue lighten-3 white--text",
|
||||
},
|
||||
{
|
||||
text: "AKSI",
|
||||
align: "left",
|
||||
sortable: false,
|
||||
value: "action",
|
||||
width: "5%",
|
||||
class: "blue lighten-3 white--text",
|
||||
},
|
||||
],
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
this.$store.dispatch("requester/getRegionalBranchByUser");
|
||||
this.$store.dispatch("requester/search");
|
||||
},
|
||||
computed: {
|
||||
act() {
|
||||
return this.$store.state.requester.act;
|
||||
},
|
||||
mainTable() {
|
||||
return this.$store.state.requester.mainTable;
|
||||
},
|
||||
detailTable() {
|
||||
return this.$store.state.requester.detailTable;
|
||||
},
|
||||
mainTableLoading() {
|
||||
return this.$store.state.requester.mainTableLoadingStatus === 1;
|
||||
},
|
||||
detailTableLoading() {
|
||||
return this.$store.state.requester.detailTableLoadingStatus === 1;
|
||||
},
|
||||
mainTableTotalPage: {
|
||||
get() {
|
||||
return this.$store.state.requester.countMainTable;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateCountMainTable", val);
|
||||
},
|
||||
},
|
||||
mainTableCurrentPage: {
|
||||
get() {
|
||||
return this.$store.state.requester.mainTableCurrentPage;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateMainTableCurrentPage", val);
|
||||
this.$store.commit("requester/updateMainTableLastId", -1);
|
||||
this.$store.dispatch("requester/search");
|
||||
},
|
||||
},
|
||||
selectedMainTable: {
|
||||
get() {
|
||||
return this.$store.state.requester.selectedMainTable;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("updateSelectedMainTable", val);
|
||||
},
|
||||
},
|
||||
menuStartDate: {
|
||||
get() {
|
||||
return this.$store.state.requester.menuStartDate;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateMenuStartDate", val);
|
||||
},
|
||||
},
|
||||
menuEndDate: {
|
||||
get() {
|
||||
return this.$store.state.requester.menuEndDate;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateMenuEndDate", val);
|
||||
},
|
||||
},
|
||||
startDateFormatted() {
|
||||
return this.formatDate(this.fStartDate);
|
||||
},
|
||||
endDateFormatted() {
|
||||
return this.formatDate(this.fEndDate);
|
||||
},
|
||||
dStartDate: {
|
||||
get() {
|
||||
return this.$store.state.requester.dStartDate;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateDStartDate", val);
|
||||
},
|
||||
},
|
||||
dEndDate: {
|
||||
get() {
|
||||
return this.$store.state.requester.dEndDate;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateDEndDate", val);
|
||||
},
|
||||
},
|
||||
fStartDate: {
|
||||
get() {
|
||||
return this.$store.state.requester.fStartDate;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateFStartDate", val);
|
||||
},
|
||||
},
|
||||
fEndDate: {
|
||||
get() {
|
||||
return this.$store.state.requester.fEndDate;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateFEndDate", val);
|
||||
},
|
||||
},
|
||||
fStatus: {
|
||||
get() {
|
||||
return this.$store.state.requester.fStatus;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateFStatus", val);
|
||||
},
|
||||
},
|
||||
statusOptions() {
|
||||
return this.$store.state.requester.statusOptions;
|
||||
},
|
||||
fSearch: {
|
||||
get() {
|
||||
return this.$store.state.requester.fSearch;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateFSearch", val);
|
||||
},
|
||||
},
|
||||
xNumber: {
|
||||
get() {
|
||||
return this.$store.state.requester.xNumber;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateXNumber", val);
|
||||
},
|
||||
},
|
||||
xPRID: {
|
||||
get() {
|
||||
return this.$store.state.requester.xPRID;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateXPRID", val);
|
||||
},
|
||||
},
|
||||
xPRDID: {
|
||||
get() {
|
||||
return this.$store.state.requester.xPRDID;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/updateXPRDID", val);
|
||||
},
|
||||
},
|
||||
snackbar: {
|
||||
get() {
|
||||
return this.$store.state.requester.snackbar;
|
||||
},
|
||||
set(val) {
|
||||
this.$store.commit("requester/update_snackbar", val);
|
||||
},
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
previewRequest(val){
|
||||
this.$store.commit("requester/updateSelectedMainTable", val);
|
||||
let selectedPr = val
|
||||
this.$store.commit("requester/updateRegionalOptions", [{S_RegionalID : selectedPr.S_RegionalID, S_RegionalName : selectedPr.S_RegionalName}]);
|
||||
this.$store.commit("requester/updateXRegional", {S_RegionalID : selectedPr.S_RegionalID, S_RegionalName : selectedPr.S_RegionalName});
|
||||
//this.$store.commit("requester/updateBranchOptions", [{M_BranchCode : selectedPr.M_BranchCode, M_BranchName : selectedPr.M_BranchName}]);
|
||||
this.$store.commit("requester/updateXBranch", {M_BranchCode : selectedPr.M_BranchCode, M_BranchName : selectedPr.M_BranchName});
|
||||
this.$store.commit(
|
||||
"requester/updateXDateUse",
|
||||
selectedPr.prDate
|
||||
);
|
||||
this.$store.commit("requester/updateXDescription", selectedPr.prNote);
|
||||
this.$store.dispatch("requester/getDivisionByUser");
|
||||
this.$store.commit("requester/updateDialogRequest", true);
|
||||
this.$store.dispatch("requester/getDetailRequest", {
|
||||
requestId: selectedPr.prId
|
||||
});
|
||||
this.$store.commit("requester/updateAct", "preview");
|
||||
},
|
||||
convertMoney(money){
|
||||
return one_money(money)
|
||||
},
|
||||
isSelected(p) {
|
||||
return (
|
||||
p.prId ==
|
||||
this.$store.state.requester.selectedMainTable
|
||||
.prId
|
||||
);
|
||||
},
|
||||
selectMe(spr) {
|
||||
this.$store.commit("requester/updateSelectedMainTable", spr);
|
||||
this.$store.dispatch("requester/searchDetail");
|
||||
},
|
||||
formatDate(date) {
|
||||
if (!date) return null;
|
||||
|
||||
const [year, month, day] = date.split("-");
|
||||
return `${day}-${month}-${year}`;
|
||||
},
|
||||
deFormatedDate(date) {
|
||||
if (!date) return null;
|
||||
|
||||
const [day, month, year] = date.split("-");
|
||||
return `${year}-${month.padStart(2, "0")}-${day.padStart(2, "0")}`;
|
||||
},
|
||||
getChipStatusColor(status) {
|
||||
switch (status) {
|
||||
case "Pending":
|
||||
return "warning";
|
||||
case "Approved":
|
||||
return "success";
|
||||
case "Rejected":
|
||||
return "error";
|
||||
case "Completed":
|
||||
return "info";
|
||||
case "Paid":
|
||||
return "success";
|
||||
default:
|
||||
return "";
|
||||
}
|
||||
},
|
||||
getChipStatusDetailColor(status) {
|
||||
switch (status) {
|
||||
case "Pending":
|
||||
return "warning";
|
||||
case "Ordered":
|
||||
return "success";
|
||||
case "Received":
|
||||
return "info";
|
||||
case "Cancelled":
|
||||
return "error";
|
||||
default:
|
||||
return "warning";
|
||||
}
|
||||
},
|
||||
mainTableSearch() {
|
||||
this.$store.dispatch("requester/search");
|
||||
this.$store.commit("requester/updateSelectedMainTable", {});
|
||||
this.$store.commit("requester/updateDetailTable", []);
|
||||
},
|
||||
resetItemTable() {
|
||||
this.$store.commit("requester/updateItems", []);
|
||||
this.$store.commit("requester/updateSelectedItem", {});
|
||||
this.$store.commit("requester/updateSearchItem", "");
|
||||
this.$store.commit("requester/updateLoadingItem", false);
|
||||
this.$store.commit("requester/updateItemGroupOptions", []);
|
||||
this.$store.commit("requester/updateSelectedItemGroup", {});
|
||||
this.$store.commit("requester/updateItemSubGroupOptions", []);
|
||||
this.$store.commit("requester/updateSelectedItemSubGroup", {});
|
||||
},
|
||||
openDialogRequest() {
|
||||
let user = one_user()
|
||||
this.$store.commit("requester/updateAct", "new");
|
||||
this.$store.commit("requester/updateRegionalOptions", [{S_RegionalID : user.S_RegionalID, S_RegionalName : user.S_RegionalName}]);
|
||||
this.$store.commit("requester/updateXRegional", {S_RegionalID : user.S_RegionalID, S_RegionalName : user.S_RegionalName});
|
||||
this.$store.commit("requester/updateXBranch", {});
|
||||
if(user.M_BranchName != ""){
|
||||
this.$store.commit("requester/updateXBranch", {M_BranchCode : user.M_BranchCode, M_BranchName : user.M_BranchName});
|
||||
}
|
||||
this.$store.commit(
|
||||
"requester/updateXDateUse",
|
||||
moment(new Date()).format("YYYY-MM-DD")
|
||||
);
|
||||
this.$store.commit("requester/updateXDescription", "");
|
||||
this.$store.commit("requester/updateDialogRequest", true);
|
||||
this.$store.commit("requester/updateSelectedMainTable", {});
|
||||
this.resetItemTable();
|
||||
this.$store.dispatch("requester/getDivisionByUser");
|
||||
this.$store.dispatch("requester/getItems", {
|
||||
search: "",
|
||||
division: "",
|
||||
itemGroup: "",
|
||||
itemSubGroup: ""
|
||||
});
|
||||
this.$store.commit("requester/updateAct", "new");
|
||||
this.$store.commit("requester/updateSelectedItems", []);
|
||||
},
|
||||
editRequest(val) {
|
||||
this.$store.commit("requester/updateSelectedMainTable", val);
|
||||
this.$store.commit("requester/updateAct", "edit");
|
||||
let selectedPr = val
|
||||
this.$store.commit("requester/updateRegionalOptions", [{S_RegionalID : selectedPr.S_RegionalID, S_RegionalName : selectedPr.S_RegionalName}]);
|
||||
this.$store.commit("requester/updateXRegional", {S_RegionalID : selectedPr.S_RegionalID, S_RegionalName : selectedPr.S_RegionalName});
|
||||
//this.$store.commit("requester/updateBranchOptions", [{M_BranchCode : selectedPr.M_BranchCode, M_BranchName : selectedPr.M_BranchName}]);
|
||||
this.$store.commit("requester/updateXBranch", {M_BranchCode : selectedPr.M_BranchCode, M_BranchName : selectedPr.M_BranchName});
|
||||
this.$store.commit(
|
||||
"requester/updateXDateUse",
|
||||
selectedPr.prDate
|
||||
);
|
||||
this.$store.commit("requester/updateXDescription", selectedPr.prNote);
|
||||
this.$store.dispatch("requester/getDivisionByUser");
|
||||
this.$store.commit("requester/updateDialogRequest", true);
|
||||
this.$store.dispatch("requester/getDetailRequest", {
|
||||
requestId: selectedPr.prId
|
||||
});
|
||||
},
|
||||
updateRequest(val) {
|
||||
//this.$store.dispatch("requester/branch");
|
||||
this.$store.commit(
|
||||
"requester/updateXDateUse",
|
||||
val.prDate
|
||||
);
|
||||
//this.$store.commit("requester/updateBranchOptions", [{M_BranchCode : val.M_BranchCode, M_BranchName : val.M_BranchName}]);
|
||||
this.$store.commit("requester/updateXBranch",{M_BranchCode : val.M_BranchCode, M_BranchName : val.M_BranchName});
|
||||
this.$store.commit("requester/updateRegionalOptions", [{S_RegionalID : val.S_RegionalID, S_RegionalName : val.S_RegionalName}]);
|
||||
this.$store.commit("requester/updateXRegional",{S_RegionalID : val.S_RegionalID, S_RegionalName : val.S_RegionalName});
|
||||
this.$store.commit(
|
||||
"requester/updateXDescription",
|
||||
val.PurchaseRequestDirectDescription
|
||||
);
|
||||
this.$store.commit("requester/updateXPRID", val.prId);
|
||||
this.$store.commit("requester/updateAct", "edit");
|
||||
this.$store.commit("requester/updateDialogRequest", true);
|
||||
},
|
||||
deleteRequest(data) {
|
||||
this.xPRID = data.prId;
|
||||
this.xNumber = data.prNumber;
|
||||
|
||||
this.msgAlertDeleteRequest = `Yakin, mau hapus Purchase Request [${data.prNumber}] ?`;
|
||||
this.dialogAlertDeleteRequest = true;
|
||||
},
|
||||
closeAndDeleteRequest() {
|
||||
this.$store.dispatch("requester/deleteRequest", {
|
||||
PRID: this.xPRID,
|
||||
PRNumber: this.xNumber,
|
||||
});
|
||||
this.dialogAlertDeleteRequest = false;
|
||||
},
|
||||
openDialogDetail() {
|
||||
this.$store.commit("requester/updateXDescriptionDetail", "");
|
||||
this.$store.commit("requester/updateXAmountRequest", 0);
|
||||
this.$store.commit("requester/updateXEstimationPrice",0);
|
||||
this.$store.commit("requester/updateAct", "new");
|
||||
this.$store.commit("requester/updateDialogDetail", true);
|
||||
this.$store.commit("requester/updateSelectedItemUnit", {});
|
||||
},
|
||||
updateDetail(val) {
|
||||
this.$store.commit("requester/updateXDescriptionDetail", val.PurchaseRequestDirectDescription);
|
||||
this.$store.commit(
|
||||
"requester/updateXAmountRequest",
|
||||
val.PurchaseRequestDirectDetailAmountRequest
|
||||
);
|
||||
this.$store.commit(
|
||||
"requester/updateXEstimationPrice",
|
||||
val.PurchaseRequestDirectDetailEstimationPrice
|
||||
);
|
||||
this.$store.commit("requester/updateItemUnits", [{
|
||||
ItemUnitID: val.PurchaseRequestDirectDetailItemUnitID,
|
||||
ItemUnitName: val.ItemUnitName
|
||||
}]);
|
||||
this.$store.commit("requester/updateSelectedItemUnit", {
|
||||
ItemUnitID: val.PurchaseRequestDirectDetailItemUnitID,
|
||||
ItemUnitName: val.ItemUnitName
|
||||
});
|
||||
this.$store.commit("requester/updateSelectedDetailTable", val);
|
||||
this.$store.commit("requester/updateAct", "edit");
|
||||
this.$store.commit("requester/updateDialogDetail", true);
|
||||
},
|
||||
deleteDetail(data) {
|
||||
this.xPRDID = data.PurchaseRequestDirectDetailID;
|
||||
|
||||
this.msgAlertDeleteRequest = `Yakin, mau hapus Request [${data.PurchaseRequestDirectDescription}] ?`;
|
||||
this.dialogAlertDeleteDetail = true;
|
||||
},
|
||||
closeAndDeleteDetail() {
|
||||
this.$store.dispatch("requester/deleteDetail", {
|
||||
PRDID: this.xPRDID,
|
||||
PRDDescriptionDetail: this.xDescriptionDetail,
|
||||
PRID: this.selectedMainTable.PurchaseRequestDirectID,
|
||||
});
|
||||
this.dialogAlertDeleteDetail = false;
|
||||
},
|
||||
orderRequest(id, status) {
|
||||
if (status === "Draft") {
|
||||
this.$store.dispatch("requester/orderRequest", {
|
||||
PRID: id,
|
||||
});
|
||||
}
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
Reference in New Issue
Block a user