1234567891011121314151617181920212223242526 |
- 'use strict';
- /**
- *
- *
- * @author Mai
- * @date
- * @version
- */
- const JV = require('../reports/rpt_component/jpc_value_define.js');
- const rptCustomType = {};
- rptCustomType[JV.NODE_CUS_AUDIT_SELECT] = 1;
- rptCustomType[JV.NODE_CUS_GATHER_SELECT] = 2;
- rptCustomType[JV.NODE_CUS_COMPARE_SELECT] = 3;
- rptCustomType[JV.NODE_CUS_STAGE_SELECT] = 4;
- rptCustomType[JV.NODE_CUS_CHANGE_SELECT] = 5;
- rptCustomType[JV.NODE_CUS_MATERIAL_SUM_SELECT] = 6;
- const rptDataType = {};
- rptDataType[JV.NODE_CUS_MATERIAL_SELECT] = 1;
- module.exports = {
- rptCustomType,
- rptDataType
- };
|