Problem with alarm template from SATEL

I have SATEL integration, but I couldn’t set it so that the alarm could be activated without entering the PIN.

I created a template that retrieves the SATEL alarm status, but uses a special entity to block it without a pin.

It works great without any problems. Unfortunately, when I want to unlock the alarm and enter the PIN, nothing happens

alarm_control_panel:
  - platform: template
    panels:
      alarm_dom:
        value_template: "{{ states('alarm_control_panel.dom') }}"
        arm_away:
          service: switch.turn_on
          target:
            entity_id: switch.uzbrajanie
        disarm:
          service: alarm_control_panel.alarm_disarm
          target:
            entity_id: alarm_control_panel.dom

Do you know why this is happening?