@be-link/pos-cli-nodejs 1.0.184 → 1.0.186
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/package.json +1 -1
- package/pos/modules/orderQuery/types.d.ts +2 -0
- package/types.d.ts +4 -0
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -88,6 +88,8 @@ export interface IPositiveOrder {
|
|
|
88
88
|
depositFee: number;
|
|
89
89
|
/** 定金有效期截止时间(毫秒时间戳) */
|
|
90
90
|
depositExpireAt: number;
|
|
91
|
+
/** 剩余定金金额(分) */
|
|
92
|
+
remainDepositFee?: number;
|
|
91
93
|
}
|
|
92
94
|
export interface IPositiveAttributes {
|
|
93
95
|
/** 订单ID */
|
|
@@ -98,6 +100,8 @@ export interface IPositiveAttributes {
|
|
|
98
100
|
isFirstTrade: boolean;
|
|
99
101
|
/** 是否合并过其它订单 */
|
|
100
102
|
hasMergedOrder: boolean;
|
|
103
|
+
/** 是否已预约 */
|
|
104
|
+
isBooked: boolean;
|
|
101
105
|
/** 是否合并到了其它订单 */
|
|
102
106
|
isMerged: boolean;
|
|
103
107
|
/** 是否修改过餐食 */
|