12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /**
- * 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
- };
- const CP_GatherType = {
- rations: 'rations',
- bills: 'bills'
- };
- const childrenType = {
- ration: 'ration',
- bill: 'bill',
- volumePrice: 'volumePrice',
- formula: 'formula'
- };
|