config.bc.jpa.domain.ModuleConfiguration.orm.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of broadleaf-common Show documentation
Show all versions of broadleaf-common Show documentation
A collection of classes shared by broadleaf profile, cms, admin, and core.
SELECT config FROM org.broadleafcommerce.common.config.domain.ModuleConfiguration config
WHERE config.configType = :configType
ORDER BY config.priority ASC
SELECT config FROM org.broadleafcommerce.common.config.domain.ModuleConfiguration config
WHERE config.configType = :configType
AND (config.archiveStatus.archived IS NULL OR config.archiveStatus.archived = 'N')
AND (config.activeStartDate IS NOT NULL AND config.activeStartDate < :currentDate)
AND (config.activeEndDate IS NULL OR config.activeEndDate > :currentDate)
ORDER BY config.priority ASC
UPDATE org.broadleafcommerce.common.config.domain.ModuleConfiguration config
SET config.isDefault = false
WHERE config.configType = :configType
© 2015 - 2024 Weber Informatics LLC | Privacy Policy