11.商品规格修改(gy.erp.item.sku.update)

马浩栋发表于:2019年01月28日 17:21:50更新于:2019年01月30日 09:32:16

1.1    业务简述

1.2    请求参数

字段名

类型

描述

必填

备注

item_id

string

商品id


id

string

规格id

id,code必填一项

code

string

规格代码


name

string

规格名称


stock_status_code

string

库存状态code


weight

string

重量


sales_point

string

销售积分


package_point

string

打包积分


purchase_price

string

标准进价


sales_price

string

标准售价


agent_price

string

代理售价


cost_price

string

成本价


note

string

备注


Json请求示例:

{
    "appkey": "112194",
    "sessionkey": "754a424bb6874a1fb8a7371f05e83974",
    "method": "gy.erp.item.sku.update",
    "item_id": "408",
    "code": "43212",
    "name": "品种:金装版",
    "weight": "100000",
    "purchase_price": "285",
    "sales_price": "250",
    "agent_price": "133",
    "cost_price": "763",
    "note": "7test...",
    "sign": "B923B6D76EF135966B6B34432C633D81"
}

1.3    响应参数

字段名

类型

描述

必填

备注

success

boolean

成功与否



errorCode

string

错误代码



subErrorCode

string

子错误代码



errorDesc

string

错误描述



subErrorDesc

string

子错误描述



requestMethod

string

请求方法



id

string

规格id



code

string

规格code



created

string

创建时间



Json返回示例:

{
    "success": false,
    "errorCode": "PARAM ERR",
    "subErrorCode": "401",
    "errorDesc": "商品不存在",
    "subErrorDesc": "",
    "requestMethod": "gy.erp.item.sku.update"
}