@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/pos-cli-nodejs",
3
- "version": "1.0.187",
3
+ "version": "1.0.189",
4
4
  "description": "正向订单服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -421,6 +421,8 @@ export declare namespace Service {
421
421
  fromUserRole?: string;
422
422
  /** 预订人手机号 */
423
423
  reserveMobile?: string;
424
+ /** ECS 门店 ID(写入订单表快照) */
425
+ ecsStoreId?: string;
424
426
  };
425
427
  commodityInfo: {
426
428
  /** 商品ID */
@@ -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;