build version 400

This commit is contained in:
Mohit Panjwani
2020-12-02 17:54:08 +05:30
parent 326508e567
commit 89ee58590c
963 changed files with 62887 additions and 48868 deletions

View File

@ -1,67 +1,85 @@
import * as types from './mutation-types'
export default {
[types.SET_INVOICES] (state, invoices) {
[types.SET_INVOICES](state, invoices) {
state.invoices = invoices
},
[types.SET_TOTAL_INVOICES] (state, totalInvoices) {
[types.SET_TOTAL_INVOICES](state, totalInvoices) {
state.totalInvoices = totalInvoices
},
[types.ADD_INVOICE] (state, data) {
[types.ADD_INVOICE](state, data) {
state.invoices.push(data)
},
[types.DELETE_INVOICE] (state, id) {
let index = state.invoices.findIndex(invoice => invoice.id === id)
[types.DELETE_INVOICE](state, data) {
let index = state.invoices.findIndex((invoice) => invoice.id === data.id)
state.invoices.splice(index, 1)
},
[types.SET_SELECTED_INVOICES] (state, data) {
[types.SET_SELECTED_INVOICES](state, data) {
state.selectedInvoices = data
},
[types.UPDATE_INVOICE] (state, data) {
let pos = state.invoices.findIndex(invoice => invoice.id === data.invoice.id)
[types.UPDATE_INVOICE](state, data) {
let pos = state.invoices.findIndex(
(invoice) => invoice.id === data.invoice.id
)
state.invoices[pos] = data.invoice
},
[types.UPDATE_INVOICE_STATUS] (state, data) {
let pos = state.invoices.findIndex(invoice => invoice.id === data.id)
[types.UPDATE_INVOICE_STATUS](state, data) {
let pos = state.invoices.findIndex((invoice) => invoice.id === data.id)
if (state.invoices[pos]) {
state.invoices[pos].status = data.status
}
},
[types.RESET_SELECTED_INVOICES] (state, data) {
[types.RESET_SELECTED_INVOICES](state, data) {
state.selectedInvoices = []
state.selectAllField = false
},
[types.DELETE_MULTIPLE_INVOICES] (state, selectedInvoices) {
[types.DELETE_MULTIPLE_INVOICES](state, selectedInvoices) {
selectedInvoices.forEach((invoice) => {
let index = state.invoices.findIndex(_inv => _inv.id === invoice.id)
let index = state.invoices.findIndex((_inv) => _inv.id === invoice.id)
state.invoices.splice(index, 1)
})
state.selectedInvoices = []
},
[types.SET_TEMPLATE_ID] (state, templateId) {
[types.SET_TEMPLATE_ID](state, templateId) {
state.invoiceTemplateId = templateId
},
[types.SELECT_CUSTOMER] (state, data) {
[types.SELECT_CUSTOMER](state, data) {
state.selectedCustomer = data
},
[types.RESET_SELECTED_CUSTOMER] (state, data) {
[types.RESET_SELECTED_CUSTOMER](state, data) {
state.selectedCustomer = null
},
[types.SET_SELECT_ALL_STATE] (state, data) {
[types.SET_SELECT_ALL_STATE](state, data) {
state.selectAllField = data
}
},
[types.RESET_SELECTED_NOTE](state, data) {
state.selectedNote = null
},
[types.SET_SELECTED_NOTE](state, data) {
state.selectedNote = data
},
[types.RESET_ITEM](state, data) {
state.selectedItem = null
},
[types.SET_ITEM](state, data) {
state.selectedItem = data
},
}