From e6a93153908663a143481f9314d6732528c0e46a Mon Sep 17 00:00:00 2001 From: Elsio Sanchez <45974454+elsiosanchez@users.noreply.github.com> Date: Tue, 25 May 2021 16:58:37 -0400 Subject: [PATCH] Add documentation for developer mode of the Lock/Unlock Logs service (#872) Co-authored-by: elsiosanchez --- .../guide/components/lock-unlock-records.md | 32 +++++++++++++++++++ docs/guide/components/lock-unlock-records.md | 31 ++++++++++++++++++ .../guide/components/lock-unlock-records.md | 30 +++++++++++++++++ 3 files changed, 93 insertions(+) diff --git a/docs/es/guide/components/lock-unlock-records.md b/docs/es/guide/components/lock-unlock-records.md index 228fe2c3..81568c4e 100644 --- a/docs/es/guide/components/lock-unlock-records.md +++ b/docs/es/guide/components/lock-unlock-records.md @@ -35,3 +35,35 @@ En la versión de escritorio, se ubica la pestaña donde se encuentra el registr En la versión móvil, se ubica la pestaña donde se encuentra el registro y finalmente se selecciona el icono de candado ubicado del lado izquierdo del nombre de la pestaña. Para desbloquear el registro, se realiza el mismo procedimiento. + +## Opciones para el Desarrollador + +El boton de **Bloquear/Desbloquear Registros** se encuentra en la siguiente ruta: + +```bash +└── src # Código fuente principal + └── components # Componentes globales + └── ADempiere # Componentes específicos de ADempiere + └── Tab # Directorio principal donde se encuentra el boton de Bloquear/Desbloquear Registros +``` + +Aquí puede ver un [Demo](https://demo-ui.erpya.com/#/7aa4242a-93c0-42d8-92be-8250002d3e3c/d97027fd-4cd5-445e-8fd8-ef5d3f7959b4/window/53418?tabParent=0&action=fa50908e-40f1-11e9-91a1-0242ac140002) + +El llamado al consumo de servicio de **Lock/Unlock Records** se encuentra en la siguiente ruta: + +```bash +└─ src # Código fuente principal + └─ api # Servicios globales + └─ ADempiere # Servicios específicos de ADempiere + └─ actions # Directorio principal de los servicio de las acciones de registro + └─ private-access # Directorio principal de los servicio Bloquear/Desbloquear Registros +``` + +Los servicios llamados del componente son: + +[POST /api/user-interface/component/private-access/unlock-private-access](https://adempiere.github.io/proxy-adempiere-api/guide/es/default-modules/adempiere-api/user-interface.html#post-api-user-interface-component-private-access-unlock-private-access) + +[POST /api/user-interface/component/private-access/lock-private-access](https://adempiere.github.io/proxy-adempiere-api/guide/es/default-modules/adempiere-api/user-interface.html#post-api-user-interface-component-private-access-lock-private-access) + +[GET /api/user-interface/component/private-access/private-access](https://adempiere.github.io/proxy-adempiere-api/guide/es/default-modules/adempiere-api/user-interface.html#get-api-user-interface-component-private-access-private-access) + diff --git a/docs/guide/components/lock-unlock-records.md b/docs/guide/components/lock-unlock-records.md index a6c03c54..799c295c 100644 --- a/docs/guide/components/lock-unlock-records.md +++ b/docs/guide/components/lock-unlock-records.md @@ -35,3 +35,34 @@ In the desktop version, the tab where the registry is located is located and fin In the mobile version, the tab where the record is located is located and finally the lock icon located on the left side of the name of the tab is selected. To unlock the registry, the same procedure is performed. + +## Developer Options + +The **Lock/Unlock Records** button is located in the following path: + +```bash +└── src # main source code + └── components # Global components. + └─── ADempiere # ADempiere specific components. + └─── Tab # Main directory where the Lock/Unlock Records button is located. +``` + +Here you can see a [Demo](https://demo-ui.erpya.com/#/7aa4242a-93c0-42d8-92be-8250002d3e3c/d97027fd-4cd5-445e-8fd8-ef5d3f7959b4/window/53418?tabParent=0&action=fa50908e-40f1-11e9-91a1-0242ac140002) + +The **Lock/Unlock Records** service consumption call is located in the following path: + +```bash +└─ src # Main source code. + └─ api # Global services. + └─ ADempiere # ADempiere specific services. + └─ actions # Main directory of registration actions services. + └─ private-access # Main directory of the Lock/Unlock Logs service. +``` + +The called services of the component are: + +[POST /api/user-interface/component/private-access/unlock-private-access](https://adempiere.github.io/proxy-adempiere-api/guide/default-modules/adempiere-api/user-interface.html#post-api-user-interface-component-private-access-unlock-private-access) + +[POST /api/user-interface/component/private-access/lock-private-access](https://adempiere.github.io/proxy-adempiere-api/guide/default-modules/adempiere-api/user-interface.html#post-api-user-interface-component-private-access-lock-private-access) + +[GET /api/user-interface/component/private-access/private-access](https://adempiere.github.io/proxy-adempiere-api/guide/default-modules/adempiere-api/user-interface.html#get-api-user-interface-component-private-access-private-access) diff --git a/docs/zh/guide/components/lock-unlock-records.md b/docs/zh/guide/components/lock-unlock-records.md index abd2dff9..5add3a00 100644 --- a/docs/zh/guide/components/lock-unlock-records.md +++ b/docs/zh/guide/components/lock-unlock-records.md @@ -35,3 +35,33 @@ 在移動版本中,找到記錄所在的選項卡,最後選擇位於選項卡名稱左側的鎖定圖標。要解鎖註冊表,請執行相同的過程。 + +## 开发者选项 + +锁定/解锁记录的**按钮位于以下路径中。 + +```bash +└── src # 主要数据来源 + └── components # 全局组件 + └── ADempiere # ADempiere的特殊组件 + └── Tab # 主目录,其中有 Bloquear/Desbloquear Registros 的按钮。 +``` + +在这里你可以看到一个[演示](https://demo-ui.erpya.com/#/7aa4242a-93c0-42d8-92be-8250002d3e3c/d97027fd-4cd5-445e-8fd8-ef5d3f7959b4/window/53418?tabParent=0&action=fa50908e-40f1-11e9-91a1-0242ac140002) + +锁定/解锁记录**服务消费调用位于以下路径 + +```bash +└─ src # 主要源代码。 + └─ api # 全局服务。 + └─ ADempiere # ADempiere特定服务。 + └── actions # 注册动作服务的主目录。 + └── private-access # 锁定/解锁日志服务的主目录。 +``` +该组件的调用服务是。 + +[POST /api/user-interface/component/private-access/unlock-private-access](https://adempiere.github.io/proxy-adempiere-api/guide/default-modules/adempiere-api/user-interface.html#post-api-user-interface-component-private-access-unlock-private-access) + +[POST /api/user-interface/component/private-access/lock-private-access](https://adempiere.github.io/proxy-adempiere-api/guide/default-modules/adempiere-api/user-interface.html#post-api-user-interface-component-private-access-lock-private-access) + +[GET /api/user-interface/component/private-access/private-access](https://adempiere.github.io/proxy-adempiere-api/guide/default-modules/adempiere-api/user-interface.html#get-api-user-interface-component-private-access-private-access)