@be-link/pos-cli-nodejs 1.0.187 → 1.0.189
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
CHANGED
|
@@ -1002,6 +1002,8 @@ export declare namespace Service {
|
|
|
1002
1002
|
mainOrderId: string;
|
|
1003
1003
|
/** 差价金额(分) */
|
|
1004
1004
|
fee: number;
|
|
1005
|
+
/** 单价(分),交通等按份计价时有值 */
|
|
1006
|
+
unitFee?: number;
|
|
1005
1007
|
/** 差价类型 */
|
|
1006
1008
|
type: string;
|
|
1007
1009
|
/** 描述 */
|
|
@@ -1049,6 +1051,8 @@ export declare namespace Service {
|
|
|
1049
1051
|
hasAdjustmentOrder: boolean;
|
|
1050
1052
|
/** 是否需要出行材料(与 orderTouristMaterialService.queryExists 一致) */
|
|
1051
1053
|
needTourMaterial: boolean;
|
|
1054
|
+
/** 订单商品快照 TradeOrderItemInfo:剩余份数(无则回退 quantity,与首行快照口径一致) */
|
|
1055
|
+
remainQuantity: number;
|
|
1052
1056
|
}
|
|
1053
1057
|
type queryLiveRoomOrderList<K extends (keyof DTO.QueryDataBlockTypeMap)[]> = {
|
|
1054
1058
|
total: number;
|