mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-30 13:11:08 -04:00
10 lines
462 B
JavaScript
10 lines
462 B
JavaScript
export const customers = (state) => state.customers
|
|
export const selectAllField = (state) => state.selectAllField
|
|
export const selectedCustomers = (state) => state.selectedCustomers
|
|
export const totalCustomers = (state) => state.totalCustomers
|
|
export const getCustomer = (state) => (id) => {
|
|
let CstId = parseInt(id)
|
|
return state.customers.find((customer) => customer.id === CstId)
|
|
}
|
|
export const selectedViewCustomer = (state) => state.selectedViewCustomer
|