report.js 471 B

123456789101112131415161718192021222324
  1. 'use strict';
  2. /**
  3. *
  4. *
  5. * @author Mai
  6. * @date
  7. * @version
  8. */
  9. const JV = require('../reports/rpt_component/jpc_value_define.js');
  10. const rptCustomType = {};
  11. rptCustomType[JV.NODE_CUS_AUDIT_SELECT] = 1;
  12. rptCustomType[JV.NODE_CUS_GATHER_SELECT] = 2;
  13. rptCustomType[JV.NODE_CUS_COMPARE_SELECT] = 3;
  14. rptCustomType[JV.NODE_CUS_STAGE_SELECT] = 4;
  15. const rptDataType = {};
  16. rptDataType[JV.NODE_CUS_MATERIAL_SELECT] = 1;
  17. module.exports = {
  18. rptCustomType,
  19. rptDataType
  20. };