Id Added at Email Changed entity name Changed entity id Details
682 2025-09-09 15:47:06 user.email TransformCustomPostback 166 CREATE
  • xslt_template:
    <?xml version="1.0" encoding="UTF-8"?>
    <!-- Смена статуса и обработака adv_commission | adv_comission-->
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:php="http://php.net/xsl" version="1.0">
    <xsl:output method="xml" encoding="utf-8" indent="no" />
    <xsl:template match="root">
    <items>
    <xsl:apply-templates />
    </items>
    </xsl:template>
    <xsl:template match="data">
    <item>
    <order_id>
    <xsl:value-of select="order_id" />
    </order_id>
    <click_id>
    <xsl:value-of select="click_id" />
    </click_id>
    <adv_commission>
    <xsl:value-of select="adv_commission | adv_comission" />
    </adv_commission>
    <order_total>
    <xsl:value-of select="order_total" />
    </order_total>
    <status>
    <xsl:choose>
    <xsl:when test="status = 'Lead'">new</xsl:when>
    <xsl:when test="status = 'Sale'">done</xsl:when>
    <xsl:when test="status = 'Reject'">cancel</xsl:when>
    </xsl:choose>
    </status>
    </item>
    </xsl:template>
    </xsl:stylesheet>
  • campaign_id: 871
  • type: postback
  • id: 166
681 2025-09-09 15:39:42 user.email TransformCustomPostback 165 DELETE
  • id: 165
  • campaign_id: 872
  • type: postback
  • xslt_template:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:php="http://php.net/xsl" version="1.0">
    <xsl:output method="xml" encoding="utf-8" indent="no" />
    <xsl:template match="root">
    <items>
    <xsl:apply-templates />
    </items>
    </xsl:template>
    <xsl:template match="data">
    <item>
    <order_id>
    <xsl:value-of select="order_id" />
    </order_id>
    <click_id>
    <xsl:value-of select="click_id" />
    </click_id>
    <adv_commission>
    <!-- Нам приходит комиссия с НДС (20%), тут мы удаляем НДС -->
    <xsl:value-of select="adv_commission div 1.2" />
    </adv_commission>
    <order_total>
    <xsl:value-of select="order_total" />
    </order_total>
    <status>
    <xsl:value-of select="status" />
    </status>
    </item>
    </xsl:template>
    </xsl:stylesheet>
  • is_active: 0
  • created_at: 2025-09-09 15:39:38
680 2025-09-09 15:39:38 user.email TransformCustomPostback 165 CREATE
  • xslt_template:
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:php="http://php.net/xsl" version="1.0">
    <xsl:output method="xml" encoding="utf-8" indent="no" />
    <xsl:template match="root">
    <items>
    <xsl:apply-templates />
    </items>
    </xsl:template>
    <xsl:template match="data">
    <item>
    <order_id>
    <xsl:value-of select="order_id" />
    </order_id>
    <click_id>
    <xsl:value-of select="click_id" />
    </click_id>
    <adv_commission>
    <!-- Нам приходит комиссия с НДС (20%), тут мы удаляем НДС -->
    <xsl:value-of select="adv_commission div 1.2" />
    </adv_commission>
    <order_total>
    <xsl:value-of select="order_total" />
    </order_total>
    <status>
    <xsl:value-of select="status" />
    </status>
    </item>
    </xsl:template>
    </xsl:stylesheet>
  • campaign_id: 872
  • type: postback
  • id: 165
679 2025-09-08 15:25:53 user.email ValdisScheduler 190 CREATE
  • timeout: 15
  • is_active: 1
  • period: 22 *
  • date_from_expr: -24 hour
  • date_to_expr:
  • date_start: 2025-09-08 15:25:06
  • job_id: 198
  • id: 190
