1/*
2 * Legal Notice
3 *
4 * This document and associated source code (the "Work") is a part of a
5 * benchmark specification maintained by the TPC.
6 *
7 * The TPC reserves all right, title, and interest to the Work as provided
8 * under U.S. and international laws, including without limitation all patent
9 * and trademark rights therein.
10 *
11 * No Warranty
12 *
13 * 1.1 TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE INFORMATION
14 * CONTAINED HEREIN IS PROVIDED "AS IS" AND WITH ALL FAULTS, AND THE
15 * AUTHORS AND DEVELOPERS OF THE WORK HEREBY DISCLAIM ALL OTHER
16 * WARRANTIES AND CONDITIONS, EITHER EXPRESS, IMPLIED OR STATUTORY,
17 * INCLUDING, BUT NOT LIMITED TO, ANY (IF ANY) IMPLIED WARRANTIES,
18 * DUTIES OR CONDITIONS OF MERCHANTABILITY, OF FITNESS FOR A PARTICULAR
19 * PURPOSE, OF ACCURACY OR COMPLETENESS OF RESPONSES, OF RESULTS, OF
20 * WORKMANLIKE EFFORT, OF LACK OF VIRUSES, AND OF LACK OF NEGLIGENCE.
21 * ALSO, THERE IS NO WARRANTY OR CONDITION OF TITLE, QUIET ENJOYMENT,
22 * QUIET POSSESSION, CORRESPONDENCE TO DESCRIPTION OR NON-INFRINGEMENT
23 * WITH REGARD TO THE WORK.
24 * 1.2 IN NO EVENT WILL ANY AUTHOR OR DEVELOPER OF THE WORK BE LIABLE TO
25 * ANY OTHER PARTY FOR ANY DAMAGES, INCLUDING BUT NOT LIMITED TO THE
26 * COST OF PROCURING SUBSTITUTE GOODS OR SERVICES, LOST PROFITS, LOSS
27 * OF USE, LOSS OF DATA, OR ANY INCIDENTAL, CONSEQUENTIAL, DIRECT,
28 * INDIRECT, OR SPECIAL DAMAGES WHETHER UNDER CONTRACT, TORT, WARRANTY,
29 * OR OTHERWISE, ARISING IN ANY WAY OUT OF THIS OR ANY OTHER AGREEMENT
30 * RELATING TO THE WORK, WHETHER OR NOT SUCH AUTHOR OR DEVELOPER HAD
31 * ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES.
32 *
33 * Contributors:
34 * Gradient Systems
35 */
36#ifndef PRICING_H
37#define PRICING_H
38#include "decimal.h"
39
40typedef struct DS_PRICING_T {
41 decimal_t wholesale_cost;
42 decimal_t list_price;
43 decimal_t sales_price;
44 int quantity;
45 decimal_t ext_discount_amt;
46 decimal_t ext_sales_price;
47 decimal_t ext_wholesale_cost;
48 decimal_t ext_list_price;
49 decimal_t tax_pct;
50 decimal_t ext_tax;
51 decimal_t coupon_amt;
52 decimal_t ship_cost;
53 decimal_t ext_ship_cost;
54 decimal_t net_paid;
55 decimal_t net_paid_inc_tax;
56 decimal_t net_paid_inc_ship;
57 decimal_t net_paid_inc_ship_tax;
58 decimal_t net_profit;
59 decimal_t refunded_cash;
60 decimal_t reversed_charge;
61 decimal_t store_credit;
62 decimal_t fee;
63 decimal_t net_loss;
64} ds_pricing_t;
65
66typedef struct DS_LIMITS_T {
67 int nId;
68 char *szQuantity;
69 char *szMarkUp;
70 char *szDiscount;
71 char *szWholesale;
72 char *szCoupon;
73} ds_limits_t;
74
75void set_pricing(int nTabId, ds_pricing_t *pPricing);
76#endif
77