@be-link/pos-cli-nodejs 0.0.171 → 0.0.173
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/index.d.ts +2 -1
- package/index.js +3 -1
- package/package.json +1 -1
- package/pos/modules/orderQuery/types.d.ts +13 -0
package/index.d.ts
CHANGED
|
@@ -7,12 +7,13 @@ import queryByCommodityService from './pos/modules/orderQuery/commodity';
|
|
|
7
7
|
import queryByStoreService from './pos/modules/orderQuery/store';
|
|
8
8
|
import queryByUserService from './pos/modules/orderQuery/user';
|
|
9
9
|
import queryByWebService from './pos/modules/orderQuery/web';
|
|
10
|
+
import queryBySupplierService from './pos/modules/orderQuery/supplier';
|
|
10
11
|
import orderNoteService from './pos/modules/orderNote/service';
|
|
11
12
|
import orderJobService from './pos/modules/orderJob/service';
|
|
12
13
|
import dataMigrateService from './pos/modules/dataMigrate/service';
|
|
13
14
|
export {
|
|
14
15
|
/** 业务模块 */
|
|
15
|
-
orderCoreService, orderFulfillService, queryByCommodityService, queryByStoreService, queryByUserService, queryByWebService, orderNoteService, orderJobService, dataMigrateService,
|
|
16
|
+
orderCoreService, orderFulfillService, queryByCommodityService, queryByStoreService, queryByUserService, queryByWebService, queryBySupplierService, orderNoteService, orderJobService, dataMigrateService,
|
|
16
17
|
/** 枚举类 */
|
|
17
18
|
PosConstants, PosDto,
|
|
18
19
|
/** 错误类 */
|
package/index.js
CHANGED
|
@@ -26,7 +26,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
26
26
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
27
27
|
};
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
-
exports.BizError = exports.PosDto = exports.PosConstants = exports.dataMigrateService = exports.orderJobService = exports.orderNoteService = exports.queryByWebService = exports.queryByUserService = exports.queryByStoreService = exports.queryByCommodityService = exports.orderFulfillService = exports.orderCoreService = void 0;
|
|
29
|
+
exports.BizError = exports.PosDto = exports.PosConstants = exports.dataMigrateService = exports.orderJobService = exports.orderNoteService = exports.queryBySupplierService = exports.queryByWebService = exports.queryByUserService = exports.queryByStoreService = exports.queryByCommodityService = exports.orderFulfillService = exports.orderCoreService = void 0;
|
|
30
30
|
const PosConstants = __importStar(require("vitality-meta/enums/pos"));
|
|
31
31
|
exports.PosConstants = PosConstants;
|
|
32
32
|
const PosDto = __importStar(require("./types"));
|
|
@@ -45,6 +45,8 @@ const user_1 = __importDefault(require("./pos/modules/orderQuery/user"));
|
|
|
45
45
|
exports.queryByUserService = user_1.default;
|
|
46
46
|
const web_1 = __importDefault(require("./pos/modules/orderQuery/web"));
|
|
47
47
|
exports.queryByWebService = web_1.default;
|
|
48
|
+
const supplier_1 = __importDefault(require("./pos/modules/orderQuery/supplier"));
|
|
49
|
+
exports.queryBySupplierService = supplier_1.default;
|
|
48
50
|
const service_3 = __importDefault(require("./pos/modules/orderNote/service"));
|
|
49
51
|
exports.orderNoteService = service_3.default;
|
|
50
52
|
const service_4 = __importDefault(require("./pos/modules/orderJob/service"));
|
package/package.json
CHANGED
|
@@ -146,6 +146,19 @@ export declare namespace Service {
|
|
|
146
146
|
categoryTwoList?: string[];
|
|
147
147
|
/** 商品id */
|
|
148
148
|
itemIdList?: string[];
|
|
149
|
+
/** 页码. 如果不传就查询所有 */
|
|
150
|
+
pageIndex?: number;
|
|
151
|
+
/** 页目条数 */
|
|
152
|
+
pageSize?: number;
|
|
153
|
+
/** 排序规则 */
|
|
154
|
+
sort?: {
|
|
155
|
+
/** 出团日期 */
|
|
156
|
+
fulfillAt?: 'ASC' | 'DESC';
|
|
157
|
+
/** 支付时间 */
|
|
158
|
+
paidAt?: 'ASC' | 'DESC';
|
|
159
|
+
/** 订单创建时间 */
|
|
160
|
+
createdAt?: 'ASC' | 'DESC';
|
|
161
|
+
};
|
|
149
162
|
/** 查询块 */
|
|
150
163
|
needBlocks: K;
|
|
151
164
|
}
|