report.js 569 B

1234567891011121314151617181920212223242526
  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. rptCustomType[JV.NODE_CUS_CHANGE_SELECT] = 5;
  16. rptCustomType[JV.NODE_CUS_MATERIAL_SUM_SELECT] = 6;
  17. const rptDataType = {};
  18. rptDataType[JV.NODE_CUS_MATERIAL_SELECT] = 1;
  19. module.exports = {
  20. rptCustomType,
  21. rptDataType
  22. };