project_consts.js 998 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. };
  21. let projectConstList = [
  22. 'bills',
  23. 'ration',
  24. 'GLJ',
  25. 'ration_glj',
  26. 'ration_coe',
  27. 'ration_ass',
  28. 'quantity_detail',
  29. 'projectGLJ',
  30. 'GLJList',
  31. 'unitPriceFile',
  32. 'properties',
  33. // 'volume_price',
  34. 'feeRate',
  35. 'labour_coe',
  36. 'calc_program'
  37. ];
  38. let commonConst = {
  39. UT_UPDATE: 'ut_update',
  40. UT_CREATE: 'ut_create',
  41. UT_DELETE: 'ut_delete'
  42. };
  43. module.exports = {projectConst: projectConst, commonConst: commonConst, projectConstList: projectConstList};