mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 20:03:20 +08:00
export object page: add setting for only main language (#5735)
This commit is contained in:
parent
6743ac5fda
commit
366a30a0e0
|
@ -377,6 +377,8 @@
|
|||
"regex": true,
|
||||
"sortByFS": true,
|
||||
"subtract": true,
|
||||
"formDefinition": true,
|
||||
"formImplementation": true,
|
||||
"freeMemory": true,
|
||||
"exitFromSQL": true,
|
||||
"multiply": true,
|
||||
|
|
|
@ -23,6 +23,7 @@ CLASS zcl_abapgit_gui_page_ex_object DEFINITION
|
|||
BEGIN OF c_id,
|
||||
object_type TYPE string VALUE 'object_type',
|
||||
object_name TYPE string VALUE 'object_name',
|
||||
only_main TYPE string VALUE 'only_main',
|
||||
END OF c_id.
|
||||
|
||||
CONSTANTS:
|
||||
|
@ -55,7 +56,12 @@ CLASS ZCL_ABAPGIT_GUI_PAGE_EX_OBJECT IMPLEMENTATION.
|
|||
METHOD constructor.
|
||||
super->constructor( ).
|
||||
CREATE OBJECT mo_validation_log.
|
||||
|
||||
CREATE OBJECT mo_form_data.
|
||||
mo_form_data->set(
|
||||
iv_key = c_id-only_main
|
||||
iv_val = abap_true ).
|
||||
|
||||
mo_form = get_form_schema( ).
|
||||
mo_form_util = zcl_abapgit_html_form_utils=>create( mo_form ).
|
||||
ENDMETHOD.
|
||||
|
@ -74,13 +80,16 @@ CLASS ZCL_ABAPGIT_GUI_PAGE_EX_OBJECT IMPLEMENTATION.
|
|||
METHOD export_object.
|
||||
DATA lv_object_type TYPE trobjtype.
|
||||
DATA lv_object_name TYPE sobj_name.
|
||||
DATA lv_only_main TYPE abap_bool.
|
||||
|
||||
lv_object_type = mo_form_data->get( c_id-object_type ).
|
||||
lv_object_name = mo_form_data->get( c_id-object_name ).
|
||||
lv_only_main = mo_form_data->get( c_id-only_main ).
|
||||
|
||||
zcl_abapgit_zip=>export_object(
|
||||
iv_object_type = lv_object_type
|
||||
iv_object_name = lv_object_name ).
|
||||
iv_main_language_only = lv_only_main
|
||||
iv_object_type = lv_object_type
|
||||
iv_object_name = lv_object_name ).
|
||||
ENDMETHOD.
|
||||
|
||||
|
||||
|
@ -97,8 +106,13 @@ CLASS ZCL_ABAPGIT_GUI_PAGE_EX_OBJECT IMPLEMENTATION.
|
|||
iv_label = 'Object Name'
|
||||
iv_name = c_id-object_name
|
||||
iv_required = abap_true
|
||||
iv_upper_case = abap_true
|
||||
)->command(
|
||||
iv_upper_case = abap_true ).
|
||||
|
||||
ro_form->checkbox(
|
||||
iv_label = 'Only Main Language'
|
||||
iv_name = c_id-only_main ).
|
||||
|
||||
ro_form->command(
|
||||
iv_label = 'Export'
|
||||
iv_cmd_type = zif_abapgit_html_form=>c_cmd_type-input_main
|
||||
iv_action = c_event-export
|
||||
|
|
|
@ -24,17 +24,18 @@ CLASS zcl_abapgit_zip DEFINITION
|
|||
zcx_abapgit_exception .
|
||||
CLASS-METHODS export_object
|
||||
IMPORTING
|
||||
iv_object_type TYPE trobjtype
|
||||
iv_object_name TYPE sobj_name
|
||||
!iv_object_type TYPE trobjtype
|
||||
!iv_object_name TYPE sobj_name
|
||||
!iv_main_language_only TYPE abap_bool DEFAULT abap_false
|
||||
RAISING
|
||||
zcx_abapgit_exception.
|
||||
zcx_abapgit_exception .
|
||||
CLASS-METHODS export_package
|
||||
IMPORTING
|
||||
iv_package TYPE devclass
|
||||
iv_folder_logic TYPE string
|
||||
iv_main_lang_only TYPE abap_bool
|
||||
!iv_package TYPE devclass
|
||||
!iv_folder_logic TYPE string
|
||||
!iv_main_lang_only TYPE abap_bool
|
||||
RAISING
|
||||
zcx_abapgit_exception.
|
||||
zcx_abapgit_exception .
|
||||
CLASS-METHODS load
|
||||
IMPORTING
|
||||
!iv_xstr TYPE xstring
|
||||
|
@ -77,7 +78,7 @@ ENDCLASS.
|
|||
|
||||
|
||||
|
||||
CLASS zcl_abapgit_zip IMPLEMENTATION.
|
||||
CLASS ZCL_ABAPGIT_ZIP IMPLEMENTATION.
|
||||
|
||||
|
||||
METHOD encode_files.
|
||||
|
@ -157,8 +158,10 @@ CLASS zcl_abapgit_zip IMPLEMENTATION.
|
|||
ls_files_item-item-obj_type = ls_tadir-object.
|
||||
ls_files_item-item-obj_name = ls_tadir-obj_name.
|
||||
|
||||
ls_files_item = zcl_abapgit_objects=>serialize( is_item = ls_files_item-item
|
||||
iv_language = sy-langu ).
|
||||
ls_files_item = zcl_abapgit_objects=>serialize(
|
||||
iv_main_language_only = iv_main_language_only
|
||||
is_item = ls_files_item-item
|
||||
iv_language = sy-langu ).
|
||||
|
||||
IF lines( ls_files_item-files ) = 0.
|
||||
zcx_abapgit_exception=>raise( 'Empty' ).
|
||||
|
|
Loading…
Reference in New Issue
Block a user