Commit 9b3675df by 宋毅

tj

parent 9aaced81
...@@ -5,7 +5,7 @@ class InternalCallsNotify extends APIBase { ...@@ -5,7 +5,7 @@ class InternalCallsNotify extends APIBase {
//内部通知调用 //内部通知调用
constructor() { constructor() {
super(); super();
// this.orderinfoSve = system.getObject("service.dbcorder.orderinfoSve"); this.orderinfoSve = system.getObject("service.dbcorder.orderinfoSve");
} }
async updateTmStatus(pobj, qobj, req) { async updateTmStatus(pobj, qobj, req) {
return system.getResultSuccess(); return system.getResultSuccess();
......
...@@ -886,6 +886,30 @@ class OrderInfoService extends ServiceBase { ...@@ -886,6 +886,30 @@ class OrderInfoService extends ServiceBase {
return system.getResultSuccess(); return system.getResultSuccess();
} }
async updateTmStatus(pobj) {
if (!pobj.tbCode) {
return system.getResult(null, "处理失败,tbCode不能为空,30160");
}
if (!pobj.tmStatus) {
return system.getResult(null, "处理失败,tmStatus不能为空,30163");
}
if (!pobj.tmStatusName) {
return system.getResult(null, "处理失败,tmStatusName不能为空,30165");
}
// if (pobj.submitTime) {
// }//修改提报时间
// if (pobj.registNumInfo && pobj.registNumInfo.tmRegistNum) {
// }//更新商标申请号
}
async opOrderPayCallBackTl(parmas, appInfo) {//操作订单付款回调---通联 async opOrderPayCallBackTl(parmas, appInfo) {//操作订单付款回调---通联
var item = await this.dao.getItemStatusByOrderNo(parmas.orderNo) var item = await this.dao.getItemStatusByOrderNo(parmas.orderNo)
if (!item) { if (!item) {
......
1.更新注册号、状态、官文 1.更新注册号、状态、官文
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
地址:notifyaction/internalCallsNotify/updateTmStatus 地址:notifyaction/internalCallsNotify/updateTmStatus
参数: 参数:
{ {
"orderNo": "TB26202002271337v5y9",//订单号
"tbCode": "TB26202002271337v5y9",//提报号 "tbCode": "TB26202002271337v5y9",//提报号
"tmStatus": "13",//官文状态编码 "tmStatus": "13",//官文状态编码
"tmStatusName": "已下发商标注册证",//官文状态名称 "tmStatusName": "已下发商标注册证",//官文状态名称
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment