project_consts.js 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /**
  2. * Created by jimiz on 2017/4/18.
  3. */
  4. let projectConst = {
  5. BILLS: 'bills',
  6. RATION: 'ration',
  7. GLJ: 'GLJ',
  8. RATION_GLJ:'ration_glj',
  9. RATION_COE:'ration_coe',
  10. RATION_ASS:'ration_ass',
  11. QUANTITY_DETAIL:'quantity_detail',
  12. PROJECTGLJ: 'projectGLJ',
  13. GLJLIST: 'GLJList',
  14. UNITPRICEFILE: 'unitPriceFile',
  15. PROPERTIES: 'properties',
  16. // VOLUMEPRICE: 'volume_price',
  17. FEERATE:'feeRate',
  18. LABOUR_COE:'labour_coe',
  19. CALC_PROGRAM:'calc_program',
  20. INSTALLATION_FEE:'installation_fee'
  21. };
  22. let projectConstList = [
  23. 'bills',
  24. 'ration',
  25. 'GLJ',
  26. 'ration_glj',
  27. 'ration_coe',
  28. 'ration_ass',
  29. 'quantity_detail',
  30. 'projectGLJ',
  31. 'GLJList',
  32. 'unitPriceFile',
  33. 'properties',
  34. // 'volume_price',
  35. 'feeRate',
  36. 'labour_coe',
  37. 'calc_program'
  38. ];
  39. let commonConst = {
  40. UT_UPDATE: 'ut_update',
  41. UT_CREATE: 'ut_create',
  42. UT_DELETE: 'ut_delete'
  43. };
  44. module.exports = {projectConst: projectConst, commonConst: commonConst, projectConstList: projectConstList};