mirror of
https://github.com/abap2xlsx/abap2xlsx.git
synced 2025-05-05 11:06:15 +08:00
few more
This commit is contained in:
parent
eaea931778
commit
207bf54a54
|
@ -2176,10 +2176,8 @@ method BIND_ALV_OLE2.
|
||||||
clear: wa_subtot_indexs.
|
clear: wa_subtot_indexs.
|
||||||
read table lt_subtot_indexs into wa_subtot_indexs
|
read table lt_subtot_indexs into wa_subtot_indexs
|
||||||
with key index = l_save_index.
|
with key index = l_save_index.
|
||||||
IF sy-subrc = 0.
|
IF sy-subrc = 0 AND <item> = '0'.
|
||||||
if <item> = '0'.
|
clear: contentsitem-value.
|
||||||
clear: contentsitem-value.
|
|
||||||
endif.
|
|
||||||
ENDIF.
|
ENDIF.
|
||||||
endif.
|
endif.
|
||||||
endif.
|
endif.
|
||||||
|
@ -2422,17 +2420,15 @@ method BIND_ALV_OLE2.
|
||||||
read table currcells index counter into curritem2.
|
read table currcells index counter into curritem2.
|
||||||
if curritem-left eq curritem2-left.
|
if curritem-left eq curritem2-left.
|
||||||
length = curritem-top + curritem-rows.
|
length = curritem-top + curritem-rows.
|
||||||
if length eq curritem2-top.
|
if length eq curritem2-top and curritem-decimals eq curritem2-decimals.
|
||||||
if curritem-decimals eq curritem2-decimals.
|
move curritem to curritem3.
|
||||||
move curritem to curritem3.
|
curritem3-rows = curritem3-rows + curritem2-rows.
|
||||||
curritem3-rows = curritem3-rows + curritem2-rows.
|
curritem-left = -1.
|
||||||
curritem-left = -1.
|
modify currcells index sy-index from curritem.
|
||||||
modify currcells index sy-index from curritem.
|
curritem2-left = -1.
|
||||||
curritem2-left = -1.
|
modify currcells index counter from curritem2.
|
||||||
modify currcells index counter from curritem2.
|
append curritem3 to currcells.
|
||||||
append curritem3 to currcells.
|
found = 'X'.
|
||||||
found = 'X'.
|
|
||||||
endif.
|
|
||||||
endif.
|
endif.
|
||||||
endif.
|
endif.
|
||||||
enddo.
|
enddo.
|
||||||
|
@ -2460,17 +2456,15 @@ method BIND_ALV_OLE2.
|
||||||
if curritem-top eq curritem2-top and curritem-rows eq
|
if curritem-top eq curritem2-top and curritem-rows eq
|
||||||
curritem2-rows.
|
curritem2-rows.
|
||||||
length = curritem-left + curritem-columns.
|
length = curritem-left + curritem-columns.
|
||||||
if length eq curritem2-left.
|
if length eq curritem2-left and curritem-decimals eq curritem2-decimals.
|
||||||
if curritem-decimals eq curritem2-decimals.
|
move curritem to curritem3.
|
||||||
move curritem to curritem3.
|
curritem3-columns = curritem3-columns + curritem2-columns.
|
||||||
curritem3-columns = curritem3-columns + curritem2-columns.
|
curritem-left = -1.
|
||||||
curritem-left = -1.
|
modify currcells index sy-index from curritem.
|
||||||
modify currcells index sy-index from curritem.
|
curritem2-left = -1.
|
||||||
curritem2-left = -1.
|
modify currcells index counter from curritem2.
|
||||||
modify currcells index counter from curritem2.
|
append curritem3 to currcells.
|
||||||
append curritem3 to currcells.
|
found = 'X'.
|
||||||
found = 'X'.
|
|
||||||
endif.
|
|
||||||
endif.
|
endif.
|
||||||
endif.
|
endif.
|
||||||
enddo.
|
enddo.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user