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,
|
"regex": true,
|
||||||
"sortByFS": true,
|
"sortByFS": true,
|
||||||
"subtract": true,
|
"subtract": true,
|
||||||
|
"formDefinition": true,
|
||||||
|
"formImplementation": true,
|
||||||
"freeMemory": true,
|
"freeMemory": true,
|
||||||
"exitFromSQL": true,
|
"exitFromSQL": true,
|
||||||
"multiply": true,
|
"multiply": true,
|
||||||
|
|
|
@ -23,6 +23,7 @@ CLASS zcl_abapgit_gui_page_ex_object DEFINITION
|
||||||
BEGIN OF c_id,
|
BEGIN OF c_id,
|
||||||
object_type TYPE string VALUE 'object_type',
|
object_type TYPE string VALUE 'object_type',
|
||||||
object_name TYPE string VALUE 'object_name',
|
object_name TYPE string VALUE 'object_name',
|
||||||
|
only_main TYPE string VALUE 'only_main',
|
||||||
END OF c_id.
|
END OF c_id.
|
||||||
|
|
||||||
CONSTANTS:
|
CONSTANTS:
|
||||||
|
@ -55,7 +56,12 @@ CLASS ZCL_ABAPGIT_GUI_PAGE_EX_OBJECT IMPLEMENTATION.
|
||||||
METHOD constructor.
|
METHOD constructor.
|
||||||
super->constructor( ).
|
super->constructor( ).
|
||||||
CREATE OBJECT mo_validation_log.
|
CREATE OBJECT mo_validation_log.
|
||||||
|
|
||||||
CREATE OBJECT mo_form_data.
|
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 = get_form_schema( ).
|
||||||
mo_form_util = zcl_abapgit_html_form_utils=>create( mo_form ).
|
mo_form_util = zcl_abapgit_html_form_utils=>create( mo_form ).
|
||||||
ENDMETHOD.
|
ENDMETHOD.
|
||||||
|
@ -74,13 +80,16 @@ CLASS ZCL_ABAPGIT_GUI_PAGE_EX_OBJECT IMPLEMENTATION.
|
||||||
METHOD export_object.
|
METHOD export_object.
|
||||||
DATA lv_object_type TYPE trobjtype.
|
DATA lv_object_type TYPE trobjtype.
|
||||||
DATA lv_object_name TYPE sobj_name.
|
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_type = mo_form_data->get( c_id-object_type ).
|
||||||
lv_object_name = mo_form_data->get( c_id-object_name ).
|
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(
|
zcl_abapgit_zip=>export_object(
|
||||||
iv_object_type = lv_object_type
|
iv_main_language_only = lv_only_main
|
||||||
iv_object_name = lv_object_name ).
|
iv_object_type = lv_object_type
|
||||||
|
iv_object_name = lv_object_name ).
|
||||||
ENDMETHOD.
|
ENDMETHOD.
|
||||||
|
|
||||||
|
|
||||||
|
@ -97,8 +106,13 @@ CLASS ZCL_ABAPGIT_GUI_PAGE_EX_OBJECT IMPLEMENTATION.
|
||||||
iv_label = 'Object Name'
|
iv_label = 'Object Name'
|
||||||
iv_name = c_id-object_name
|
iv_name = c_id-object_name
|
||||||
iv_required = abap_true
|
iv_required = abap_true
|
||||||
iv_upper_case = abap_true
|
iv_upper_case = abap_true ).
|
||||||
)->command(
|
|
||||||
|
ro_form->checkbox(
|
||||||
|
iv_label = 'Only Main Language'
|
||||||
|
iv_name = c_id-only_main ).
|
||||||
|
|
||||||
|
ro_form->command(
|
||||||
iv_label = 'Export'
|
iv_label = 'Export'
|
||||||
iv_cmd_type = zif_abapgit_html_form=>c_cmd_type-input_main
|
iv_cmd_type = zif_abapgit_html_form=>c_cmd_type-input_main
|
||||||
iv_action = c_event-export
|
iv_action = c_event-export
|
||||||
|
|
|
@ -24,17 +24,18 @@ CLASS zcl_abapgit_zip DEFINITION
|
||||||
zcx_abapgit_exception .
|
zcx_abapgit_exception .
|
||||||
CLASS-METHODS export_object
|
CLASS-METHODS export_object
|
||||||
IMPORTING
|
IMPORTING
|
||||||
iv_object_type TYPE trobjtype
|
!iv_object_type TYPE trobjtype
|
||||||
iv_object_name TYPE sobj_name
|
!iv_object_name TYPE sobj_name
|
||||||
|
!iv_main_language_only TYPE abap_bool DEFAULT abap_false
|
||||||
RAISING
|
RAISING
|
||||||
zcx_abapgit_exception.
|
zcx_abapgit_exception .
|
||||||
CLASS-METHODS export_package
|
CLASS-METHODS export_package
|
||||||
IMPORTING
|
IMPORTING
|
||||||
iv_package TYPE devclass
|
!iv_package TYPE devclass
|
||||||
iv_folder_logic TYPE string
|
!iv_folder_logic TYPE string
|
||||||
iv_main_lang_only TYPE abap_bool
|
!iv_main_lang_only TYPE abap_bool
|
||||||
RAISING
|
RAISING
|
||||||
zcx_abapgit_exception.
|
zcx_abapgit_exception .
|
||||||
CLASS-METHODS load
|
CLASS-METHODS load
|
||||||
IMPORTING
|
IMPORTING
|
||||||
!iv_xstr TYPE xstring
|
!iv_xstr TYPE xstring
|
||||||
|
@ -77,7 +78,7 @@ ENDCLASS.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
CLASS zcl_abapgit_zip IMPLEMENTATION.
|
CLASS ZCL_ABAPGIT_ZIP IMPLEMENTATION.
|
||||||
|
|
||||||
|
|
||||||
METHOD encode_files.
|
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_type = ls_tadir-object.
|
||||||
ls_files_item-item-obj_name = ls_tadir-obj_name.
|
ls_files_item-item-obj_name = ls_tadir-obj_name.
|
||||||
|
|
||||||
ls_files_item = zcl_abapgit_objects=>serialize( is_item = ls_files_item-item
|
ls_files_item = zcl_abapgit_objects=>serialize(
|
||||||
iv_language = sy-langu ).
|
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.
|
IF lines( ls_files_item-files ) = 0.
|
||||||
zcx_abapgit_exception=>raise( 'Empty' ).
|
zcx_abapgit_exception=>raise( 'Empty' ).
|
||||||
|
|
Loading…
Reference in New Issue
Block a user