pospal 银豹收银系统-凯发网站
开发平台

pospal 银豹收银系统-凯发网站

1. 查询历史盘点记录


接口地址 http://host:port/pospal-api2/openapi/v1/stocktakingopenapi/querystocktakinghistories
请求头
  • user-agent: openapi
  • content-type: application/json; charset=utf-8
  • accept-encoding: gzip,deflate
  • time-stamp: 1437528688233
  • data-signature: bf706e6ac693ba3b1babd32e6713431d
  • 请求方式 post
    请求体
  • {
  • "appid": "abcdefghijklmn",
  • "starttime": "2016-09-30 23:59:59",
  • "endtime": "2016-10-31 23:59:59"
  • }
  • 参数名 是否必须 类型 说明
    appid string pospal配置的访问凭证
    starttime string 开始时间,格式为yyyy-mm-dd hh:mm:ss,不包含开始时间
    endtime string 结束时间,格式为yyyy-mm-dd hh:mm:ss,包含结束时间 enddate – startdate <=90天
    返回结果
  • {
  • "status": "success",
  • "messages": [],
  • "data": [
  • {
  • "id": 8422,
  • "createddatetime": "2017-09-07 11:47:31",
  • "cashieruid": 832101480292933200,
  • "operatetype": 1,
  • "remark": "",
  • "markname": ""
  • }
  • ]
  • }
  • 字段名 类型 说明
    status string 是否正确处理请求,返回success或error,不区分大小写
    messages string[] 处理结果的消息
    errorcode int 业务处理的错误代码,参见错误代码表
    id int 盘点记录id
    createddatetime string 盘点记录创建时间
    cashieruid long 收银员uid
    operatetype bigdecimal 盘点方式:1 明盘;0或2 暗盘。
    remark string 盘点备注
    markname string 标记名称==》如标识货架等

    2. 查询某一盘点记录明细


    接口地址 http://host:port/pospal-api2/openapi/v1/stocktakingopenapi/querystocktakingitems
    请求头
  • user-agent: openapi
  • content-type: application/json; charset=utf-8
  • accept-encoding: gzip,deflate
  • time-stamp: 1437528688233
  • data-signature: bf706e6ac693ba3b1babd32e6713431d
  • 请求方式 post
    请求体
  • {
  • "appid": "abcdefghijklmn",
  • "stocktakingid": 8422
  • }
  • 参数名 是否必须 类型 说明
    appid string pospal配置的访问凭证
    stocktakingid int 盘点记录id
    返回结果
  • {
  • "status": "success",
  • "messages": [],
  • "data": [
  • {
  • "stocktakingid": 8422,
  • "productuid": 242258285416665380,
  • "oldstock": 66,
  • "newstock": 30,
  • "buyprice": 2,
  • "sellprice": 15,
  • "loseprice": 2,
  • "takingstock": 10,
  • "takingstockunituid": 1500947506799175400
  • }
  • ]
  • }
  • 字段名 类型 说明
    status string 是否正确处理请求,返回success或error,不区分大小写
    messages string[] 处理结果的消息
    errorcode int 业务处理的错误代码,参见错误代码表
    stocktakingid int 盘点记录id
    productuid long 商品唯一标识
    oldstock int 盘点前库存(基准单位)
    newstock int 盘点后库存(基准单位)
    buyprice bigdecimal 进货价
    sellprice bigdecimal 销售价
    loseprice bigdecimal 亏损价
    takingstock int 盘点时的库存量==》结合盘点单位使用
    takingstockunituid long 盘点单位

    3. 查询某一盘点详情


    接口地址 http://host:port/pospal-api2/openapi/v1/stocktakingopenapi/querystocktakingdetailsbyid
    请求头
  • user-agent: openapi
  • content-type: application/json; charset=utf-8
  • accept-encoding: gzip,deflate
  • time-stamp: 1437528688233
  • data-signature: bf706e6ac693ba3b1babd32e6713431d
  • 请求方式 post
    请求体
  • {
  • "appid": "abcdefghijklmn",
  • "stocktakingid": 8422
  • }
  • 参数名 是否必须 类型 说明
    appid string pospal配置的访问凭证
    stocktakingid int 盘点记录id
    返回结果
  • {
  • "status": "success",
  • "messages": [],
  • "data":
  • {
  • "id": 8422,
  • "createddatetime": "2017-09-07 11:47:31",
  • "cashieruid": 832101480292933200,
  • "operatetype": 1,
  • "remark": "",
  • "markname": "",
  • "items": [{
  • "stocktakingid": 8422,
  • "productuid": 293529870988965885,
  • "oldstock": 123.000,
  • "newstock": 123.000,
  • "buyprice": 2.00,
  • "sellprice": 12.00,
  • "loseprice": 2.00
  • }, {
  • "stocktakingid": 8422,
  • "productuid": 74308856246946452,
  • "oldstock": -217.700,
  • "newstock": -217.700,
  • "buyprice": 13.85,
  • "sellprice": 20.00,
  • "loseprice": 13.85
  • }]
  • }
  • }
  • 字段名 类型 说明
    status string 是否正确处理请求,返回success或error,不区分大小写
    messages string[] 处理结果的消息
    errorcode int 业务处理的错误代码,参见错误代码表
    id int 盘点记录id
    createddatetime string 盘点记录创建时间
    cashieruid long 收银员uid
    operatetype bigdecimal 盘点方式:1 明盘;0或2 暗盘。
    remark string 盘点备注
    markname string 标记名称==》如标识货架等
    items 数组 盘点明细列表,详情请见查询某一盘点记录明细

    网站地图