678 2025-09-08 15:25:53 user.email ValdisTransform 198 CREATE
  • xslt:
    <?xml version="1.0" encoding="utf-8"?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:php="http://php.net/xsl" version="1.0">
    <xsl:output method="xml" encoding="utf-8" indent="no"/>
    <xsl:template match="items">
    <items>
    <xsl:apply-templates/>
    </items>
    </xsl:template>
    <xsl:template match="item">
    <xsl:if test="php:function('isPaid', string('920'), string(order_id)) = '0'">
    <item>
    <order_id>
    <xsl:value-of select="order_id"/>
    </order_id>
    <click_id>
    <xsl:value-of select="click_id"/>
    </click_id>
    <customer_type>
    <xsl:value-of select="customer_type"/>
    </customer_type>
    <order_total>
    <xsl:value-of select="order_total"/>
    </order_total>
    <wm_commission>
    <xsl:value-of select="commission"/>
    </wm_commission>
    <currency>
    <xsl:value-of select="currency"/>
    </currency>
    <status>
    <xsl:choose>
    <xsl:when test="status = 'new'">new</xsl:when>
    <xsl:when test="status = 'done'">new</xsl:when>
    <xsl:when test="status = 'cancel'">new</xsl:when>
    </xsl:choose>
    </status>
    <date>
    <xsl:value-of select="date"/>
    </date>
    <basket>
    <xsl:for-each select="basket/product">
    <product>
    <pid>
    <xsl:value-of select="pid"/>
    </pid>
    <pn>
    <xsl:value-of select="pn"/>
    </pn>
    <pc>
    <xsl:value-of select="pc"/>
    </pc>
    <up>
    <xsl:value-of select="up"/>
    </up>
    <qty>
    <xsl:value-of select="qty"/>
    </qty>
    </product>
    </xsl:for-each>
    </basket>
    </item>
    </xsl:if>
    </xsl:template>
    </xsl:stylesheet>
  • job_id: 198
  • id: 198
677 2025-09-08 15:25:53 user.email ValdisJob 198 CREATE
  • name: Superapteka.ru RU CPS
  • type: http
  • is_multicampaign: 0
  • create_click_allowed: 0
  • allow_reassign_system_leads: 0
  • comment:
  • order_xpath:
  • parameters:
    {"order_id_field":"","orders_path":"","directory_name":"","custom_variables":[]}
  • request_settings:
    {"method":"GET","url":"https:\/\/export.advcake.ru\/sovaunion\/superaptekaru?pass=CatExBUUcY9SOhf05K44GZFwK19yJpr1&date_from=[[date_from]]&date_to=[[date_to]]","headers":[],"body":"","form_params":[]}
  • pre_request_settings:
    {"enable":false,"response_type":null,"variables_paths":[],"request":{"uri":"","method":null,"body":[],"headers":[]}}
  • id: 198
676 2025-09-08 15:25:04 user.email ValdisScheduler 189 CREATE
  • timeout: 15
  • is_active: 1
  • period: 10 *
  • date_from_expr: -24 hour
  • date_to_expr:
  • date_start: 2025-09-08 15:23:21
  • job_id: 197
  • id: 189
675 2025-09-08 15:25:04 user.email ValdisTransform 197 CREATE
  • xslt:
    <?xml version="1.0" encoding="utf-8"?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:php="http://php.net/xsl" version="1.0">
    <xsl:output method="xml" encoding="utf-8" indent="no"/>
    <xsl:template match="items">
    <items>
    <xsl:apply-templates/>
    </items>
    </xsl:template>
    <xsl:template match="item">
    <xsl:if test="php:function('isPaid', string('919'), string(order_id)) = '0'">
    <item>
    <order_id>
    <xsl:value-of select="order_id"/>
    </order_id>
    <click_id>
    <xsl:value-of select="click_id"/>
    </click_id>
    <customer_type>
    <xsl:value-of select="customer_type"/>
    </customer_type>
    <order_total>
    <xsl:value-of select="order_total"/>
    </order_total>
    <wm_commission>
    <xsl:value-of select="commission"/>
    </wm_commission>
    <currency>
    <xsl:value-of select="currency"/>
    </currency>
    <status>
    <xsl:choose>
    <xsl:when test="status = 'new'">new</xsl:when>
    <xsl:when test="status = 'done'">new</xsl:when>
    <xsl:when test="status = 'cancel'">new</xsl:when>
    </xsl:choose>
    </status>
    <date>
    <xsl:value-of select="date"/>
    </date>
    <basket>
    <xsl:for-each select="basket/product">
    <product>
    <pid>
    <xsl:value-of select="pid"/>
    </pid>
    <pn>
    <xsl:value-of select="pn"/>
    </pn>
    <pc>
    <xsl:value-of select="pc"/>
    </pc>
    <up>
    <xsl:value-of select="up"/>
    </up>
    <qty>
    <xsl:value-of select="qty"/>
    </qty>
    </product>
    </xsl:for-each>
    </basket>
    </item>
    </xsl:if>
    </xsl:template>
    </xsl:stylesheet>
  • job_id: 197
  • id: 197
