CRM 2015: пользовательские кнопки ленты в сущности цитаты не отображаются после активации цитаты

Я добавил пользовательскую кнопку на ленте для формы объекта цитаты. Кнопка видна и работает как положено, когда цитата находится в черновом состоянии.

Когда я нажимаю кнопку "Активировать цитату", цитата становится активной. Это действие также обновляет ленту. После обновления ленты я больше не вижу пользовательских кнопок, добавленных на ленту.

Я зарегистрировался в ленточном рабочем месте, и в добавленной пользовательской кнопке не определены правила отображения, которые могут привести к ее скрытию в кавычке "Активировать".
Я также проверил наличие любых пользовательских сценариев, которые могут вызывать такое поведение, но я не смог найти ни одного, который бы делал пользовательские кнопки невидимыми.

Я попытался добавить пользовательскую кнопку в другую группу на ленте, но, похоже, это тоже не помогло.

Кажется, что лента отображает предопределенный набор элементов управления в форме объекта цитаты только после того, как цитата была активирована. Есть ли у кого-нибудь предложения о том, как мне обойти эту проблему?

Ниже находится ribbondiffxml объекта цитаты. Пользовательские кнопки, которые я добавил: "Копировать смету" и "Новая версия"

<?xml version="1.0" encoding="utf-16"?>
<RibbonDiffXml xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <CustomActions>
    <CustomAction Id="Sol.Form.Estimate.CopyEntity.Button.CustomAction" Location="Mscrm.Form.quote.MainTab.Actions.Controls._children" Sequence="4">
      <CommandUIDefinition>
        <Button Alt="$LocLabels:Sol.Form.Estimate.CopyEntity.Button.Alt" Command="Sol.Form.Estimate.CopyEntity.Command" Description="Copy Estimate" Id="Sol.Form.Estimate.CopyEntity.Button" Image32by32="$webresource:mcace_EntityRibbon_32x32.png" Image16by16="$webresource:mcace_EntityRibbon_16x16.png" LabelText="$LocLabels:Sol.Form.Estimate.CopyEntity.Button.LabelText" Sequence="4" TemplateAlias="o1" ToolTipTitle="$LocLabels:Sol.Form.Estimate.CopyEntity.Button.ToolTipTitle" ToolTipDescription="$LocLabels:Sol.Form.Estimate.CopyEntity.Button.ToolTipDescription" />
      </CommandUIDefinition>
    </CustomAction>
    <CustomAction Id="Sol.Form.Estimate.NewVersion.Button.CustomAction" Location="Mscrm.Form.quote.MainTab.Actions.Controls._children" Sequence="4">
      <CommandUIDefinition>
        <Button Alt="$LocLabels:Sol.Form.Estimate.NewVersion.Button.Alt" Command="Sol.quote.Estimate.NewVersion.Command" Description="New Version" Id="Sol.Form.Estimate.NewVersion.Button" Image32by32="/_imgs/SFA/ReviseQuote_32.png" Image16by16="/_imgs/SFA/ReviseQuote_16.png" LabelText="$LocLabels:Sol.Form.Estimate.NewVersion.Button.LabelText" Sequence="4" TemplateAlias="o1" ToolTipTitle="$LocLabels:Sol.Form.Estimate.NewVersion.Button.ToolTipTitle" ToolTipDescription="$LocLabels:Sol.Form.Estimate.NewVersion.Button.ToolTipDescription" />
      </CommandUIDefinition>
    </CustomAction>
    <HideCustomAction HideActionId="Sol.Mscrm.Form.quote.ReviseQuote.Hide" Location="Mscrm.Form.quote.ReviseQuote" />
  </CustomActions>
  <Templates>
    <RibbonTemplates Id="Mscrm.Templates" />
  </Templates>
  <CommandDefinitions>
    <CommandDefinition Id="Sol.Form.Estimate.CopyEntity.Command">
      <EnableRules>
        <EnableRule Id="Sol.Form.Estimate.CopyEntity.EnableRule" />
      </EnableRules>
      <DisplayRules />
      <Actions>
        <JavaScriptFunction FunctionName="triggerCopyEntity" Library="$webresource:sol_Entity_Ribbon.js" />
      </Actions>
    </CommandDefinition>
    <CommandDefinition Id="Sol.quote.Estimate.NewVersion.Command">
      <EnableRules>
        <EnableRule Id="Sol.Form.Estimate.CopyEntity.EnableRule" />
      </EnableRules>
      <DisplayRules />
      <Actions>
        <JavaScriptFunction FunctionName="setIsNewVersionField" Library="$webresource:sol_Estimate_ribbon" />
      </Actions>
    </CommandDefinition>
  </CommandDefinitions>
  <RuleDefinitions>
    <TabDisplayRules />
    <DisplayRules>
      <DisplayRule Id="Sol.Form.Estimate.DisplayRule.DisplayRule">
        <CrmClientTypeRule Type="Web" Default="true" />
      </DisplayRule>
    </DisplayRules>
    <EnableRules>
      <EnableRule Id="Sol.Form.Estimate.CopyEntity.EnableRule">
        <FormStateRule State="Existing" Default="false" InvertResult="false" />
      </EnableRule>
    </EnableRules>
  </RuleDefinitions>
  <LocLabels>
    <LocLabel Id="Sol.Form.Estimate.CopyEntity.Button.LabelText">
      <Titles>
        <Title description="Copy Estimate" languagecode="1033" />
      </Titles>
    </LocLabel>
    <LocLabel Id="Sol.Form.Estimate.CopyEntity.Button.ToolTipTitle">
      <Titles>
        <Title description="Copy Estimate" languagecode="1033" />
      </Titles>
    </LocLabel>
    <LocLabel Id="Sol.Form.Estimate.CopyEntity.Button.ToolTipDescription">
      <Titles>
        <Title description="Copy Estimate" languagecode="1033" />
      </Titles>
    </LocLabel>
    <LocLabel Id="Sol.Form.Estimate.CopyEntity.Button.Alt">
      <Titles>
        <Title description="Copy Estimate" languagecode="1033" />
      </Titles>
    </LocLabel>
    <LocLabel Id="Sol.Form.Estimate.NewVersion.Button.LabelText">
      <Titles>
        <Title description="New Version" languagecode="1033" />
      </Titles>
    </LocLabel>
    <LocLabel Id="Sol.Form.Estimate.NewVersion.Button.ToolTipTitle">
      <Titles>
        <Title description="New Version" languagecode="1033" />
      </Titles>
    </LocLabel>
    <LocLabel Id="Sol.Form.Estimate.NewVersion.Button.ToolTipDescription">
      <Titles>
        <Title description="New Version" languagecode="1033" />
      </Titles>
    </LocLabel>
    <LocLabel Id="Sol.Form.Estimate.NewVersion.Button.Alt">
      <Titles>
        <Title description="New Version" languagecode="1033" />
      </Titles>
    </LocLabel>
  </LocLabels>
</RibbonDiffXml>

1 ответ

Решение

Попробуйте изменить ваш EnableRule Sol.Form.Estimate.CopyEntity.EnableRule отрицать создание-состояние.

Ваше измененное правило должно выглядеть так:

<EnableRules>
  <EnableRule Id="Sol.Form.Estimate.CopyEntity.EnableRule">
    <FormStateRule State="Create" InvertResult="true" />
  </EnableRule>
</EnableRules>

Так что вместо формулировки

bool enable = FormState == Existing

MS CRM ожидает

bool enable = !(FormState == Create)

Концепция MS Enable- и DisplayRules для меня тоже не раз была странной.

Другие вопросы по тегам