From 6bddf1b99782dc5df351b54779852d1f8098661f Mon Sep 17 00:00:00 2001 From: amazuecos Date: Thu, 5 Sep 2024 12:38:25 +0200 Subject: [PATCH] fix:pedido xml folder --- ci4/app/Libraries/SafekatFtpClient.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci4/app/Libraries/SafekatFtpClient.php b/ci4/app/Libraries/SafekatFtpClient.php index 66fdc29c..98259ba2 100644 --- a/ci4/app/Libraries/SafekatFtpClient.php +++ b/ci4/app/Libraries/SafekatFtpClient.php @@ -41,7 +41,7 @@ class SafekatFtpClient { try { if ($this->xml_enabled == false) return false; - $remotePath = implode("/", [$this->base_dir,'xml_nuevos']); + $remotePath = implode("/", [$this->base_dir,'pedidos','xml_nuevos']); $this->ftp->login(username: $this->username, password: $this->password); if(!$this->ftp->is_dir($remotePath)){ $this->ftp->mkdir($remotePath,recursive:true);