1234567891011121314151617181920212223242526272829303132333435363738394041 |
- const INIT_USER = 'initUser'
- const INIT_PRODUCTS = 'initProducts'
- const SELECT_PRODUCT = 'selectProduct'
- const INIT_PAYMENT_TERMS = 'initPaymentTerms'
- const INIT_JOURNALS = 'initJournals'
- const INIT_DATE = 'initDate'
- const INIT_CUSTOMERS = 'initCustomers'
- const SHOW_CUSTOMER_FORM = 'showCustomerForm'
- const HIDE_CUSTOMER_FORM = 'hideCustomerForm'
- const SUBMIT_CUSTOMER = 'submitCustomer'
- const INIT_CURRENCIES = 'initCurrencies'
- const ADD_TO_CART = 'addToCart'
- const CHANGE_CART_TOTAL = 'changeCartTotal'
- export {
- INIT_USER,
- INIT_PRODUCTS,
- SELECT_PRODUCT,
- INIT_PAYMENT_TERMS,
- INIT_JOURNALS,
- INIT_DATE,
- INIT_CUSTOMERS,
- SHOW_CUSTOMER_FORM,
- HIDE_CUSTOMER_FORM,
- SUBMIT_CUSTOMER,
- INIT_CURRENCIES,
- ADD_TO_CART,
- CHANGE_CART_TOTAL
- }
|