v1.6-v1.7 Module Danea Easy Fatt import version 2.0 edit with me

cyberhack

Well-known member
Diamond
Elite
Joined
Apr 16, 2019
Messages
257
Reaction score
373
Points
63
NullCash
1,951
Works on PS 8.1.1?

Anyway thank you for sharing this mod.
Hi, I haven't tried it, let me know or tell me what error it gives you
Post automatically merged:

For Prestashop 1.7.8.x inserit this query in your database for fix

ALTER TABLE ps_product_attribute MODIFY location VARCHAR(255) DEFAULT NULL;
 
Last edited:

akatest

Member
XNullUser
Joined
Jan 16, 2022
Messages
179
Reaction score
1
Points
18
NullCash
2
excellent, I'll try it, thanks excellent, I'll try it, thanks
 

alchemyvoid

New member
XNullUser
Joined
Oct 21, 2023
Messages
2
Reaction score
0
Points
1
Location
Milano
NullCash
3
Any Idea if it works adding prices for new group of custormers created in prestashop? I created "Reseller" costumer but when I update from easyfatt it doesn't show the right price of the products (it shows only the standard price)
 

cyberhack

Well-known member
Diamond
Elite
Joined
Apr 16, 2019
Messages
257
Reaction score
373
Points
63
NullCash
1,951
Any Idea if it works adding prices for new group of custormers created in prestashop? I created "Reseller" costumer but when I update from easyfatt it doesn't show the right price of the products (it shows only the standard price)
configure the form in this way and send the catalog again by unchecking "send modified items only" all groups concerns the reseller group
 

Attachments

  • Screenshot 2023-10-22 181751.png
    Screenshot 2023-10-22 181751.png
    168.3 KB · Views: 4

Tatanka

Active member
XNullUser
Joined
Oct 22, 2023
Messages
219
Reaction score
29
Points
28
Location
bursa
NullCash
27
Teşekkür ederim emeğinize sağlık yeni modüller güzel.
 

tgd173

Member
XNullUser
Joined
Apr 19, 2022
Messages
96
Reaction score
14
Points
8
NullCash
12
Hi! We would need the order amount form from Prestashop.
Please do you have this module?
 

fabriferro

Member
XNullUser
Joined
Apr 11, 2022
Messages
102
Reaction score
4
Points
18
NullCash
3
Hi, after some use I noticed that changes are no longer made to existing products and new products are correctly added but no image is saved. Some advice?
 

Lillanea

Member
XNullUser
Joined
Oct 30, 2023
Messages
40
Reaction score
0
Points
6
Location
italy
NullCash
2
Thank you for this awesome plugin!Thank you for sharing module 👌
 

fabriferro

Member
XNullUser
Joined
Apr 11, 2022
Messages
102
Reaction score
4
Points
18
NullCash
3
Would it be possible to make the latest release 2.2.2 available? New features have been implemented and that would be great, thanks.
 

unique

Well-known member
Diamond
Elite
XNullUser
Joined
Dec 12, 2020
Messages
1,799
Reaction score
407
Points
83
NullCash
510

Are you real?​

No demo, no version, no original files to compare!!!​

 

cyberhack

Well-known member
Diamond
Elite
Joined
Apr 16, 2019
Messages
257
Reaction score
373
Points
63
NullCash
1,951
FOR PRESTASHOP 8.X.X

Update quantity e location INSERIT QUERY IN YOUR SQL:

ALTER TABLE ps_product_attribute ADD COLUMN quantity INT;
ALTER TABLE ps_product_attribute ADD COLUMN location INT;

PRESTASHOP 1.7.8.X

Update quantity e location INSERIT QUERY IN YOUR SQL:

ALTER TABLE ps_product_attribute MODIFY location VARCHAR(255) DEFAULT NULL;

PHP 7.4 not function in PHP 8
Post automatically merged:

for prestashop 8 :

line 391: /public_html/prestashop/src/Adapter/Product/QueryHandler/GetProductForEditingHandler.php

private function getDetails(Product $product): ProductDetails
{
$isbn = $product->isbn !== null ? $product->isbn : 'Valore predefinito';
$upc = $product->upc !== null ? $product->upc : 'Valore predefinito';
$ean13 = $product->ean13 !== null ? $product->ean13 : 'Valore predefinito';
$mpn = $product->mpn !== null ? $product->mpn : 'Valore predefinito';
$reference = $product->reference !== null ? $product->reference : 'Valore predefinito';

return new ProductDetails($isbn, $upc, $ean13, $mpn, $reference);
}
 
Last edited:
Top