@be-link/pos-cli-nodejs
v1.0.50
Published
正向订单服务Nodejs客户端
Downloads
1,372
Readme
pos-cli-nodejs
正向订单服务Nodejs客户端
安装
npm install @be-link/pos-cli-nodejs
使用
配置环境变量
CONTAINER_ENV = SFC(云函数) || CLOUD_RUN(云托管)
SDK依赖CONTAINER_ENV
来识别当前运行环境,默认为SFC
, 请根据使用SDK的环境来配置该变量。
当CONTAINER_ENV
为SFC
时,SDK会从公网访问POS, 否则使用内网域名(更快, 更安全).
引入模块
// 订单操作类
import { orderCoreService } from '@be-link/pos-cli-nodejs'
// 订单履约类
import { orderFulfillService } from '@be-link/pos-cli-nodejs'
// 商品维度查询订单
import { queryByCommodityService } from '@be-link/pos-cli-nodejs'
// 用户维度查询订单
import { queryByUserService } from '@be-link/pos-cli-nodejs'
// 门店维度查询订单
import { queryByStoreService } from '@be-link/pos-cli-nodejs'
// web端后台查询订单
import { queryByWebService } from '@be-link/pos-cli-nodejs'
// 订单备注类
import { orderNoteService } from '@be-link/pos-cli-nodejs'
// 枚举类
import { PosConstants } from '@be-link/pos-cli-nodejs'