actionTypes.js 791 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. const INIT_USER = 'initUser'
  2. const INIT_PRODUCTS = 'initProducts'
  3. const SELECT_PRODUCT = 'selectProduct'
  4. const INIT_PAYMENT_TERMS = 'initPaymentTerms'
  5. const INIT_JOURNALS = 'initJournals'
  6. const INIT_DATE = 'initDate'
  7. const INIT_CUSTOMERS = 'initCustomers'
  8. const SHOW_CUSTOMER_FORM = 'showCustomerForm'
  9. const HIDE_CUSTOMER_FORM = 'hideCustomerForm'
  10. const SUBMIT_CUSTOMER = 'submitCustomer'
  11. const INIT_CURRENCIES = 'initCurrencies'
  12. const ADD_TO_CART = 'addToCart'
  13. const CHANGE_CART_TOTAL = 'changeCartTotal'
  14. export {
  15. INIT_USER,
  16. INIT_PRODUCTS,
  17. SELECT_PRODUCT,
  18. INIT_PAYMENT_TERMS,
  19. INIT_JOURNALS,
  20. INIT_DATE,
  21. INIT_CUSTOMERS,
  22. SHOW_CUSTOMER_FORM,
  23. HIDE_CUSTOMER_FORM,
  24. SUBMIT_CUSTOMER,
  25. INIT_CURRENCIES,
  26. ADD_TO_CART,
  27. CHANGE_CART_TOTAL
  28. }