|  | @@ -1775,6 +1775,27 @@
 | 
	
		
			
				|  |  |          </div>
 | 
	
		
			
				|  |  |      </div>
 | 
	
		
			
				|  |  |  </div>
 | 
	
		
			
				|  |  | +<div class="modal fade" id="bd-set-12" data-backdrop="static">
 | 
	
		
			
				|  |  | +    <div class="modal-dialog" role="document">
 | 
	
		
			
				|  |  | +        <div class="modal-content">
 | 
	
		
			
				|  |  | +            <div class="modal-header">
 | 
	
		
			
				|  |  | +                <h5 class="modal-title">功能设置</h5>
 | 
	
		
			
				|  |  | +            </div>
 | 
	
		
			
				|  |  | +            <div class="modal-body">
 | 
	
		
			
				|  |  | +                <div class="form-group">
 | 
	
		
			
				|  |  | +                    <div class="custom-control custom-checkbox mb-2">
 | 
	
		
			
				|  |  | +                        <input type="checkbox" class="custom-control-input" id="sl_ignoreParent" checked="">
 | 
	
		
			
				|  |  | +                        <label class="custom-control-label" for="lc_same_code">计量台账-导入其他标段数据-忽略父项</label>
 | 
	
		
			
				|  |  | +                    </div>
 | 
	
		
			
				|  |  | +                </div>
 | 
	
		
			
				|  |  | +            </div>
 | 
	
		
			
				|  |  | +            <div class="modal-footer">
 | 
	
		
			
				|  |  | +                <button type="button" class="btn btn-sm btn-secondary" data-dismiss="modal">取消</button>
 | 
	
		
			
				|  |  | +                <button type="button" class="btn btn-sm btn-primary" onclick="post12()">确认修改</button>
 | 
	
		
			
				|  |  | +            </div>
 | 
	
		
			
				|  |  | +        </div>
 | 
	
		
			
				|  |  | +    </div>
 | 
	
		
			
				|  |  | +</div>
 | 
	
		
			
				|  |  |  <script>
 | 
	
		
			
				|  |  |      const accountGroup = JSON.parse(unescape('<%- escape(JSON.stringify(accountGroup)) %>'));
 | 
	
		
			
				|  |  |      const accountList = JSON.parse(unescape('<%- escape(JSON.stringify(accountList)) %>'));
 | 
	
	
		
			
				|  | @@ -1802,6 +1823,24 @@
 | 
	
		
			
				|  |  |              $('#bd-set-10').modal('hide');
 | 
	
		
			
				|  |  |          });
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  | +    const loadLedgerCheckProperty = function () {
 | 
	
		
			
				|  |  | +        $('#lc_same_code')[0].checked = property.sum_load.ignoreParent;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +    $('#bd-set-12').on('show.bs.modal', function () {
 | 
	
		
			
				|  |  | +        loadFunRelaProperty();
 | 
	
		
			
				|  |  | +    });
 | 
	
		
			
				|  |  | +    function post12 () {
 | 
	
		
			
				|  |  | +        const prop = {
 | 
	
		
			
				|  |  | +            sum_load: {
 | 
	
		
			
				|  |  | +                ignoreParent: $('#sl_ignoreParent')[0].checked,
 | 
	
		
			
				|  |  | +            },
 | 
	
		
			
				|  |  | +        };
 | 
	
		
			
				|  |  | +        const tenderId = window.location.pathname.split('/')[2];
 | 
	
		
			
				|  |  | +        postData('/tender/' + tenderId + '/save2', prop, function (data) {
 | 
	
		
			
				|  |  | +            property.sum_load = data.sum_load;
 | 
	
		
			
				|  |  | +            $('#bd-set-12').modal('hide');
 | 
	
		
			
				|  |  | +        });
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |      $(function () {
 | 
	
		
			
				|  |  |          // 投资进度
 | 
	
		
			
				|  |  |          let timer2 = null;
 |