// ADempiere-Vue (Frontend) for ADempiere ERP & CRM Smart Business Solution // Copyright (C) 2017-Present E.R.P. Consultores y Asociados, C.A. // Contributor(s): Yamel Senih ysenih@erpya.com www.erpya.com // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see . // Get Instance for connection import { request } from '@/utils/ADempiere/request' /** * Run callout request * @param {string} windowUuid * @param {number} windowNo * @param {string} tabUuid * @param {string} tableName * @param {string} columnName * @param {mixed} value * @param {mixed} oldValue * @param {string} callout * @param {array} attributesList * @returns {Map} Entity */ export function runCallOutRequest({ windowUuid, windowNo, tabUuid, tableName, columnName, value, oldValue, callout, attributesList = [] }) { return request({ url: '/ui/run-callout', method: 'post', data: { table_name: tableName, window_uuid: windowUuid, tab_uuid: tabUuid, callout, column_name: columnName, old_value: oldValue, value, window_no: windowNo, attributes: attributesList } }) .then(response => { return response }) }