v1.6-v1.7 PrestaShop Admin Panel iOS and Android Application Module (FE Presta Admin App - Easy to Manage Store Admin Module)

alastis

Member
XNullUser
Joined
Mar 20, 2022
Messages
790
Reaction score
0
Points
16
NullCash
10
it would be great if the notification when he is on his way would work at least partially
 

Ptikikoo

Well-known member
Diamond
Elite
XNullUser
Joined
Oct 26, 2021
Messages
103
Reaction score
400
Points
63
NullCash
1,127
whats is number order code ? i have try number and dont work
 

mymate20

Well-known member
Master
Diamond
Elite
XNullUser
Joined
Jan 9, 2021
Messages
225
Reaction score
821
Points
93
NullCash
2,118
Can you update to the new version? ????????????
 

abdoussa

Well-known member
Diamond
Elite
XNullUser
Joined
Oct 9, 2021
Messages
166
Reaction score
333
Points
63
NullCash
457
Thank you for sharing, I will try it!
 

incopera

Member
XNullUser
Joined
Sep 14, 2021
Messages
59
Reaction score
2
Points
8
NullCash
78
View attachment 6170
La aplicación FE Presta Admin, que se vende rápidamente y es un módulo ampliamente aceptado, facilita que el administrador administre la operación de su tienda usando dispositivos móviles. Ayuda a administrar catálogos, clientes, carritos abandonados, recibir notificaciones instantáneas u oportunas de pedidos en su teléfono.

  • Le permitirá administrar su tienda Prestashop en cualquier momento y en cualquier lugar utilizando su dispositivo móvil.
  • Promete proporcionar una conexión segura entre la tienda Prestashop y el dispositivo móvil.
  • Le permitirá Agregar, Actualizar, Ver Productos, Pedidos, Categorías desde el propio dispositivo móvil.
  • Te permitirá visualizar las estadísticas de la tienda desde el propio dispositivo móvil.
  • Puedes gestionar/actualizar precios de productos en masa, stocks desde el propio dispositivo móvil.
  • La aplicación móvil FE Presta Admin está disponible gratuitamente en Play Store para Android y App Store para IOS.
Instalación
  • Descargue la aplicación de administración FE Prestashop
  • Descargue el módulo Prestashop de los complementos de Prestashop [ https://addons.prestashop.com ]
  • Instale el módulo en su tienda Back office/sección de administración
  • Escanee el código QR desde FE Prestashop Back office / sección Admin. O agregue la URL de su sitio
  • ¡Ingrese su credencial de administrador cuando se le solicite!
Otro
Este módulo funciona cuando lo vincula con éxito con la aplicación móvil FE Presta Admin.

La aplicación móvil se puede descargar de forma gratuita para dispositivos Android e IOS. Puede usar los siguientes enlaces para descargar la aplicación móvil.

Android: https://play.google.com/store/apps/details?id=com.dinc.fepresta_admin
IOS: https://apps.apple.com/us/app/fe-presta-admin/id1489151535



Manifestación:
https://addons.prestashop.com/es/mobile/47384-fe-presta-admin-app-easy-to-manage-store-admin.ht

excelente aporte, muchas gracias por el modulo
 

amagic

Member
XNullUser
Joined
May 20, 2022
Messages
34
Reaction score
0
Points
6
NullCash
5
what is the order id? you can not use it without order id.
 

soda

Member
XNullUser
Joined
Apr 28, 2022
Messages
64
Reaction score
9
Points
8
NullCash
86
Thank you, I will try it,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
Post automatically merged:

Tested, it doesn't work, take a look on the code:
public function generateKeys()
{
$this->errorLog('Module configuration save process started', 'modulelog');
$url = 'http://fepsadmin.dhanashree.com/validate/check.php';
$postVal = (int)Tools::getValue('purchaseorder');
$siteurl = $this->feshop_url;
$post = [
'orderid' => $postVal,
'siteurl' => $siteurl
];
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
$response = curl_exec($ch);
if (!extension_loaded('curl')) {
$this->errorLog('CURL : is not working', 'modulelog');
$postdata = http_build_query(
array(
'orderid' => $postVal,
'siteurl' => $siteurl
)
);
$opts = array('http' =>
array(
'method' => 'POST',
'header' => 'Content-type: application/x-www-form-urlencoded',
'content' => $postdata
)
);
$context = stream_context_create($opts);
$result = Tools::file_get_contents($url, false, $context);
$order_detail = explode(",", $result);
$ordid = (int)Tools::getValue('purchaseorder');
if ($result == 'otherexist') {
Configuration::updateValue('femobiadmin_error_ord', (int)Tools::getValue('purchaseorder'));
Configuration::updateValue('femobiadmin_error_msg', 'orderror');
$this->errorLog('Order no '.$ordid.' is associate with other site', 'modulelog');
} elseif (!empty($order_detail) && !empty($order_detail['5']) && $order_detail['5'] == 'success') {
Configuration::updateValue('fepresta_orderid', (int)$order_detail['4']);
Configuration::updateValue('femb_verify', (int)$order_detail['3']);
Configuration::updateValue('femb_encrypt_key', pSQL($order_detail['2']));
Configuration::updateValue('femobiadminapp_appcode', pSQL($order_detail['0']));
Configuration::updateValue('femobiadmin_error_ord', '');
Configuration::updateValue('femobiadmin_error_msg', '');
$this->errorLog('Order '.(int)$order_detail['4'].' saved successfully ', 'modulelog');
}
} else {
$order_detail = explode(",", $response);
if ($response == 'otherexist') {
Configuration::updateValue('femobiadmin_error_ord', (int)Tools::getValue('purchaseorder'));
Configuration::updateValue('femobiadmin_error_msg', 'orderror');
$this->errorLog('Order no '.$ordid.' is associate with other site', 'modulelog');
} elseif (!empty($order_detail) && !empty($order_detail['5']) && $order_detail['5'] == 'success') {
Configuration::updateValue('fepresta_orderid', (int)$order_detail['4']);
Configuration::updateValue('femb_verify', (int)$order_detail['3']);
Configuration::updateValue('femb_encrypt_key', pSQL($order_detail['2']));
Configuration::updateValue('femobiadminapp_appcode', pSQL($order_detail['0']));
Configuration::updateValue('femobiadmin_error_ord', '');
Configuration::updateValue('femobiadmin_error_msg', '');
$this->errorLog('Order '.(int)$order_detail['4'].' added successfully ', 'modulelog');
}
curl_close($ch);
}
$this->errorLog('Module configuration save process end', 'modulelog');
}
Post automatically merged:

If you have no order number, and you can not see products and orders on your mobile APP, it is useless.
 
Last edited:

Fsamuel

Member
XNullUser
Joined
Jun 2, 2022
Messages
100
Reaction score
1
Points
18
NullCash
3
Module qui ne fonctionne tout simplement pas ! Après être connecté vous avez uniquement 2 types d'informations et rien d'autres... Mais merci quand même
 
Top