mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-29 04:31:08 -04:00
init crater
This commit is contained in:
36
resources/assets/js/store/modules/dashboard/mutations.js
Normal file
36
resources/assets/js/store/modules/dashboard/mutations.js
Normal file
@ -0,0 +1,36 @@
|
||||
import * as types from './mutation-types'
|
||||
|
||||
export default {
|
||||
[types.SET_INITIAL_DATA] (state, data) {
|
||||
state.contacts = data.customersCount
|
||||
state.invoices = data.invoicesCount
|
||||
state.estimates = data.estimatesCount
|
||||
state.expenses = data.expenses
|
||||
state.recentInvoices = data.invoices
|
||||
state.newContacts = data.contacts
|
||||
state.totalDueAmount = data.totalDueAmount
|
||||
|
||||
state.dueInvoices = data.dueInvoices
|
||||
state.recentEstimates = data.estimates
|
||||
|
||||
state.weeklyInvoices.days = data.weekDays
|
||||
state.weeklyInvoices.counter = data.counters
|
||||
|
||||
if (state.chartData && data.chartData) {
|
||||
state.chartData.months = data.chartData.months
|
||||
state.chartData.invoiceTotals = data.chartData.invoiceTotals
|
||||
state.chartData.expenseTotals = data.chartData.expenseTotals
|
||||
state.chartData.netProfits = data.chartData.netProfits
|
||||
state.chartData.receiptTotals = data.chartData.receiptTotals
|
||||
}
|
||||
|
||||
state.salesTotal = data.salesTotal
|
||||
state.totalReceipts = data.totalReceipts
|
||||
state.totalExpenses = data.totalExpenses
|
||||
state.netProfit = data.netProfit
|
||||
},
|
||||
|
||||
[types.GET_INITIAL_DATA] (state, data) {
|
||||
state.isDataLoaded = data
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user