actionTypes.js 854 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 SELECT_CUSTOMER = 'selectCustomer'
  12. const INIT_CURRENCIES = 'initCurrencies'
  13. const ADD_TO_CART = 'addToCart'
  14. const CHANGE_CART_TOTAL = 'changeCartTotal'
  15. export {
  16. INIT_USER,
  17. INIT_PRODUCTS,
  18. SELECT_PRODUCT,
  19. INIT_PAYMENT_TERMS,
  20. INIT_JOURNALS,
  21. INIT_DATE,
  22. INIT_CUSTOMERS,
  23. SHOW_CUSTOMER_FORM,
  24. HIDE_CUSTOMER_FORM,
  25. SUBMIT_CUSTOMER,
  26. SELECT_CUSTOMER,
  27. INIT_CURRENCIES,
  28. ADD_TO_CART,
  29. CHANGE_CART_TOTAL
  30. }