Jump to content
thirty bees forum

30knees

Gold member
  • Posts

    1,450
  • Joined

  • Last visited

  • Days Won

    39

Posts posted by 30knees

  1. Sorry to see you go. What do you want to export? There are a lot of modules that permit exporting data and even services that take data directly from one system to another shop system.

  2. I have some 1 cent problems for invoices compared to calculations in accounting software. What rounding options do you use? I had "round up away from zero" and "round each line". I'm now testing "round each item". I'm also asking what rounding system my accounting software uses.

  3. Is anybody here required to supply EU-compliant e-invoices, such as the faktur-x / ZUGFeRD standard?

    For example, in Germany they're obligatory in a B2B setting from January 1, 2025. Many European countries already have e-invoicing requirements when dealing with public authorities.

    I found one PHP library for factur-x: https://github.com/atgp/factur-x

     

  4. Is it correct that I would need to update classes/module/PaymentModule.php to enable {invoice_number} to be used in emails, eg bankwire module?

    https://github.com/thirtybees/thirtybees/blob/main/classes/module/PaymentModule.php

    And then adding here:

    $params = [
                                    '{voucher_amount}' => Tools::displayPrice($voucher->reduction_amount, $this->context->currency, false),
                                    '{voucher_num}'    => $voucher->code,
                                    '{firstname}'      => $this->context->customer->firstname,
                                    '{lastname}'       => $this->context->customer->lastname,
                                    '{id_order}'       => $order->reference,
                                    '{order_name}'     => $order->getUniqReference(),
                                ];

    '{invoice_number}' => $order->invoice_number,

  5. For example:

    • DHL charges 10 Euros for Germany and France.
    • UPS charges 10 Euros for France and Belgium.
    • DHL charges 20 Euro for Belgium.
    • UPS charges 20 Euro for Germany.

    The customer should be able to see in the checkout for Belgium:

    • DHL: 20
    • UPS: 10

    To do this, I'd like to create zones:

    • DHL Zone 1: Germany, France
    • UPS Zone 1: France, Belgium
    • DHL Zone 2: Belgium
    • UPS Zone 2: Germany

    And then have carriers accordingly.

  6. @DRMasterChiefI know you don't want a module but this looks like it might be useful: https://addons.prestashop.com/en/blocks-tabs-banners/42100-static-custom-html-text-multi-blocks.html

    @the.rampage.radoYes, Germany has this special regime where your competitor or even private "competition protection clubs" can send you a cease and desist. You have to pay them for their efforts to protect fair competition - that's how they earn their money.

  7. On 10/16/2024 at 1:49 PM, DRMasterChief said:

    There is a new regulation in EU named GPSR (product safety regulation) and we are forced to give this information as simple text near other description.

    This is relevant for everyone in the EU and selling to the EU B2C. 

    The key information that will need to provided on the product page is listed in Article 19 and is:

    Quote

     

    (a) name, registered trade name or registered trade mark of the manufacturer, as well as the postal and electronic address at which they can be contacted;

    (b) where the manufacturer is not established in the Union, the name, postal and electronic address of the responsible person within the meaning of Article 16(1) of this Regulation or Article 4(1) of Regulation (EU) 2019/1020;

    (c) information allowing the identification of the product, including a picture of it, its type and any other product identifier; and

    (d) any warning or safety information to be affixed to the product or to the packaging or included in an accompanying document in accordance with this Regulation or the applicable Union harmonisation legislation in a language which can be easily understood by consumers, as determined by the Member State in which the product is made available on the market.

     

    I am also thinking how best to go about this. Deadline is December 13, 2024.

    I think it can broken down into:

    1. Manufacturer information, which can be tied to the manufacturer association. Can be a feature or a tab.
    2. Product information, which will be unique for each product or category of products. Can be a feature or a tab or on the main page itself.

    Right now, I'm thinking a powerful tab module could be easiest.

×
×
  • Create New...