674 2025-09-08 15:25:04 user.email ValdisJob 197 CREATE
  • name: Stoletov.ru RU CPS
  • type: http
  • is_multicampaign: 0
  • create_click_allowed: 0
  • allow_reassign_system_leads: 0
  • comment:
  • order_xpath:
  • parameters:
    {"order_id_field":"","orders_path":"","directory_name":"","custom_variables":[]}
  • request_settings:
    {"method":"GET","url":"https:\/\/export.advcake.ru\/sovaunion\/stoletovru?pass=CatExBUUcY9SOhf05K44GZFwK19yJpr1&date_from=[[date_from]]&date_to=[[date_to]]","headers":[],"body":"","form_params":[]}
  • pre_request_settings:
    {"enable":false,"response_type":null,"variables_paths":[],"request":{"uri":"","method":null,"body":[],"headers":[]}}
  • id: 197
673 2025-09-08 15:23:11 user.email ValdisScheduler 188 CREATE
  • timeout: 15
  • is_active: 1
  • period: 26 *
  • date_from_expr: -24 hour
  • date_to_expr:
  • date_start: 2025-09-08 15:22:20
  • job_id: 196
  • id: 188
672 2025-09-08 15:23:11 user.email ValdisTransform 196 CREATE
  • xslt:
    <?xml version="1.0" encoding="utf-8"?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:php="http://php.net/xsl" version="1.0">
    <xsl:output method="xml" encoding="utf-8" indent="no"/>
    <xsl:template match="items">
    <items>
    <xsl:apply-templates/>
    </items>
    </xsl:template>
    <xsl:template match="item">
    <xsl:if test="php:function('isPaid', string('918'), string(order_id)) = '0'">
    <item>
    <order_id>
    <xsl:value-of select="order_id"/>
    </order_id>
    <click_id>
    <xsl:value-of select="click_id"/>
    </click_id>
    <customer_type>
    <xsl:value-of select="customer_type"/>
    </customer_type>
    <order_total>
    <xsl:value-of select="order_total"/>
    </order_total>
    <wm_commission>
    <xsl:value-of select="commission"/>
    </wm_commission>
    <currency>
    <xsl:value-of select="currency"/>
    </currency>
    <status>
    <xsl:choose>
    <xsl:when test="status = 'new'">new</xsl:when>
    <xsl:when test="status = 'done'">new</xsl:when>
    <xsl:when test="status = 'cancel'">new</xsl:when>
    </xsl:choose>
    </status>
    <date>
    <xsl:value-of select="date"/>
    </date>
    <basket>
    <xsl:for-each select="basket/product">
    <product>
    <pid>
    <xsl:value-of select="pid"/>
    </pid>
    <pn>
    <xsl:value-of select="pn"/>
    </pn>
    <pc>
    <xsl:value-of select="pc"/>
    </pc>
    <up>
    <xsl:value-of select="up"/>
    </up>
    <qty>
    <xsl:value-of select="qty"/>
    </qty>
    </product>
    </xsl:for-each>
    </basket>
    </item>
    </xsl:if>
    </xsl:template>
    </xsl:stylesheet>
  • job_id: 196
  • id: 196
