@trusted-solutions/sdit.models 0.57.0-alpha.0 → 0.57.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/models/order.d.ts +5 -0
- package/package.json +1 -1
package/models/order.d.ts
CHANGED
|
@@ -97,6 +97,11 @@ export interface Order extends BaseOrder {
|
|
|
97
97
|
subtotal: number;
|
|
98
98
|
/** 外送費 */
|
|
99
99
|
deliveryCharge?: number;
|
|
100
|
+
/**
|
|
101
|
+
* 服務費
|
|
102
|
+
* undefined=沒有此收費名目
|
|
103
|
+
*/
|
|
104
|
+
serviceCharge?: number;
|
|
100
105
|
/** subtotal - sigma(discount.discountReferences.orderItemId === null) + deliveryCharge */
|
|
101
106
|
totalAmount: number;
|
|
102
107
|
salesAmountExcludeTax: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trusted-solutions/sdit.models",
|
|
3
|
-
"version": "0.57.
|
|
3
|
+
"version": "0.57.1",
|
|
4
4
|
"description": "TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|