123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /**
- * Created by jimiz on 2017/4/19.
- */
- const ModuleNames = {
- bills: 'bills',
- ration: 'ration',
- GLJ: 'GLJ',
- feeRate: 'feeRate',
- projectGLJ: 'projectGLJ',
- ration_glj:'ration_glj',
- ration_coe:'ration_coe',
- ration_ass:'ration_ass',
- quantity_detail:'quantity_detail',
- volume_price: 'volume_price',
- projectGLJ: 'project_glj',
- labour_coe: 'labour_coe',
- calc_program: 'calc_program'
- };
- const feeRate_consts={
- decimal:3
- };
- const CP_Col_Width = { // 多处计算程序界面的列宽统一设置
- rowHeader: 30,
- colHeader: 30, // 这个是标题栏高度不是宽度,也写在一起
- code: 70,
- serialNo: 50,
- name: 200,
- dispExprUser: 180,
- feeRate: 60,
- displayFieldName: 120,
- statement: 380,
- memo: 110,
- unitFee: 90,
- totalFee: 90
- };
- treeNodeCalcType = {
- ctRationCalcProgram: 1,
- ctBillCalcProgram: 2,
- ctGatherRations: 3,
- ctGatherBills: 4,
- ctCalcBaseValue: 5
- };
|