Filter StoreScp AND QueryRetrieveScp

I've been dating Orthanc for some time and I want to start migrating my DCM4CHEE to this great project.

I have a dulvida that I did not see answers or relevant comments about what I have inside the DCM4CHEE to create a certain filter by AETITLE, my colleagues from hospitals do not see studies of other separated to stay organized, with DCM4CHEE create a configuration in a file cfindrq .xls

According to this article link:
Https://groups.google.com/forum/#!topic/dcm4che/X43VjG8Pi1E

We created a certain model.
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform&quot; version="1.0">
  <xsl:output method="xml" indent="no"/>
  <!-- overwritten by application with actual values -->
  <xsl:param name="calling" select="'SAMPLE_MOD'"/>
  <xsl:param name="called" select="'DCM4CHEE'"/>
  <xsl:param name="date" select="'20051206'"/>
  <xsl:param name="time" select="'115600.000'"/>
  <xsl:template match="/">
    <dataset>
            <xsl:if test="$called = 'AACA'">
                <attr tag="00080080" vr="LO"><xsl:text>AAA</xsl:text></attr>
            </xsl:if>
            <xsl:if test="$called = 'CDSA'">
                <attr tag="00080080" vr="LO"><xsl:text>ASDAS</xsl:text></attr>
            </xsl:if>
            <xsl:if test="$called = 'HAGG'">
                <attr tag="00080080" vr="ASLO"><xsl:text>ASDASDAD</xsl:text></attr>
            </xsl:if>
            <xsl:if test="$called = 'DRSVICT'">
                <attr tag="00080080" vr="LO"><xsl:text>ASDASDSAD</xsl:text></attr>
            </xsl:if>
           
    </dataset>
  </xsl:template>
</xsl:stylesheet>

And inside JBOSS We set AETi up in StoreScp AND QueryRetrieveScp

Does Orthanc have this possibility?