From 72442d55da76f2c715f906dfc00d39f528a4b1ea Mon Sep 17 00:00:00 2001 From: Rafael Taranto Date: Mon, 8 Jan 2024 10:37:19 +0000 Subject: [PATCH] chore: fix merge issues --- lib/new-admin/services/transactions.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/new-admin/services/transactions.js b/lib/new-admin/services/transactions.js index c041a519..f512f51a 100644 --- a/lib/new-admin/services/transactions.js +++ b/lib/new-admin/services/transactions.js @@ -236,6 +236,7 @@ function getCustomerTransactionsBatch (ids) { const cashInSql = `SELECT 'cashIn' AS tx_class, txs.*, c.phone AS customer_phone, + c.email AS customer_email, c.id_card_data_number AS customer_id_card_data_number, c.id_card_data_expiration AS customer_id_card_data_expiration, c.id_card_data AS customer_id_card_data, @@ -254,6 +255,7 @@ function getCustomerTransactionsBatch (ids) { txs.*, actions.tx_hash, c.phone AS customer_phone, + c.email AS customer_email, c.id_card_data_number AS customer_id_card_data_number, c.id_card_data_expiration AS customer_id_card_data_expiration, c.id_card_data AS customer_id_card_data, @@ -282,6 +284,7 @@ function single (txId) { const cashInSql = `SELECT 'cashIn' AS tx_class, txs.*, c.phone AS customer_phone, + c.email AS customer_email, c.id_card_data_number AS customer_id_card_data_number, c.id_card_data_expiration AS customer_id_card_data_expiration, c.id_card_data AS customer_id_card_data, @@ -299,6 +302,7 @@ function single (txId) { txs.*, actions.tx_hash, c.phone AS customer_phone, + c.email AS customer_email, c.id_card_data_number AS customer_id_card_data_number, c.id_card_data_expiration AS customer_id_card_data_expiration, c.id_card_data AS customer_id_card_data,