@ind-rcg/modeler-sfdx-cli-plugin 246.1042.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +37 -0
- package/README.md +756 -0
- package/lib/commands/modeler/workspace/add.js +1 -0
- package/lib/commands/modeler/workspace/build.js +1 -0
- package/lib/commands/modeler/workspace/cleanup.js +1 -0
- package/lib/commands/modeler/workspace/create.js +1 -0
- package/lib/commands/modeler/workspace/package.js +1 -0
- package/lib/commands/modeler/workspace/refreshLocale.js +1 -0
- package/lib/commands/modeler/workspace/server/start.js +1 -0
- package/lib/commands/modeler/workspace/upgrade.js +1 -0
- package/lib/commands/modeler/workspace/utils/base64encode.js +1 -0
- package/lib/commands/modeler/workspace/utils/generateManifest.js +1 -0
- package/lib/commands/modeler/workspace/utils/migrateContracts.js +1 -0
- package/lib/commands/modeler/workspace/validate.js +1 -0
- package/lib/constants.js +1 -0
- package/lib/hooks/init/updateCheck.js +1 -0
- package/lib/model/buildStatus.js +1 -0
- package/lib/model/workspace.js +1 -0
- package/lib/model/workspaceCommand.js +1 -0
- package/lib/shared/commandBuilder.js +1 -0
- package/lib/shared/commandExecutor.js +1 -0
- package/lib/shared/commandOutput.js +1 -0
- package/lib/types/config.js +1 -0
- package/lib/types/errors.js +1 -0
- package/lib/types/messages.js +1 -0
- package/lib/types/package.js +1 -0
- package/lib/types/results.js +1 -0
- package/lib/utils/componentHelper.js +1 -0
- package/lib/utils/errorHelper.js +1 -0
- package/lib/utils/fsHelper.js +1 -0
- package/lib/utils/generateManifestHelper.js +1 -0
- package/lib/utils/messageHelper.js +1 -0
- package/lib/utils/packageHelper.js +1 -0
- package/lib/utils/serverHelper.js +1 -0
- package/lib/utils/templateEngine.js +1 -0
- package/lib/utils/templateHelper.js +1 -0
- package/lib/utils/updateChecker.js +1 -0
- package/lib/utils/validationHelper.js +1 -0
- package/messages/modeler-workspace-add.md +45 -0
- package/messages/modeler-workspace-build.md +29 -0
- package/messages/modeler-workspace-cleanup.md +17 -0
- package/messages/modeler-workspace-create.md +21 -0
- package/messages/modeler-workspace-package.md +21 -0
- package/messages/modeler-workspace-refresh-locale.md +27 -0
- package/messages/modeler-workspace-server-start.md +37 -0
- package/messages/modeler-workspace-upgrade.md +21 -0
- package/messages/modeler-workspace-utils-base64encode.md +25 -0
- package/messages/modeler-workspace-utils-generateManifest.md +15 -0
- package/messages/modeler-workspace-utils-migrateContracts.md +23 -0
- package/messages/modeler-workspace-validate.md +29 -0
- package/messages/modeler-workspace.md +19 -0
- package/oclif.manifest.json +429 -0
- package/package.json +108 -0
- package/templates/.gitignore.tmp +4 -0
- package/templates/README.md.tmp +77 -0
- package/templates/contractTemplates/#ModuleName#/BO/README.md +1 -0
- package/templates/contractTemplates/#ModuleName#/DS/README.md +1 -0
- package/templates/contractTemplates/#ModuleName#/PL/README.md +1 -0
- package/templates/contractTemplates/#ModuleName#/PR/README.md +1 -0
- package/templates/contractTemplates/#ModuleName#/TB/README.md +1 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Bo${NAME}.businessobject.xml +22 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/CreateAsync/Bo${NAME}.AfterCreateAsync.bl.js +54 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/CreateAsync/Bo${NAME}.BeforeCreateAsync.bl.js +56 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/DoValidateAsync/Bo${NAME}.AfterDoValidateAsync.bl.js +57 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/DoValidateAsync/Bo${NAME}.BeforeDoValidateAsync.bl.js +56 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/Initialize/Bo${NAME}.AfterInitialize.bl.js +54 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/Initialize/Bo${NAME}.BeforeInitialize.bl.js +54 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/LoadAsync/Bo${NAME}.AfterLoadAsync.bl.js +57 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/LoadAsync/Bo${NAME}.BeforeLoadAsync.bl.js +56 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/SaveAsync/Bo${NAME}.AfterSaveAsync.bl.js +57 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/Bo${NAME}/Mv2/SaveAsync/Bo${NAME}.BeforeSaveAsync.bl.js +56 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/BusinessObject.md +186 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectListObjectsListObjectEventsSnipp.xml +3 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectListObjectsListObjectSnipp.xml +1 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectNestedObjectsNestedObjectSnipp.xml +1 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectObjectLookupsObjectLookupEventsSnipp.xml +3 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectObjectLookupsObjectLookupSnipp.xml +1 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectSimplePropertiesSimplePropertyEventsSnipp.xml +3 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobject/snippets/BusinessObjectSimplePropertiesSimplePropertySnipp.xml +1 -0
- package/templates/contractTemplates/BO_BusinessObject/businessobjecthelper/snippets/BusinessObjectHelperSimplePropertiesSimplePropertySnipp.xml +1 -0
- package/templates/contractTemplates/BO_BusinessObject/validationmessages/ValidationMessage.md +38 -0
- package/templates/contractTemplates/BO_BusinessObject/validationmessages/snippets/ValidationMessagesValidationMessageSnipp.xml +1 -0
- package/templates/contractTemplates/DS_DataSource/DataSource.md +319 -0
- package/templates/contractTemplates/DS_DataSource/Ds${NAME}_sf.datasource.xml +11 -0
- package/templates/contractTemplates/DS_DataSource/snippets/DataSourceAttributesAttributeSnipp.xml +1 -0
- package/templates/contractTemplates/DS_DataSource/snippets/DataSourceAttributesDerivedAttributeSnipp.xml +1 -0
- package/templates/contractTemplates/DS_DataSource/snippets/DataSourceEntitiesEntityJoinSimpleJoinConditionAttributeSnipp.xml +1 -0
- package/templates/contractTemplates/DS_DataSource/snippets/DataSourceEntitiesEntityJoinSimpleJoinConditionLiteralSnipp.xml +1 -0
- package/templates/contractTemplates/DS_DataSource/snippets/DataSourceEntitiesEntitySnipp.xml +1 -0
- package/templates/contractTemplates/ExternalFiles/#Name#.externalfile.xml +6 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Li${NAME}.listitem.xml +5 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/ListItem.md +114 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/ListObject.md +354 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Lo${NAME}.listobject.xml +12 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/DoValidateAsync/Lo${NAME}.AfterDoValidateAsync.bl.js +57 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/DoValidateAsync/Lo${NAME}.BeforeDoValidateAsync.bl.js +56 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/LoadAsync/Lo${NAME}.AfterLoadAsync.bl.js +57 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/LoadAsync/Lo${NAME}.BeforeLoadAsync.bl.js +56 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/SaveAsync/Lo${NAME}.AfterSaveAsync.bl.js +57 -0
- package/templates/contractTemplates/LO_ListObject/Lo${NAME}/Mv2/SaveAsync/Lo${NAME}.BeforeSaveAsync.bl.js +56 -0
- package/templates/contractTemplates/LO_ListObject/snippets/ListItemSimplePropertiesSimplepropertySnipp.xml +1 -0
- package/templates/contractTemplates/LU_LookupObject/Lu${NAME}/LookupObject.md +97 -0
- package/templates/contractTemplates/LU_LookupObject/Lu${NAME}/Lu${NAME}.lookupobject.xml +12 -0
- package/templates/contractTemplates/LU_LookupObject/Lu${NAME}/Mv2/LoadAsync/Lu${NAME}.AfterLoadAsync.bl.js +57 -0
- package/templates/contractTemplates/LU_LookupObject/Lu${NAME}/Mv2/LoadAsync/Lu${NAME}.BeforeLoadAsync.bl.js +56 -0
- package/templates/contractTemplates/LU_LookupObject/snippets/LookupObjectSimplePropertiesSimplePropertySnipp.xml +1 -0
- package/templates/contractTemplates/PL_PrintLayout/#Name#PDF/#Name#PDF.printlayoutv2.xml +4 -0
- package/templates/contractTemplates/PR_Process_&_UI/#ModuleName#_#Name#/#ModuleName#_#Name#.userinterface.xml +4 -0
- package/templates/contractTemplates/PR_Process_&_UI/#ModuleName#_#Name#/#ModuleName#_#Name#Process.processflow.xml +12 -0
- package/templates/contractTemplates/PR_Process_&_UI/Process.md +790 -0
- package/templates/contractTemplates/PR_Process_&_UI/UserInterface.md +1545 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionConfirmSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionCreateSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionDecisionSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionEndSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionLoadSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionLogicSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionMasterDetailSnipp.xml +24 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionNavigationSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionPrintSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionPrintV2Snipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionProcessSnipp.xml +9 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionValidationSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessBodyActionsActionViewSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessEntryEntryActionsActionCreateSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessEntryEntryActionsActionLoadSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/Process/ProcessEntryEntryActionsActionLogicSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Attachment/AttachmentFolderInfoSectionSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Attachment/AttachmentFolderSnipp.xml +24 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Banner/BannerFilterSnipp.xml +19 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Banner/Banner_WithFilterSnipp.xml +25 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Banner/Banner_WithoutFilterSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BindingList/BindingsList_DecisionsSnipp.xml +9 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BindingList/BindingsList_GroupsSnipp.xml +11 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BindingList/BindingsList_ResultsSnipp.xml +13 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlEventsSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlHierarchyBindingsBindingAddItemSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlHierarchyBindingsBindingCategoriesSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlHierarchyBindingsBindingShowCategorySnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlHierarchyDataSourcesSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingButtonSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingComboSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingDateSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingDecimalSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingDynamicSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingImageSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingStepperSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingStepper_CorrelationIdSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsBindingTextSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsResourceImageSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsBindingsResourceLabelSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlItemsContextMenuSnipp.xml +13 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlSearchAttributesSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/BreadCrumbControlSnipp.xml +22 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/BreadCrumbControl/MultiSelectionBreadCrumbControlSnipp.xml +23 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlEventsSnipp.xml +11 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingDateSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingDecimalSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingImageSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingLabelSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlItemsBindingsBindingTextSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlSettingsSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Calendar/CalendarControlSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/CheckBox/CheckBoxEventsSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/CheckBox/CheckBoxSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Cockpit/CockpitSectionsSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/DataImportWizard/DataImportWizardSnipp.xml +12 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/DatePicker/DatePickerFieldSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/EmbededList/EmbeddedListSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/EnhanceDecisionList/EnhancedDecisionListSnipp.xml +52 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/FastEntry/FastDataEntryGridSnipp.xml +69 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GoogleMaps/GoogleMapDetailsSnipp.xml +20 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GoogleMaps/GoogleMapSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupElement/GroupElementSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedButtonList/GroupedButtonListEventsSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedButtonList/GroupedButtonListFooterSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedButtonList/GroupedButtonListSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedList/GroupedListEventsSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedList/GroupedListSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedList/MultiSelectionGroupedListEventsSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/GroupedList/MultiSelectionGroupedListSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ImageButton/ImageButtonSnipp.xml +10 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ImageSelector/ImageSelectorSnipp.xml +16 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/InputArea/InputAreaMultiLineSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/InputArea/InputAreaSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ItemListLayout/ItemListLayout_ComplexSnipp.xml +13 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ItemListLayout/ItemListLayout_GridSnipp.xml +10 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ItemListLayout/ItemListLayout_TwoRowsSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/LinkBar/LinkBarSnipp.xml +12 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Lookup/LookupEventSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Lookup/LookupSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaControl/MediaControlSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlBindingsBindingDescriptionSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlBindingsBindingIsTaggedSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlBindingsBindingMediaPathSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlBindingsBindingTypeSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlEventsSnipp.xml +4 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/MediaListControl/MediaListControlSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Menu/LongPressMenuSnipp.xml +8 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Menu/MenuItemSnipp.xml +9 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Merger/MergerOneInputControlTwoButtonsMaxSnipp.xml +2 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Merger/MergerTwoInputControlsCombinedSnipp.xml +2 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Merger/MergerTwoInputControlsNoneSnipp.xml +2 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Merger/MergerTwoInputControlsOwnSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/NoDataMessageSnipp.xml +9 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/MasterDetail/Page_MasterDetail_WithDetailGroupsSnipp.xml +43 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/MasterDetail/Page_MasterDetail_WithDetailListSnipp.xml +44 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/MasterDetail/Page_MasterDetail_WithDetailTabsSnipp.xml +61 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/MasterDetail/Page_MasterDetail_WithExtendedDetailSnipp.xml +44 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SingleSection/Page_SingleSectionScreens_GroupedElementsSnipp.xml +33 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SingleSection/Page_SingleSectionScreens_ListSnipp.xml +41 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SingleSection/Page_SingleSectionScreens_TabSnipp.xml +39 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SingleSection/Page_SingleSectionScreens_WizardSnipp.xml +34 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Page/SplitScreen/Page_SplitScreenSnipp.xml +27 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SelectionBox/SelectionBoxBindingSnipp.xml +13 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SelectionBox/SelectionBoxEventsSnipp.xml +4 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SelectionBox/SelectionBoxToggleSnipp.xml +13 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlBindingsBindingEditableParametersSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlBindingsBindingEditableSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlBindingsBindingVisibleParametersSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlBindingsBindingVisibleSnipp.xml +1 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlEditabilityRolesSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/SignatureControl/SignatureControlVisibilityRolesSnipp.xml +3 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/Stepper/StepperSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/TextBar/TextBarSnipp.xml +7 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/ThemeSelection/ThemeSelectionSnipp.xml +5 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/TimePicker/TimePickerFieldSnipp.xml +6 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/UserWelcomeSnipp.xml +24 -0
- package/templates/contractTemplates/PR_Process_&_UI/snippets/UI/VisitDetailsSnipp.xml +21 -0
- package/templates/contractTemplates/TB_Table/#Name#_T.temptable.xml +11 -0
- package/templates/contractTemplates/TB_Table/snippets/#Name#.dbtable.xml +10 -0
- package/templates/contractTemplates/TB_Table/snippets/dbtable/DBTablecolumnscolumnSnipp.xml +1 -0
- package/templates/contractTemplates/TB_Table/snippets/dbtable/DBTableindexesindexSnipp.xml +3 -0
- package/templates/contractTemplates/TB_Table/snippets/temptable/TempTableColumnsColumnIsDeletedSnipp.xml +1 -0
- package/templates/contractTemplates/TB_Table/snippets/temptable/TempTableColumnsColumnSnipp.xml +1 -0
- package/templates/contractTemplates/TB_Table/snippets/temptable/TempTableindexesindexSnipp.xml +3 -0
- package/templates/contractTemplates/UI_Plugins/#Name#UiPluginV2.uipluginv2.xml +16 -0
- package/templates/templateDefinitions.json +167 -0
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<Page pagePattern="SingleSectionPage" masterSectionFlex="4.6" detailSectionFlex="3.7" cachable="false">
|
|
2
|
+
<PageHeader>
|
|
3
|
+
<Bindings>
|
|
4
|
+
<Resource target="title" type="Label" id="${#id#}Id" defaultLabel="${#defaultLabel#}" bindingMode="ONE_TIME" />
|
|
5
|
+
</Bindings>
|
|
6
|
+
<MenuItems>
|
|
7
|
+
<MenuItem directlyVisible="true" itemId="${#itemId#}">
|
|
8
|
+
<Bindings>
|
|
9
|
+
<Resource target="Text" type="Label" id="${#id1#}Id" defaultLabel="${#defaultLabel1#}" />
|
|
10
|
+
<Resource target="Icon" type="Image" id="${#id2#}" />
|
|
11
|
+
</Bindings>
|
|
12
|
+
<Events>
|
|
13
|
+
<ButtonPressedEvent event="${#event#}Pressed">
|
|
14
|
+
<Params>
|
|
15
|
+
<Param name="buttonPressed" value="${#value#}" />
|
|
16
|
+
</Params>
|
|
17
|
+
</ButtonPressedEvent>
|
|
18
|
+
</Events>
|
|
19
|
+
</MenuItem>
|
|
20
|
+
</MenuItems>
|
|
21
|
+
</PageHeader>
|
|
22
|
+
<Section sectionName="masterSection" sectionPattern="SingleAreaSection">
|
|
23
|
+
<Area areaName="mainArea" areaPattern="SingleElementArea">
|
|
24
|
+
<GroupedList name="MasterList" searchable="${#searchable#}" groupBy="${#groupBy#}" sortBy="${#sortBy#}" master="true" dataSource="${#dataSource#}" direction="${#direction#}" indexBar="${#indexBar#}" swipe="${#swipe#}" hasBorder="${#hasBorder#}" onItemDisclosure="${#onItemDisclosure#}">
|
|
25
|
+
<Items name="Items" itemPattern="${#itemPattern#}">
|
|
26
|
+
<!-- ItemListLayout Node is required. Please press CTRL-Space to select an appropriate snippet<ItemListLayout></ItemListLayout>-->
|
|
27
|
+
<Bindings>
|
|
28
|
+
<Binding target="${#target#}" type="Text" binding="${#binding#}" bindingMode="ONE_WAY" />
|
|
29
|
+
</Bindings>
|
|
30
|
+
</Items>
|
|
31
|
+
<Events>
|
|
32
|
+
<ItemSelectedEvent event="itemSelected" resetMultiAreas="true">
|
|
33
|
+
<Params>
|
|
34
|
+
<Param name="${#name#}" value="${#value1#}" />
|
|
35
|
+
</Params>
|
|
36
|
+
</ItemSelectedEvent>
|
|
37
|
+
</Events>
|
|
38
|
+
</GroupedList>
|
|
39
|
+
</Area>
|
|
40
|
+
</Section>
|
|
41
|
+
</Page>
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
<Page pagePattern="SingleSectionPage" navigation="Off">
|
|
2
|
+
<ViewVariables>
|
|
3
|
+
<ViewVariable name="currentTabName" value="Tab1" />
|
|
4
|
+
</ViewVariables>
|
|
5
|
+
<PageHeader>
|
|
6
|
+
<Bindings>
|
|
7
|
+
<Resource target="title" type="Label" id="${#id#}Id" defaultLabel="${#defaultLabel#}" bindingMode="ONE_TIME" />
|
|
8
|
+
</Bindings>
|
|
9
|
+
</PageHeader>
|
|
10
|
+
<Section sectionName="masterSection" sectionPattern="TabbedViewAreaSection" currentTab="View::currentTabName">
|
|
11
|
+
<Area areaName="tabArea" areaPattern="TabElementArea">
|
|
12
|
+
<TabSelector name="TabSelector">
|
|
13
|
+
<Items>
|
|
14
|
+
<Tab tabName="Tab1" backendSystem="${#backendSystem#}">
|
|
15
|
+
<Bindings>
|
|
16
|
+
<Resource target="image" type="Image" id="${#id1#}" bindingMode="ONE_TIME" />
|
|
17
|
+
<Resource target="text" type="Label" id="${#id2#}Id" defaultLabel="${#defaultLabel1#}" bindingMode="ONE_TIME" />
|
|
18
|
+
</Bindings>
|
|
19
|
+
</Tab>
|
|
20
|
+
<Tab tabName="Tab2" backendSystem="${#backendSystem1#}">
|
|
21
|
+
<Bindings>
|
|
22
|
+
<Resource target="image" type="Image" id="${#id3#}" bindingMode="ONE_TIME" />
|
|
23
|
+
<Resource target="text" type="Label" id="${#id4#}Id" defaultLabel="${#defaultLabel2#}" bindingMode="ONE_TIME" />
|
|
24
|
+
</Bindings>
|
|
25
|
+
</Tab>
|
|
26
|
+
</Items>
|
|
27
|
+
<Events>
|
|
28
|
+
<ItemSelectedEvent event="tabSelected" storeTabNameIn="currentTabName" />
|
|
29
|
+
</Events>
|
|
30
|
+
</TabSelector>
|
|
31
|
+
</Area>
|
|
32
|
+
<Area areaName="Tab1" areaPattern="SingleElementArea">
|
|
33
|
+
|
|
34
|
+
</Area>
|
|
35
|
+
<Area areaName="Tab2" areaPattern="SingleElementArea">
|
|
36
|
+
|
|
37
|
+
</Area>
|
|
38
|
+
</Section>
|
|
39
|
+
</Page>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<Page pagePattern="SingleSectionDialogPage" navigation="Off" onBackDiscard="true">
|
|
2
|
+
<PageHeader>
|
|
3
|
+
<Bindings>
|
|
4
|
+
<Resource target="title" type="Label" id="${#id#}Id" defaultLabel="${#defaultLabel#}" bindingMode="ONE_TIME" />
|
|
5
|
+
</Bindings>
|
|
6
|
+
<MenuItems>
|
|
7
|
+
<MenuItem directlyVisible="true" itemId="${#itemId#}">
|
|
8
|
+
<Bindings>
|
|
9
|
+
<Resource target="Text" type="Label" id="${#id1#}Id" defaultLabel="${#defaultLabel1#}" />
|
|
10
|
+
<Resource target="Icon" type="Image" id="${#id2#}" />
|
|
11
|
+
</Bindings>
|
|
12
|
+
<Events>
|
|
13
|
+
<ButtonPressedEvent event="${#event#}Pressed">
|
|
14
|
+
<Params>
|
|
15
|
+
<Param name="buttonPressed" value="${#value#}" />
|
|
16
|
+
</Params>
|
|
17
|
+
</ButtonPressedEvent>
|
|
18
|
+
</Events>
|
|
19
|
+
</MenuItem>
|
|
20
|
+
</MenuItems>
|
|
21
|
+
</PageHeader>
|
|
22
|
+
<Section sectionName="masterSection" sectionPattern="SingleAreaSection">
|
|
23
|
+
<Area areaName="mainArea" areaPattern="GroupedElementsArea">
|
|
24
|
+
<GroupElement name="${#name#}">
|
|
25
|
+
<InputArea name="${#name1#}">
|
|
26
|
+
<Bindings>
|
|
27
|
+
<Resource target="Label" type="Label" defaultLabel="${#defaultLabel3#}" id="${#id3#}Id" />
|
|
28
|
+
<Binding target="Value" type="${#type#}" binding="${#binding#}" bindingMode="TWO_WAY" />
|
|
29
|
+
</Bindings>
|
|
30
|
+
</InputArea>
|
|
31
|
+
</GroupElement>
|
|
32
|
+
</Area>
|
|
33
|
+
</Section>
|
|
34
|
+
</Page>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<Page pagePattern="SplitScreenPage" leftSectionFlex="${#leftSectionFlex#}" rightSectionFlex="${#rightSectionFlex#}">
|
|
2
|
+
<PageHeader>
|
|
3
|
+
<Bindings>
|
|
4
|
+
<Resource target="title" type="Label" id="${#id#}Id" defaultLabel="${#defaultLabel#}" bindingMode="ONE_TIME" />
|
|
5
|
+
</Bindings>
|
|
6
|
+
<SplitScreenButtons>
|
|
7
|
+
<LeftSectionButton>
|
|
8
|
+
<Bindings>
|
|
9
|
+
<Resource target="Text" type="Label" id="${#id1#}Id" defaultLabel="${#defaultLabel1#}" />
|
|
10
|
+
<Resource target="Icon" type="Image" id="${#id2#}" />
|
|
11
|
+
</Bindings>
|
|
12
|
+
</LeftSectionButton>
|
|
13
|
+
<RightSectionButton>
|
|
14
|
+
<Bindings>
|
|
15
|
+
<Resource target="Text" type="Label" id="${#id3#}Id" defaultLabel="${#defaultLabel2#}" />
|
|
16
|
+
<Resource target="Icon" type="Image" id="${#id4#}" />
|
|
17
|
+
</Bindings>
|
|
18
|
+
</RightSectionButton>
|
|
19
|
+
</SplitScreenButtons>
|
|
20
|
+
</PageHeader>
|
|
21
|
+
<Section sectionName="leftSection" sectionPattern="${#sectionPattern#}" >
|
|
22
|
+
|
|
23
|
+
</Section>
|
|
24
|
+
<Section sectionName="rightSection" sectionPattern="${#sectionPattern1#}" >
|
|
25
|
+
|
|
26
|
+
</Section>
|
|
27
|
+
</Page>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<SelectionBox name="${#name#}">
|
|
2
|
+
<Bindings>
|
|
3
|
+
<Resource target="Label" type="Label" id="${#id#}Id" defaultLabel="${#defaultLabel#}" />
|
|
4
|
+
<Binding target="DataSource" binding="${#binding1#}" bindingMode="TWO_WAY" />
|
|
5
|
+
<Binding target="Value" binding="${#binding#}" bindingMode="TWO_WAY" />
|
|
6
|
+
</Bindings>
|
|
7
|
+
<Items>
|
|
8
|
+
<Bindings>
|
|
9
|
+
<Binding target="ItemValue" type="Text" binding=".id" bindingMode="ONE_WAY" />
|
|
10
|
+
<Binding target="ItemText" type="Text" binding=".text" bindingMode="ONE_WAY" />
|
|
11
|
+
</Bindings>
|
|
12
|
+
</Items>
|
|
13
|
+
</SelectionBox>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<SelectionBox name="${#name#}">
|
|
2
|
+
<Bindings>
|
|
3
|
+
<Resource target="Label" type="Label" id="${#id#}Id" defaultLabel="${#defaultLabel#}" />
|
|
4
|
+
<Binding target="DataSource" toggleId="${#toggleId#}" bindingMode="TWO_WAY" />
|
|
5
|
+
<Binding target="Value" binding="${#binding#}" bindingMode="TWO_WAY" />
|
|
6
|
+
</Bindings>
|
|
7
|
+
<Items>
|
|
8
|
+
<Bindings>
|
|
9
|
+
<Binding target="ItemValue" type="Text" binding=".id" bindingMode="ONE_WAY" />
|
|
10
|
+
<Binding target="ItemText" type="Text" binding=".text" bindingMode="ONE_WAY" />
|
|
11
|
+
</Bindings>
|
|
12
|
+
</Items>
|
|
13
|
+
</SelectionBox>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<Binding type="Editable" target="Editable" binding="${#binding#}" />
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<Binding type="Visible" target="Visible" binding="${#binding#}" />
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<SignatureControl name="${#name#}">
|
|
2
|
+
<Bindings>
|
|
3
|
+
<Resource target="text" type="Label" id="${#id#}Id" defaultLabel="${#defaultLabel#}" bindingMode="ONE_TIME" />
|
|
4
|
+
<Binding target="MediaPath" type="Text" binding="${#binding#}" bindingMode="ONE_WAY" />
|
|
5
|
+
</Bindings>
|
|
6
|
+
</SignatureControl>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<Stepper name="${#name#}">
|
|
2
|
+
<Bindings>
|
|
3
|
+
<Resource target="Label" type="Label" defaultLabel="${#defaultLabel#}" id="${#id#}Id" />
|
|
4
|
+
<Binding target="Value" type="${#type#}" binding="${#binding#}" bindingMode="ONE_WAY" format="${#format#}" />
|
|
5
|
+
<Binding target="StepSize" value="${#value#}" />
|
|
6
|
+
</Bindings>
|
|
7
|
+
</Stepper>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<TextBar name="${#name#}">
|
|
2
|
+
<Bindings>
|
|
3
|
+
<Binding target="backgroundColor" type="Color" binding="${#backgroundColor#}" bindingMode="ONE_WAY"/>
|
|
4
|
+
<Binding target="fontColor" type="Color" binding="${#fontColor#}" bindingMode="ONE_WAY"/>
|
|
5
|
+
<Binding target="text" type="Text" binding="${#text#}" bindingMode="ONE_WAY" />
|
|
6
|
+
</Bindings>
|
|
7
|
+
</TextBar>
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
<UserWelcome name="${#componentName#}">
|
|
2
|
+
<Bindings>
|
|
3
|
+
<!-- mandatory bindings -->
|
|
4
|
+
<Binding target="userImage" type="Blob" binding="${#userImage#}" />
|
|
5
|
+
<Binding target="userName" type="Text" binding="${#userName#}" bindingMode="ONE_WAY" />
|
|
6
|
+
<Resource target="userMessage" type="Label" id="${#userMessage#}" defaultLabel="${#userMessageDefault#}" />
|
|
7
|
+
<Resource target="userDefaultImage" type="Image" id="${#userDefaultImage#}" />
|
|
8
|
+
<Binding target="selectedDate" type="Text" binding="${#selectedDate#}" bindingMode="ONE_WAY" />
|
|
9
|
+
<Resource target="previousDayIcon" type="Image" id="${#previousDayIcon#}" defaultImage="ChevronLeft" />
|
|
10
|
+
<Resource target="nextDayIcon" type="Image" id="${#nextDayIcon#}" defaultImage="ChevronRight" />
|
|
11
|
+
<Resource target="previousDayOnTouchIcon" type="Image" id="${#previousDayOnTouchIcon#}" defaultImage="ChevronLeftPressed" />
|
|
12
|
+
<Resource target="nextDayOnTouchIcon" type="Image" id="${#nextDayOnTouchIcon#}" defaultImage="ChevronRightPressed" />
|
|
13
|
+
<Resource target="todayIcon" type="Image" id="${#todayIcon#}" defaultImage="TodayIcon" />
|
|
14
|
+
<Resource target="todayLabel" type="Label" id="${#todayLabel#}" defaultLabel="Today" />
|
|
15
|
+
<!-- optional bindings -->
|
|
16
|
+
<Resource target="value1Label" type="Label" id="${#label1#}" defaultLabel="${#label1Default#}" />
|
|
17
|
+
<Binding target="value1Count" type="Text" binding="${#value1#}" bindingMode="ONE_WAY" />
|
|
18
|
+
<Resource target="value2Label" type="Label" id="${#label2#}" defaultLabel="${#label2Default#}" />
|
|
19
|
+
<Binding target="value2Count" type="Text" binding="${#value2#}" bindingMode="ONE_WAY" />
|
|
20
|
+
<Resource target="value3Label" type="Label" id="${#label3#}" defaultLabel="${#label3Default#}" />
|
|
21
|
+
<Binding target="value3Count" type="Text" binding="${#value3#}" bindingMode="ONE_WAY" />
|
|
22
|
+
<Binding target="isTourUser" type="Bool" binding="${#isTourUser#}" bindingMode="ONE_WAY" />
|
|
23
|
+
</Bindings>
|
|
24
|
+
</UserWelcome>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<VisitDetails name="${#componentName#}">
|
|
2
|
+
<Bindings>
|
|
3
|
+
<!-- mandatory bindings -->
|
|
4
|
+
<Binding target="visitStatus" type="Text" binding="${#visitStatus#}" bindingMode="ONE_WAY" />
|
|
5
|
+
<Binding target="visitPriority" type="Text" binding="${#visitPriority#}" bindingMode="ONE_WAY" />
|
|
6
|
+
<Binding target="visitDate" type="DomDate" binding="${#visitDate#}" bindingMode="ONE_WAY" />
|
|
7
|
+
<Binding target="plannedStartTime" type="DomTime" binding="${#plannedStartTime#}" bindingMode="ONE_WAY" />
|
|
8
|
+
<Binding target="plannedEndTime" type="DomTime" binding="${#plannedEndTime#}" bindingMode="ONE_WAY" />
|
|
9
|
+
<Binding target="actualStartDate" type="DomDate" binding="${#actualStartDate#}" bindingMode="ONE_WAY" />
|
|
10
|
+
<Binding target="actualStartTime" type="DomTime" binding="${#actualStartTime#}" bindingMode="ONE_WAY" />
|
|
11
|
+
<Binding target="actualEndDate" type="DomDate" binding="${#actualEndDate#}" bindingMode="ONE_WAY" />
|
|
12
|
+
<Binding target="actualEndTime" type="DomTime" binding="${#actualEndTime#}" bindingMode="ONE_WAY" />
|
|
13
|
+
<Binding target="Duration" type="Text" binding="${#Duration#}" bindingMode="ONE_WAY" />
|
|
14
|
+
<Resource target="visitStatusLabel" type="Label" id="${#visitStatusLabel#}" defaultLabel="Status" />
|
|
15
|
+
<Resource target="visitPriorityLabel" type="Label" id="${#visitPriorityLabel#}" defaultLabel="Priority" />
|
|
16
|
+
<Resource target="visitDateLabel" type="Label" id="${#visitDateLabel#}" defaultLabel="Visit Date" />
|
|
17
|
+
<Resource target="plannedTimeLabel" type="Label" id="${#plannedTimeLabel#}" defaultLabel="Planned Time" />
|
|
18
|
+
<Resource target="actualTimeLabel" type="Label" id="${#actualTimeLabel#}" defaultLabel="Actual Time" />
|
|
19
|
+
<Resource target="durationLabel" type="Label" id="${#durationLabel#}" defaultLabel="Duration Effective" />
|
|
20
|
+
</Bindings>
|
|
21
|
+
</VisitDetails>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<TempTable name="${#Name#}_T" schemaVersion="">
|
|
2
|
+
<columns>
|
|
3
|
+
<column name="isDeleted" domain="DomBool" />
|
|
4
|
+
<column name="" domain="" defaultValue="" nullable="" migrationDefault="" />
|
|
5
|
+
</columns>
|
|
6
|
+
<indexes>
|
|
7
|
+
<index name="">
|
|
8
|
+
<column name="" />
|
|
9
|
+
</index>
|
|
10
|
+
</indexes>
|
|
11
|
+
</TempTable>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<column name="${#name#}" defaultValue="' '" nullable="true" domain="${#domain#}" migrationDefault=" "/>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<column name="isDeleted" domain="DomBool"/>
|
package/templates/contractTemplates/TB_Table/snippets/temptable/TempTableColumnsColumnSnipp.xml
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<column name="${#name#}" defaultValue="' '" nullable="true" domain="${#domain#}" migrationDefault=" "/>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<UIPluginV2 name="${#name#}UiPluginV2">
|
|
2
|
+
<Interface>
|
|
3
|
+
<Property id="PropertyId" />
|
|
4
|
+
<List id="ListId">
|
|
5
|
+
<Property id="ListPropertyId" />
|
|
6
|
+
</List>
|
|
7
|
+
</Interface>
|
|
8
|
+
<Labels></Labels>
|
|
9
|
+
<Libraries></Libraries>
|
|
10
|
+
<UIComponentHTML name="UIComponentHTML"><![CDATA[
|
|
11
|
+
]]></UIComponentHTML>
|
|
12
|
+
<UIComponentCSS name="UIComponentCSS"><![CDATA[
|
|
13
|
+
]]></UIComponentCSS>
|
|
14
|
+
<UIComponentJS name="UIComponentJS"><![CDATA[
|
|
15
|
+
]]></UIComponentJS>
|
|
16
|
+
</UIPluginV2>
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
{
|
|
2
|
+
"module": {
|
|
3
|
+
"moduleRequired": false,
|
|
4
|
+
"options": [
|
|
5
|
+
{
|
|
6
|
+
"name": "standard module",
|
|
7
|
+
"parameters": {
|
|
8
|
+
"NAME" : "${CUSTOM}${NAME}"
|
|
9
|
+
},
|
|
10
|
+
"resources": [
|
|
11
|
+
{
|
|
12
|
+
"type": "folder",
|
|
13
|
+
"target": "${NAME}/BO"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"type": "folder",
|
|
17
|
+
"target": "${NAME}/DS"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"type": "folder",
|
|
21
|
+
"target": "${NAME}/PL"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"type": "folder",
|
|
25
|
+
"target": "${NAME}/PR"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"type": "folder",
|
|
29
|
+
"target": "${NAME}/TB"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
"businessobject": {
|
|
36
|
+
"moduleRequired": true,
|
|
37
|
+
"options": [
|
|
38
|
+
{
|
|
39
|
+
"name": "businessobject with datasource",
|
|
40
|
+
"parameters": {
|
|
41
|
+
"NAME": {
|
|
42
|
+
"fn" : "getResourceName",
|
|
43
|
+
"args" : ["${TYPE}", "${NAME}", "${CUSTOM}"]
|
|
44
|
+
},
|
|
45
|
+
"FULL_NAME": "Bo${NAME}",
|
|
46
|
+
"DATASOURCE_REFERENCE": ""
|
|
47
|
+
},
|
|
48
|
+
"resources": [
|
|
49
|
+
{
|
|
50
|
+
"type": "tree",
|
|
51
|
+
"source": "BO_BusinessObject/businessobject/Bo${NAME}",
|
|
52
|
+
"target": "${MODULE}/BO/${FULL_NAME}"
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
"includes": [
|
|
56
|
+
{
|
|
57
|
+
"name": "simple datasource",
|
|
58
|
+
"parameters": {
|
|
59
|
+
"TYPE": "datasource",
|
|
60
|
+
"MODULE": "${MODULE}",
|
|
61
|
+
"NAME": "${FULL_NAME}",
|
|
62
|
+
"REFERENCE_OBJECT": "${FULL_NAME}"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
]
|
|
66
|
+
}
|
|
67
|
+
]
|
|
68
|
+
},
|
|
69
|
+
"listobject": {
|
|
70
|
+
"moduleRequired": true,
|
|
71
|
+
"options": [
|
|
72
|
+
{
|
|
73
|
+
"name": "listobject with datasource",
|
|
74
|
+
"parameters": {
|
|
75
|
+
"NAME": {
|
|
76
|
+
"fn" : "getResourceName",
|
|
77
|
+
"args" : ["${TYPE}", "${NAME}", "${CUSTOM}"]
|
|
78
|
+
},
|
|
79
|
+
"FULL_NAME": "Lo${NAME}",
|
|
80
|
+
"DATASOURCE_REFERENCE": ""
|
|
81
|
+
},
|
|
82
|
+
"resources": [
|
|
83
|
+
{
|
|
84
|
+
"type": "tree",
|
|
85
|
+
"source": "LO_Listobject/Lo${NAME}",
|
|
86
|
+
"target": "${MODULE}/BO/${FULL_NAME}"
|
|
87
|
+
}
|
|
88
|
+
],
|
|
89
|
+
"includes": [
|
|
90
|
+
{
|
|
91
|
+
"name": "simple datasource",
|
|
92
|
+
"parameters": {
|
|
93
|
+
"TYPE": "datasource",
|
|
94
|
+
"MODULE": "${MODULE}",
|
|
95
|
+
"NAME": "${FULL_NAME}",
|
|
96
|
+
"REFERENCE_OBJECT": "${FULL_NAME}"
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
]
|
|
100
|
+
}
|
|
101
|
+
]
|
|
102
|
+
},
|
|
103
|
+
"lookupobject": {
|
|
104
|
+
"moduleRequired": true,
|
|
105
|
+
"options": [
|
|
106
|
+
{
|
|
107
|
+
"name": "lookupobject with datasource",
|
|
108
|
+
"parameters": {
|
|
109
|
+
"NAME": {
|
|
110
|
+
"fn" : "getResourceName",
|
|
111
|
+
"args" : ["${TYPE}", "${NAME}", "${CUSTOM}"]
|
|
112
|
+
},
|
|
113
|
+
"FULL_NAME": "Lu${NAME}",
|
|
114
|
+
"DATASOURCE_REFERENCE": ""
|
|
115
|
+
},
|
|
116
|
+
"resources": [
|
|
117
|
+
{
|
|
118
|
+
"type": "tree",
|
|
119
|
+
"source": "LU_LookupObject/Lu${NAME}",
|
|
120
|
+
"target": "${MODULE}/BO/${FULL_NAME}"
|
|
121
|
+
}
|
|
122
|
+
],
|
|
123
|
+
"includes": [
|
|
124
|
+
{
|
|
125
|
+
"name": "simple datasource",
|
|
126
|
+
"parameters": {
|
|
127
|
+
"TYPE": "datasource",
|
|
128
|
+
"MODULE": "${MODULE}",
|
|
129
|
+
"NAME": "${FULL_NAME}",
|
|
130
|
+
"REFERENCE_OBJECT": "${FULL_NAME}"
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
]
|
|
134
|
+
}
|
|
135
|
+
]
|
|
136
|
+
},
|
|
137
|
+
"datasource": {
|
|
138
|
+
"moduleRequired": true,
|
|
139
|
+
"options": [
|
|
140
|
+
{
|
|
141
|
+
"name": "simple datasource",
|
|
142
|
+
"parameters": {
|
|
143
|
+
"NAME": {
|
|
144
|
+
"fn" : "getResourceName",
|
|
145
|
+
"args" : ["${TYPE}", "${NAME}", "${CUSTOM}"]
|
|
146
|
+
},
|
|
147
|
+
"REFERENCE_OBJECT": "${NAME}",
|
|
148
|
+
"FULL_NAME": "Ds${NAME}"
|
|
149
|
+
},
|
|
150
|
+
"returnParameters": {
|
|
151
|
+
"DATASOURCE_REFERENCE": "${FULL_NAME}"
|
|
152
|
+
},
|
|
153
|
+
"resources": [
|
|
154
|
+
{
|
|
155
|
+
"type": "folder",
|
|
156
|
+
"target": "${MODULE}/DS"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"type": "file",
|
|
160
|
+
"source": "DS_DataSource/Ds${NAME}_sf.datasource.xml",
|
|
161
|
+
"target": "${MODULE}/DS/${FULL_NAME}_sf.datasource.xml"
|
|
162
|
+
}
|
|
163
|
+
]
|
|
164
|
+
}
|
|
165
|
+
]
|
|
166
|
+
}
|
|
167
|
+
}
|