Commit c8619ab6 by 任晓松

商标驳回复审

parent 7c851294
......@@ -3,7 +3,7 @@ const settings = require("../../../../config/settings");
const uiconfig = system.getUiConfig2(settings.appKey);
module.exports = (db, DataTypes) => {
return db.define("orderofficial", {
sourceNo: DataTypes.STRING(128), // 订单号
serviceNo: DataTypes.STRING(128), // 订单号
channelUserId: DataTypes.STRING(128), // 用户id
officialInfo: DataTypes.JSON // 官文信息
}, {
......@@ -12,7 +12,7 @@ module.exports = (db, DataTypes) => {
version: true,
freezeTableName: true,
timestamps: true,
updatedAt: true,
updated_at: true,
tableName: 'c_delivery_official',
validate: {
......
......@@ -219,7 +219,7 @@ class OrderInfoService extends ServiceBase {
}
/**
* 修改交付信息并推送到交付中心
* 修改交付信息
* @param pobj
* @param actionBody
* @returns {Promise<{msg: *, data: (*|null), status: number}>}
......@@ -404,7 +404,7 @@ class OrderInfoService extends ServiceBase {
let data = {
serviceNo: actionBody.orderNo,
channelUserId:orderItem.channelUserId,
officialInfo: actionBody.officialData,
officialInfo: JSON.stringify(actionBody.officialData),
created_at: new Date(),
updated_at: new Date()
}
......
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