mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Revert "Merge branch 'feat/add-chat-presupuesto-cliente' into 'main'"
This reverts merge request !352
This commit is contained in:
@ -210,7 +210,6 @@ class ChatModel extends Model
|
||||
->join("chat_departments","chat_departments.id = chats.chat_department_id","left")
|
||||
->join("pedidos","pedidos.id = chats.pedido_id","left")
|
||||
->whereIn("pedidos.id",$pedidos)
|
||||
->where("chats.chat_department_id is NOT NULL",NULL,FALSE)
|
||||
->get()->getResultObject();
|
||||
$chatMessageModel = model(ChatMessageModel::class);
|
||||
$count = 0;
|
||||
@ -238,7 +237,6 @@ class ChatModel extends Model
|
||||
->join("chat_departments","chat_departments.id = chats.chat_department_id","left")
|
||||
->join("facturas","facturas.id = chats.factura_id","left")
|
||||
->whereIn("facturas.id",$facturas)
|
||||
->where("chats.chat_department_id is NOT NULL",NULL,FALSE)
|
||||
->get()->getResultObject();
|
||||
$chatMessageModel = model(ChatMessageModel::class);
|
||||
$count = 0;
|
||||
@ -266,7 +264,6 @@ class ChatModel extends Model
|
||||
->join("chat_departments","chat_departments.id = chats.chat_department_id","left")
|
||||
->join("presupuestos","presupuestos.id = chats.presupuesto_id","left")
|
||||
->whereIn("presupuestos.id",$presupuestos)
|
||||
->where("chats.chat_department_id is NOT NULL",NULL,FALSE)
|
||||
->get()->getResultObject();
|
||||
$chatMessageModel = model(ChatMessageModel::class);
|
||||
$count = 0;
|
||||
|
||||
Reference in New Issue
Block a user