671 2025-09-08 15:23:11 user.email ValdisJob 196 CREATE
  • name: Start.ru RU CPS
  • type: http
  • is_multicampaign: 0
  • create_click_allowed: 0
  • allow_reassign_system_leads: 0
  • comment:
  • order_xpath:
  • parameters:
    {"order_id_field":"","orders_path":"","directory_name":"","custom_variables":[]}
  • request_settings:
    {"method":"GET","url":"https:\/\/export.advcake.ru\/sovaunion\/startru?pass=CatExBUUcY9SOhf05K44GZFwK19yJpr1&date_from=[[date_from]]&date_to=[[date_to]]","headers":[],"body":"","form_params":[]}
  • pre_request_settings:
    {"enable":false,"response_type":null,"variables_paths":[],"request":{"uri":"","method":null,"body":[],"headers":[]}}
  • id: 196
670 2025-09-08 15:22:13 user.email ValdisScheduler 187 CREATE
  • timeout: 15
  • is_active: 1
  • period: 13 *
  • date_from_expr: -24 hour
  • date_to_expr:
  • date_start: 2025-09-08 15:20:48
  • job_id: 195
  • id: 187
669 2025-09-08 15:22:13 user.email ValdisTransform 195 CREATE
  • xslt:
    <?xml version="1.0" encoding="utf-8"?>
    <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:php="http://php.net/xsl" version="1.0">
    <xsl:output method="xml" encoding="utf-8" indent="no"/>
    <xsl:template match="items">
    <items>
    <xsl:apply-templates/>
    </items>
    </xsl:template>
    <xsl:template match="item">
    <xsl:if test="php:function('isPaid', string('917'), string(order_id)) = '0'">
    <item>
    <order_id>
    <xsl:value-of select="order_id"/>
    </order_id>
    <click_id>
    <xsl:value-of select="click_id"/>
    </click_id>
    <customer_type>
    <xsl:value-of select="customer_type"/>
    </customer_type>
    <order_total>
    <xsl:value-of select="order_total"/>
    </order_total>
    <wm_commission>
    <xsl:value-of select="commission"/>
    </wm_commission>
    <currency>
    <xsl:value-of select="currency"/>
    </currency>
    <status>
    <xsl:choose>
    <xsl:when test="status = 'new'">new</xsl:when>
    <xsl:when test="status = 'done'">new</xsl:when>
    <xsl:when test="status = 'cancel'">new</xsl:when>
    </xsl:choose>
    </status>
    <date>
    <xsl:value-of select="date"/>
    </date>
    <basket>
    <xsl:for-each select="basket/product">
    <product>
    <pid>
    <xsl:value-of select="pid"/>
    </pid>
    <pn>
    <xsl:value-of select="pn"/>
    </pn>
    <pc>
    <xsl:value-of select="pc"/>
    </pc>
    <up>
    <xsl:value-of select="up"/>
    </up>
    <qty>
    <xsl:value-of select="qty"/>
    </qty>
    </product>
    </xsl:for-each>
    </basket>
    </item>
    </xsl:if>
    </xsl:template>
    </xsl:stylesheet>
  • job_id: 195
  • id: 195
668 2025-09-08 15:22:13 user.email ValdisJob 195 CREATE
  • name: Skysmart.ru RU CPS
  • type: http
  • is_multicampaign: 0
  • create_click_allowed: 0
  • allow_reassign_system_leads: 0
  • comment:
  • order_xpath:
  • parameters:
    {"order_id_field":"","orders_path":"","directory_name":"","custom_variables":[]}
  • request_settings:
    {"method":"GET","url":"https:\/\/export.advcake.ru\/sovaunion\/skysmartru1?pass=CatExBUUcY9SOhf05K44GZFwK19yJpr1&date_from=[[date_from]]&date_to=[[date_to]]","headers":[],"body":"","form_params":[]}
  • pre_request_settings:
    {"enable":false,"response_type":null,"variables_paths":[],"request":{"uri":"","method":null,"body":[],"headers":[]}}
  • id: 195
Connection: processing; host: nl1-processing-mysql1; user: proc; database: processing; table: user_activity_history