Discount calculation includes all adjustments.

Created on 13 December 2024, 4 months ago

Problem/Motivation

On the purchase event, an item level discount value is passed. The discount value is captured by subtracting the adjusted unit price from the item price.

By default ->getAdjustedUnitPrice() will return a price minus fees, promotions, taxes. I think in most cases the customer will expect the discount field to subtract only the promotion. I could certainly be wrong.

Steps to reproduce

Add a taxed item to cart and check the value of the discount within Drupal\google_tag\Plugin\GoogleTag\Event\Commerce\PurchaseEvent.

Proposed resolution

I have two possible ideas, we could make the value configurable, allowing choice/combination of the values. Likely there is already code that allows us to pull adjustment types and populate options. getAdjustedUnitPrice() already allows us to pass an array of the adjustments we want, so we just spit out our configured array into line 78 of PurchaseEvent.

Or, if we think no one will ever want their fees and taxes to count as a discount, we simply hardcode the option. I'm pretty heavily leaning towards this, as I can only imagine taxes and fees in a discount causing confusion.

Which is how I ended up here in the first place.

Remaining tasks

Do it.

User interface changes

None, depending.

API changes

None.

Data model changes

None.

πŸ“Œ Task
Status

Active

Version

2.0

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States kazajhodo

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @kazajhodo
  • πŸ‡ΊπŸ‡ΈUnited States kazajhodo

    I've pushed my fix into the fork.

    Then I'm going to use a patch to resolve this locally for the time being, so here is that should anyone find it useful.

  • πŸ‡ΊπŸ‡ΈUnited States kazajhodo
  • Oh my god....why in the f@ck is a Google Tag module involved in discount calculations and adjustments?

    This issue has nothing to do with the placement of the Google Tag Manager script. Is the goal create a version of Quickbooks?

    This is a prime example of mission creep. Over time, functionality is built up to please users, but that functionality comes with a lifetime service commitment, and that's usually not clear at in the beginning.

    The user is probably delighted they got some free engineering resources to help with a personal problem.

    Meanwhile, the Module doesn't work correctly....

  • πŸ‡ΊπŸ‡ΈUnited States kazajhodo

    @westlinnsamething

    The module is just grabbing data and setting keys/values, regarding an assumed base requirement of a purchase event. There are assumptions regarding generally what the broad user case would want those values to be.

    In this case passing:

    • currency
    • value
    • transaction_id
    • shipping
    • tax
    • items

    Then for item data:

    • item_id
    • item_name
    • affiliation
    • discount
    • price
    • quantity

    In my case, for tax, the number was not what they expected. On review, it seems to me that a client would in most cases, if not all, expect the data as I've adjusted it; and be more-than-likely confused in all other circumstances.

    It doesn't have to change of course, I'm just bringing it up incase it should.

Production build 0.71.5 2024