guangdong_2018.js 1.4 KB

123456789101112131415161718192021222324252627282930
  1. 'use strict';
  2. //允许使用的工料机类型:人工、普通材料、混凝土、砂浆、配合比、商品混凝土、商品砂浆
  3. //机械台班、机上人工、机械组成物、主材、设备、企业管理费
  4. if(typeof allowGljType !== 'undefined'){
  5. allowGljType = [1, 201, 202, 203, 204, 205, 206, 301, 302, 303, 4,5, 6];
  6. }
  7. if(typeof allowComponent !== 'undefined'){
  8. //允许含有组成物的工料机类型:混凝土、砂浆、配合比、机械台班、主材
  9. allowComponent = [202, 203, 204, 301, 4];
  10. }
  11. if(typeof componentType !== 'undefined'){
  12. //可以作为组成物的工料机类型:普通材料、机械组成物、机上人工、主材
  13. componentType = [201, 302, 303, 4];
  14. }
  15. if(typeof machineAllowComponent !== 'undefined'){
  16. //允许含有组成物的机械工料机类型:机械台班器仪表
  17. machineAllowComponent = [301];
  18. }
  19. if(typeof machineComponent !== 'undefined'){
  20. //可以作为机械工料机组成物的工料机类型:机械组成物、机上人工
  21. machineComponent = [302, 303];
  22. }
  23. if(typeof materialAllowComponent !== 'undefined'){
  24. //允许含有组成物的材料工料机类型:混凝土、砂浆、配合比
  25. materialAllowComponent = [202, 203, 204];
  26. }
  27. if(typeof materialComponent !== 'undefined'){
  28. //可以作为材料工料机组成物的工料机类型:普通材料
  29. materialComponent = [201];
  30. }