Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RMS-57911 Выставить новость GitHub - добавлен метод IOperationService.AddButtonToDeliveriesScreen #218

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions _posts/2024-12-25-add-button-to-deliveries-screen.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
title: Возможность добавления кнопок на экран доставочных заказов
layout: default
tags: v9preview4 v9

---

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


Добавлен метод [`AddButtonToDeliveriesScreen`](https://iiko.github.io/front.api.sdk/v9/html/M_Resto_Front_Api_IOperationService_AddButtonToDeliveriesScreen.htm) со следующими параметрами:

* `string caption` — название кнопки,
* `bool isChecked` — выделена ли кнопка,
* `bool isEnabled` — доступна ли кнопка для нажатия,
* `Action<(IViewManager vm, (Guid , string , bool , string ) state)> callback` — обработчик нажатия на кнопку, в котором возможно отображение диалоговых окон и внесение изменений,
* `iconGeometry` — иконка в формате [Path Markup](https://docs.microsoft.com/en-us/dotnet/desktop/wpf/graphics-multimedia/path-markup-syntax?view=netframeworkdesktop-4.8) (необязательный аргумент).

Обработчик нажатия на кнопку принимает экземпляр [`IViewManager`](https://iiko.github.io/front.api.sdk/v9/html/T_Resto_Front_Api_UI_IViewManager.htm) для отображения окон, а также текущее состояние кнопки - `(Guid buttonId, string caption, bool isChecked, string iconGeometry) state`.