60.4k views
4 votes
What is a recommended approach to keep in mind when implementing the Commerce pricing function?

A. Ensure that parts and prices are added in the part database.
B. Ensure that the part database is indexed.
C. Use data structures such as dictionaries to store line information that needs to be referenced later in the code. A hash is faster than looping each time.
D. Ensure that Ajax is enabled.

User Awa
by
7.8k points

1 Answer

2 votes

Final answer:

To implement the Commerce pricing function effectively, consider adding parts and prices to the part database, indexing the part database, and using data structures like dictionaries to store line information.

Step-by-step explanation:

A recommended approach to keep in mind when implementing the Commerce pricing function is to:

  1. Ensure that parts and prices are added in the part database.
  2. Ensure that the part database is indexed.
  3. Use data structures such as dictionaries to store line information that needs to be referenced later in the code. A hash is faster than looping each time.

By following these steps, you can ensure efficient and accurate pricing calculations in the Commerce system.

User Jannis M
by
8.6k points