diff --git a/backend/ibizodooservice-core/src/main/groovy/cn/ibizlab/ibizodoo/base/iractionsserver/dto/IrActionsServerDTO.groovy b/backend/ibizodooservice-core/src/main/groovy/cn/ibizlab/ibizodoo/base/iractionsserver/dto/IrActionsServerDTO.groovy index 61da1a8860f6d347b5587cd372db547e76887e0f..52bab260e507c92840ee34b789a2869ea100da57 100644 --- a/backend/ibizodooservice-core/src/main/groovy/cn/ibizlab/ibizodoo/base/iractionsserver/dto/IrActionsServerDTO.groovy +++ b/backend/ibizodooservice-core/src/main/groovy/cn/ibizlab/ibizodoo/base/iractionsserver/dto/IrActionsServerDTO.groovy @@ -18,6 +18,27 @@ class IrActionsServerDTO extends GroovyDTO { */ @JsonProperty("model_id") String modelId + /** + * 「要更新的字段」 + */ + @JsonProperty("update_field_id") + String updateFieldId + /** + * 「更新相关模型」 + */ + @JsonProperty("update_related_model_id") + String updateRelatedModelId + /** + * 「创建记录」 + * 字典[模型] + */ + @JsonProperty("crud_model_id") + String crudModelId + /** + * 「链接字段」 + */ + @JsonProperty("link_field_id") + String linkFieldId /** * 「截止日期至」 */ @@ -39,11 +60,31 @@ class IrActionsServerDTO extends GroovyDTO { */ @JsonProperty("activity_summary") String activitySummary + /** + * 「活动类型」 + */ + @JsonProperty("activity_type_id") + String activityTypeId + /** + * 「活动类型名称」 + */ + @JsonProperty("activity_type_name") + String activityTypeName /** * 「用户字段」 */ @JsonProperty("activity_user_field_name") String activityUserFieldName + /** + * 「负责人」 + */ + @JsonProperty("activity_user_id") + String activityUserId + /** + * 「负责人」 + */ + @JsonProperty("activity_user_name") + String activityUserName /** * 「用户类型」 * 字典[用户类型] @@ -132,6 +173,16 @@ class IrActionsServerDTO extends GroovyDTO { */ @JsonProperty("state") String state + /** + * 「EMail模板」 + */ + @JsonProperty("template_id") + String templateId + /** + * 「EMail模板」 + */ + @JsonProperty("template_name") + String templateName /** * 「动作类型」 */ @@ -192,6 +243,47 @@ class IrActionsServerDTO extends GroovyDTO { } + /** + * 设置「要更新的字段」值 + * @param val + */ + IrActionsServerDTO setUpdateFieldId(String updateFieldId) { + this.updateFieldId = updateFieldId + return this + } + + + /** + * 设置「更新相关模型」值 + * @param val + */ + IrActionsServerDTO setUpdateRelatedModelId(String updateRelatedModelId) { + this.updateRelatedModelId = updateRelatedModelId + return this + } + + + /** + * 设置「创建记录」值 + * 字典[模型] + * @param val + */ + IrActionsServerDTO setCrudModelId(String crudModelId) { + this.crudModelId = crudModelId + return this + } + + + /** + * 设置「链接字段」值 + * @param val + */ + IrActionsServerDTO setLinkFieldId(String linkFieldId) { + this.linkFieldId = linkFieldId + return this + } + + /** * 设置「截止日期至」值 * @param val @@ -233,6 +325,26 @@ class IrActionsServerDTO extends GroovyDTO { } + /** + * 设置「活动类型」值 + * @param val + */ + IrActionsServerDTO setActivityTypeId(String activityTypeId) { + this.activityTypeId = activityTypeId + return this + } + + + /** + * 设置「活动类型名称」值 + * @param val + */ + IrActionsServerDTO setActivityTypeName(String activityTypeName) { + this.activityTypeName = activityTypeName + return this + } + + /** * 设置「用户字段」值 * @param val @@ -243,6 +355,26 @@ class IrActionsServerDTO extends GroovyDTO { } + /** + * 设置「负责人」值 + * @param val + */ + IrActionsServerDTO setActivityUserId(String activityUserId) { + this.activityUserId = activityUserId + return this + } + + + /** + * 设置「负责人」值 + * @param val + */ + IrActionsServerDTO setActivityUserName(String activityUserName) { + this.activityUserName = activityUserName + return this + } + + /** * 设置「用户类型」值 * 字典[用户类型] @@ -411,6 +543,26 @@ class IrActionsServerDTO extends GroovyDTO { } + /** + * 设置「EMail模板」值 + * @param val + */ + IrActionsServerDTO setTemplateId(String templateId) { + this.templateId = templateId + return this + } + + + /** + * 设置「EMail模板」值 + * @param val + */ + IrActionsServerDTO setTemplateName(String templateName) { + this.templateName = templateName + return this + } + + /** * 设置「动作类型」值 * @param val diff --git a/backend/ibizodooservice-core/src/main/groovy/cn/ibizlab/ibizodoo/base/ircron/dto/IrCronDTO.groovy b/backend/ibizodooservice-core/src/main/groovy/cn/ibizlab/ibizodoo/base/ircron/dto/IrCronDTO.groovy index 5816e68a046bff16db3da5ac56ec878e0619e8a8..800a9a1710f8028de6e48f7303ec24d380e6fb2d 100644 --- a/backend/ibizodooservice-core/src/main/groovy/cn/ibizlab/ibizodoo/base/ircron/dto/IrCronDTO.groovy +++ b/backend/ibizodooservice-core/src/main/groovy/cn/ibizlab/ibizodoo/base/ircron/dto/IrCronDTO.groovy @@ -18,6 +18,156 @@ class IrCronDTO extends GroovyDTO { */ @JsonProperty("model_id") String modelId + /** + * 「代码」 + */ + @JsonProperty("code") + String code + /** + * 「值类型」 + * 字典[值类型] + */ + @JsonProperty("evaluation_type") + String evaluationType + /** + * 「字段更新路径」 + */ + @JsonProperty("update_path") + String updatePath + /** + * 「要更新的字段」 + */ + @JsonProperty("update_field_id") + String updateFieldId + /** + * 「更新相关模型」 + */ + @JsonProperty("update_related_model_id") + String updateRelatedModelId + /** + * 「值」 + */ + @JsonProperty("value") + String value + /** + * 「布尔值」 + * 字典[布尔值] + */ + @JsonProperty("update_boolean_value") + String updateBooleanValue + /** + * 「创建记录」 + * 字典[模型] + */ + @JsonProperty("crud_model_id") + String crudModelId + /** + * 「链接字段」 + */ + @JsonProperty("link_field_id") + String linkFieldId + /** + * 「发送短信为」 + * 字典[发送短信为] + */ + @JsonProperty("sms_method") + String smsMethod + /** + * 「EMail模板」 + */ + @JsonProperty("template_id") + String templateId + /** + * 「订阅收件人」 + * 字典[是否] + */ + @JsonProperty("mail_post_autofollow") + Integer mailPostAutofollow + /** + * 「活动类型」 + */ + @JsonProperty("activity_type_id") + String activityTypeId + /** + * 「用户类型」 + * 字典[用户类型] + */ + @JsonProperty("activity_user_type") + String activityUserType + /** + * 「用户字段」 + */ + @JsonProperty("activity_user_field_name") + String activityUserFieldName + /** + * 「负责人」 + */ + @JsonProperty("activity_user_id") + String activityUserId + /** + * 「备注」 + */ + @JsonProperty("activity_note") + String activityNote + /** + * 「用途」 + * 字典[用途] + */ + @JsonProperty("usage") + String usage + /** + * 「类型」 + * 字典[类型] + */ + @JsonProperty("state") + String state + /** + * 「活动类型名称」 + */ + @JsonProperty("activity_type_name") + String activityTypeName + /** + * 「负责人」 + */ + @JsonProperty("activity_user_name") + String activityUserName + /** + * 「标题」 + */ + @JsonProperty("activity_summary") + String activitySummary + /** + * 「到期类型」 + * 字典[到期类型] + */ + @JsonProperty("activity_date_deadline_range_type") + String activityDateDeadlineRangeType + /** + * 「截止日期至」 + */ + @JsonProperty("activity_date_deadline_range") + Integer activityDateDeadlineRange + /** + * 「发送电子邮件」 + * 字典[发送电子邮件] + */ + @JsonProperty("mail_post_method") + String mailPostMethod + /** + * 「Webhook URL」 + */ + @JsonProperty("webhook_url") + String webhookUrl + /** + * 「EMail模板」 + */ + @JsonProperty("template_name") + String templateName + /** + * 「动作名称」 + */ + @JsonProperty("name") + String name /** * 「有效」 * 字典[是否] @@ -66,6 +216,11 @@ class IrCronDTO extends GroovyDTO { */ @JsonProperty("interval_type") String intervalType + /** + * 「服务器动作标识」 + */ + @JsonProperty("ir_actions_server_id") + String irActionsServerId /** * 「最后执行日期」 */ @@ -81,6 +236,16 @@ class IrCronDTO extends GroovyDTO { */ @JsonProperty("priority") Integer priority + /** + * 「执行帐户」 + */ + @JsonProperty("user_id") + String userId + /** + * 「执行帐户」 + */ + @JsonProperty("user_name") + String userName /** * 「更新时间」 */ @@ -103,6 +268,296 @@ class IrCronDTO extends GroovyDTO { } + /** + * 设置「代码」值 + * @param val + */ + IrCronDTO setCode(String code) { + this.code = code + return this + } + + + /** + * 设置「值类型」值 + * 字典[值类型] + * @param val + */ + IrCronDTO setEvaluationType(String evaluationType) { + this.evaluationType = evaluationType + return this + } + + + /** + * 设置「字段更新路径」值 + * @param val + */ + IrCronDTO setUpdatePath(String updatePath) { + this.updatePath = updatePath + return this + } + + + /** + * 设置「要更新的字段」值 + * @param val + */ + IrCronDTO setUpdateFieldId(String updateFieldId) { + this.updateFieldId = updateFieldId + return this + } + + + /** + * 设置「更新相关模型」值 + * @param val + */ + IrCronDTO setUpdateRelatedModelId(String updateRelatedModelId) { + this.updateRelatedModelId = updateRelatedModelId + return this + } + + + /** + * 设置「值」值 + * @param val + */ + IrCronDTO setValue(String value) { + this.value = value + return this + } + + + /** + * 设置「布尔值」值 + * 字典[布尔值] + * @param val + */ + IrCronDTO setUpdateBooleanValue(String updateBooleanValue) { + this.updateBooleanValue = updateBooleanValue + return this + } + + + /** + * 设置「创建记录」值 + * 字典[模型] + * @param val + */ + IrCronDTO setCrudModelId(String crudModelId) { + this.crudModelId = crudModelId + return this + } + + + /** + * 设置「链接字段」值 + * @param val + */ + IrCronDTO setLinkFieldId(String linkFieldId) { + this.linkFieldId = linkFieldId + return this + } + + + /** + * 设置「发送短信为」值 + * 字典[发送短信为] + * @param val + */ + IrCronDTO setSmsMethod(String smsMethod) { + this.smsMethod = smsMethod + return this + } + + + /** + * 设置「EMail模板」值 + * @param val + */ + IrCronDTO setTemplateId(String templateId) { + this.templateId = templateId + return this + } + + + /** + * 设置「订阅收件人」值 + * 字典[是否] + * @param val + */ + IrCronDTO setMailPostAutofollow(Integer mailPostAutofollow) { + this.mailPostAutofollow = mailPostAutofollow + return this + } + + + /** + * 设置「活动类型」值 + * @param val + */ + IrCronDTO setActivityTypeId(String activityTypeId) { + this.activityTypeId = activityTypeId + return this + } + + + /** + * 设置「用户类型」值 + * 字典[用户类型] + * @param val + */ + IrCronDTO setActivityUserType(String activityUserType) { + this.activityUserType = activityUserType + return this + } + + + /** + * 设置「用户字段」值 + * @param val + */ + IrCronDTO setActivityUserFieldName(String activityUserFieldName) { + this.activityUserFieldName = activityUserFieldName + return this + } + + + /** + * 设置「负责人」值 + * @param val + */ + IrCronDTO setActivityUserId(String activityUserId) { + this.activityUserId = activityUserId + return this + } + + + /** + * 设置「备注」值 + * @param val + */ + IrCronDTO setActivityNote(String activityNote) { + this.activityNote = activityNote + return this + } + + + /** + * 设置「用途」值 + * 字典[用途] + * @param val + */ + IrCronDTO setUsage(String usage) { + this.usage = usage + return this + } + + + /** + * 设置「类型」值 + * 字典[类型] + * @param val + */ + IrCronDTO setState(String state) { + this.state = state + return this + } + + + /** + * 设置「活动类型名称」值 + * @param val + */ + IrCronDTO setActivityTypeName(String activityTypeName) { + this.activityTypeName = activityTypeName + return this + } + + + /** + * 设置「负责人」值 + * @param val + */ + IrCronDTO setActivityUserName(String activityUserName) { + this.activityUserName = activityUserName + return this + } + + + /** + * 设置「标题」值 + * @param val + */ + IrCronDTO setActivitySummary(String activitySummary) { + this.activitySummary = activitySummary + return this + } + + + /** + * 设置「到期类型」值 + * 字典[到期类型] + * @param val + */ + IrCronDTO setActivityDateDeadlineRangeType(String activityDateDeadlineRangeType) { + this.activityDateDeadlineRangeType = activityDateDeadlineRangeType + return this + } + + + /** + * 设置「截止日期至」值 + * @param val + */ + IrCronDTO setActivityDateDeadlineRange(Integer activityDateDeadlineRange) { + this.activityDateDeadlineRange = activityDateDeadlineRange + return this + } + + + /** + * 设置「发送电子邮件」值 + * 字典[发送电子邮件] + * @param val + */ + IrCronDTO setMailPostMethod(String mailPostMethod) { + this.mailPostMethod = mailPostMethod + return this + } + + + /** + * 设置「Webhook URL」值 + * @param val + */ + IrCronDTO setWebhookUrl(String webhookUrl) { + this.webhookUrl = webhookUrl + return this + } + + + /** + * 设置「EMail模板」值 + * @param val + */ + IrCronDTO setTemplateName(String templateName) { + this.templateName = templateName + return this + } + + + /** + * 设置「动作名称」值 + * @param val + */ + IrCronDTO setName(String name) { + this.name = name + return this + } + + /** * 设置「有效」值 * 字典[是否] @@ -196,6 +651,16 @@ class IrCronDTO extends GroovyDTO { } + /** + * 设置「服务器动作标识」值 + * @param val + */ + IrCronDTO setIrActionsServerId(String irActionsServerId) { + this.irActionsServerId = irActionsServerId + return this + } + + /** * 设置「最后执行日期」值 * @param val @@ -226,6 +691,26 @@ class IrCronDTO extends GroovyDTO { } + /** + * 设置「执行帐户」值 + * @param val + */ + IrCronDTO setUserId(String userId) { + this.userId = userId + return this + } + + + /** + * 设置「执行帐户」值 + * @param val + */ + IrCronDTO setUserName(String userName) { + this.userName = userName + return this + } + + /** * 设置「更新时间」值 * @param val diff --git a/backend/ibizodooservice-core/src/main/groovy/cn/ibizlab/ibizodoo/base/respartner/dto/ResPartnerDTO.groovy b/backend/ibizodooservice-core/src/main/groovy/cn/ibizlab/ibizodoo/base/respartner/dto/ResPartnerDTO.groovy index 4cc3c7331aabb4b11dc0c9ebd6c035e2ddd3eb42..81163c0f758a641a388b13e20b92477235f18633 100644 --- a/backend/ibizodooservice-core/src/main/groovy/cn/ibizlab/ibizodoo/base/respartner/dto/ResPartnerDTO.groovy +++ b/backend/ibizodooservice-core/src/main/groovy/cn/ibizlab/ibizodoo/base/respartner/dto/ResPartnerDTO.groovy @@ -748,6 +748,11 @@ class ResPartnerDTO extends GroovyDTO { */ @JsonProperty("zip") String zip + /** + * 「相关员工」 + */ + @JsonProperty("employee_id") + String employeeId /** * 「头像128」 */ @@ -2221,6 +2226,16 @@ class ResPartnerDTO extends GroovyDTO { } + /** + * 设置「相关员工」值 + * @param val + */ + ResPartnerDTO setEmployeeId(String employeeId) { + this.employeeId = employeeId + return this + } + + /** * 设置「头像128」值 * @param val diff --git a/backend/ibizodooservice-core/src/main/groovy/cn/ibizlab/ibizodoo/mail/mailfollowers/dto/MailFollowersDTO.groovy b/backend/ibizodooservice-core/src/main/groovy/cn/ibizlab/ibizodoo/mail/mailfollowers/dto/MailFollowersDTO.groovy index 2ded8a22cd8f5dd944c2f81809a72aafec2f40e1..070cbf5e8b2f08bd323a0bf1d1171e41f00ffc62 100644 --- a/backend/ibizodooservice-core/src/main/groovy/cn/ibizlab/ibizodoo/mail/mailfollowers/dto/MailFollowersDTO.groovy +++ b/backend/ibizodooservice-core/src/main/groovy/cn/ibizlab/ibizodoo/mail/mailfollowers/dto/MailFollowersDTO.groovy @@ -14,10 +14,15 @@ import cn.ibizlab.central.plugin.groovy.dataentity.dto.* class MailFollowersDTO extends GroovyDTO { /** - * 「名称」 + * 「相关的业务伙伴」 */ @JsonProperty("name") String name + /** + * 「系统用户标识」 + */ + @JsonProperty("user_id") + String userId /** * 「关注类型」 * 字典[关注类型] @@ -51,7 +56,7 @@ class MailFollowersDTO extends GroovyDTO { String resModel /** - * 设置「名称」值 + * 设置「相关的业务伙伴」值 * @param val */ MailFollowersDTO setName(String name) { @@ -60,6 +65,16 @@ class MailFollowersDTO extends GroovyDTO { } + /** + * 设置「系统用户标识」值 + * @param val + */ + MailFollowersDTO setUserId(String userId) { + this.userId = userId + return this + } + + /** * 设置「关注类型」值 * 字典[关注类型] diff --git a/backend/ibizodooservice-core/src/main/groovy/cn/ibizlab/ibizodoo/mail/mailmessage/dto/MailMessageDTO.groovy b/backend/ibizodooservice-core/src/main/groovy/cn/ibizlab/ibizodoo/mail/mailmessage/dto/MailMessageDTO.groovy index b3c93932cf031e71f752c1c20f77606a445a68d6..dc832193bc87155bc519f5709103c0ce9498c927 100644 --- a/backend/ibizodooservice-core/src/main/groovy/cn/ibizlab/ibizodoo/mail/mailmessage/dto/MailMessageDTO.groovy +++ b/backend/ibizodooservice-core/src/main/groovy/cn/ibizlab/ibizodoo/mail/mailmessage/dto/MailMessageDTO.groovy @@ -61,6 +61,11 @@ class MailMessageDTO extends GroovyDTO { */ @JsonProperty("author_id") String authorId + /** + * 「作者」 + */ + @JsonProperty("author_name") + String authorName /** * 「内容」 */ @@ -164,6 +169,11 @@ class MailMessageDTO extends GroovyDTO { */ @JsonProperty("parent_id") String parentId + /** + * 「上级消息」 + */ + @JsonProperty("parent_name") + String parentName /** * 「已置顶」 */ @@ -227,6 +237,11 @@ class MailMessageDTO extends GroovyDTO { */ @JsonProperty("subtype_id") String subtypeId + /** + * 「子类型」 + */ + @JsonProperty("subtype_name") + String subtypeName /** * 「更新时间」 */ @@ -336,6 +351,16 @@ class MailMessageDTO extends GroovyDTO { } + /** + * 设置「作者」值 + * @param val + */ + MailMessageDTO setAuthorName(String authorName) { + this.authorName = authorName + return this + } + + /** * 设置「内容」值 * @param val @@ -534,6 +559,16 @@ class MailMessageDTO extends GroovyDTO { } + /** + * 设置「上级消息」值 + * @param val + */ + MailMessageDTO setParentName(String parentName) { + this.parentName = parentName + return this + } + + /** * 设置「已置顶」值 * @param val @@ -657,6 +692,16 @@ class MailMessageDTO extends GroovyDTO { } + /** + * 设置「子类型」值 + * @param val + */ + MailMessageDTO setSubtypeName(String subtypeName) { + this.subtypeName = subtypeName + return this + } + + /** * 设置「更新时间」值 * @param val diff --git a/backend/ibizodooservice-core/src/main/groovy/cn/ibizlab/ibizodoo/mail/mailnotification/dto/MailNotificationDTO.groovy b/backend/ibizodooservice-core/src/main/groovy/cn/ibizlab/ibizodoo/mail/mailnotification/dto/MailNotificationDTO.groovy index 454f5a3f60bd4451d81febb4b8bc3b25f0e62320..13e3fe081532b0dbdb9bdf7da2ba94278cb701c2 100644 --- a/backend/ibizodooservice-core/src/main/groovy/cn/ibizlab/ibizodoo/mail/mailnotification/dto/MailNotificationDTO.groovy +++ b/backend/ibizodooservice-core/src/main/groovy/cn/ibizlab/ibizodoo/mail/mailnotification/dto/MailNotificationDTO.groovy @@ -13,6 +13,11 @@ import cn.ibizlab.central.plugin.groovy.dataentity.dto.* @JsonInclude(JsonInclude.Include.NON_NULL) class MailNotificationDTO extends GroovyDTO { + /** + * 「消息内容」 + */ + @JsonProperty("message_content") + String messageContent /** * 「作者」 */ @@ -55,6 +60,11 @@ class MailNotificationDTO extends GroovyDTO { */ @JsonProperty("mail_message_id") String mailMessageId + /** + * 「消息记录名称」 + */ + @JsonProperty("mail_message_record_name") + String mailMessageRecordName /** * 「状态」 * 字典[状态] @@ -77,6 +87,11 @@ class MailNotificationDTO extends GroovyDTO { */ @JsonProperty("res_partner_id") String resPartnerId + /** + * 「收件人名称」 + */ + @JsonProperty("res_partner_name") + String resPartnerName /** * 「短信 ID」 */ @@ -88,6 +103,16 @@ class MailNotificationDTO extends GroovyDTO { @JsonProperty("sms_number") String smsNumber + /** + * 设置「消息内容」值 + * @param val + */ + MailNotificationDTO setMessageContent(String messageContent) { + this.messageContent = messageContent + return this + } + + /** * 设置「作者」值 * @param val @@ -170,6 +195,16 @@ class MailNotificationDTO extends GroovyDTO { } + /** + * 设置「消息记录名称」值 + * @param val + */ + MailNotificationDTO setMailMessageRecordName(String mailMessageRecordName) { + this.mailMessageRecordName = mailMessageRecordName + return this + } + + /** * 设置「状态」值 * 字典[状态] @@ -212,6 +247,16 @@ class MailNotificationDTO extends GroovyDTO { } + /** + * 设置「收件人名称」值 + * @param val + */ + MailNotificationDTO setResPartnerName(String resPartnerName) { + this.resPartnerName = resPartnerName + return this + } + + /** * 设置「短信 ID」值 * @param val diff --git a/backend/pom.xml b/backend/pom.xml index ab8cf66577263614aac6c127b4df6d17231cdb6b..8b3c759d02ccecd591d40081bd3f69ac7347174d 100644 --- a/backend/pom.xml +++ b/backend/pom.xml @@ -29,7 +29,7 @@ UTF-8 false - 8.1.0.572.15 + 8.1.0.572.22 2.17.1 diff --git a/doc/odoo/api/ServiceAPI/_sidebar.md b/doc/odoo/api/ServiceAPI/_sidebar.md index a1e4450fbe45a690a91d30da3e704f4b5bb606c5..565915d7c5e6305447f41ff6d4e066034bb94a48 100644 --- a/doc/odoo/api/ServiceAPI/_sidebar.md +++ b/doc/odoo/api/ServiceAPI/_sidebar.md @@ -61,6 +61,7 @@ * [单据关注者](api/ServiceAPI/deapi/mail_followers#mail_followers) * [发出邮件](api/ServiceAPI/deapi/mail_mail#mail_mail) * [消息](api/ServiceAPI/deapi/mail_message#mail_message) + * [消息通知](api/ServiceAPI/deapi/mail_notification#mail_notification) * [EMail模板](api/ServiceAPI/deapi/mail_template#mail_template) * [邮件会话](api/ServiceAPI/deapi/mail_thread#mail_thread) * [邮件跟踪值](api/ServiceAPI/deapi/mail_tracking_value#mail_tracking_value) diff --git a/doc/odoo/api/ServiceAPI/deapi/ir_actions_server.md b/doc/odoo/api/ServiceAPI/deapi/ir_actions_server.md index fa689efc1700d9d9cd646beb5770bc52f03a91b5..86d04ba8b3c21d9ae0862b925b733355adeecf4d 100644 --- a/doc/odoo/api/ServiceAPI/deapi/ir_actions_server.md +++ b/doc/odoo/api/ServiceAPI/deapi/ir_actions_server.md @@ -17,11 +17,19 @@ |字段col300|类型col150|备注col400| |---|---|----| |model_id可选 |String|模型| +|update_field_id可选 |String|要更新的字段| +|update_related_model_id可选 |String|更新相关模型| +|crud_model_id可选 |String|创建记录| +|link_field_id可选 |String|链接字段| |activity_date_deadline_range可选 |Integer|截止日期至| |activity_date_deadline_range_type可选 |String|到期类型| |activity_note可选 |String|备注| |activity_summary可选 |String|标题| +|activity_type_id可选 |String|活动类型| +|activity_type_name可选 |String|活动类型名称| |activity_user_field_name可选 |String|用户字段| +|activity_user_id可选 |String|负责人| +|activity_user_name可选 |String|负责人| |activity_user_type可选 |String|用户类型| |binding_type |String|绑定类型| |binding_view_types可选 |String|绑定视图类型| @@ -36,6 +44,8 @@ |sequence可选 |Integer|序列| |sms_method可选 |String|发送短信为| |state |String|类型| +|template_id可选 |String|EMail模板| +|template_name可选 |String|EMail模板| |type |String|动作类型| |update_boolean_value可选 |String|布尔值| |update_m2m_operation可选 |String|Many2many 业务| @@ -50,11 +60,19 @@ ```json { "model_id" : null, + "update_field_id" : null, + "update_related_model_id" : null, + "crud_model_id" : null, + "link_field_id" : null, "activity_date_deadline_range" : null, "activity_date_deadline_range_type" : null, "activity_note" : null, "activity_summary" : null, + "activity_type_id" : null, + "activity_type_name" : null, "activity_user_field_name" : null, + "activity_user_id" : null, + "activity_user_name" : null, "activity_user_type" : null, "binding_type" : null, "binding_view_types" : null, @@ -71,6 +89,8 @@ "sequence" : null, "sms_method" : null, "state" : null, + "template_id" : null, + "template_name" : null, "type" : null, "update_boolean_value" : null, "update_m2m_operation" : null, @@ -89,11 +109,19 @@ { "model_id" : null, + "update_field_id" : null, + "update_related_model_id" : null, + "crud_model_id" : null, + "link_field_id" : null, "activity_date_deadline_range" : null, "activity_date_deadline_range_type" : null, "activity_note" : null, "activity_summary" : null, + "activity_type_id" : null, + "activity_type_name" : null, "activity_user_field_name" : null, + "activity_user_id" : null, + "activity_user_name" : null, "activity_user_type" : null, "binding_type" : null, "binding_view_types" : null, @@ -110,6 +138,8 @@ "sequence" : null, "sms_method" : null, "state" : null, + "template_id" : null, + "template_name" : null, "type" : null, "update_boolean_value" : null, "update_m2m_operation" : null, @@ -148,11 +178,19 @@ { "model_id" : null, + "update_field_id" : null, + "update_related_model_id" : null, + "crud_model_id" : null, + "link_field_id" : null, "activity_date_deadline_range" : null, "activity_date_deadline_range_type" : null, "activity_note" : null, "activity_summary" : null, + "activity_type_id" : null, + "activity_type_name" : null, "activity_user_field_name" : null, + "activity_user_id" : null, + "activity_user_name" : null, "activity_user_type" : null, "binding_type" : null, "binding_view_types" : null, @@ -169,6 +207,8 @@ "sequence" : null, "sms_method" : null, "state" : null, + "template_id" : null, + "template_name" : null, "type" : null, "update_boolean_value" : null, "update_m2m_operation" : null, @@ -226,11 +266,19 @@ |字段col300|类型col150|备注col400| |---|---|----| |model_id可选 |String|模型| +|update_field_id可选 |String|要更新的字段| +|update_related_model_id可选 |String|更新相关模型| +|crud_model_id可选 |String|创建记录| +|link_field_id可选 |String|链接字段| |activity_date_deadline_range可选 |Integer|截止日期至| |activity_date_deadline_range_type可选 |String|到期类型| |activity_note可选 |String|备注| |activity_summary可选 |String|标题| +|activity_type_id可选 |String|活动类型| +|activity_type_name可选 |String|活动类型名称| |activity_user_field_name可选 |String|用户字段| +|activity_user_id可选 |String|负责人| +|activity_user_name可选 |String|负责人| |activity_user_type可选 |String|用户类型| |binding_type |String|绑定类型| |binding_view_types可选 |String|绑定视图类型| @@ -245,6 +293,8 @@ |sequence可选 |Integer|序列| |sms_method可选 |String|发送短信为| |state |String|类型| +|template_id可选 |String|EMail模板| +|template_name可选 |String|EMail模板| |type |String|动作类型| |update_boolean_value可选 |String|布尔值| |update_m2m_operation可选 |String|Many2many 业务| @@ -259,11 +309,19 @@ ```json { "model_id" : null, + "update_field_id" : null, + "update_related_model_id" : null, + "crud_model_id" : null, + "link_field_id" : null, "activity_date_deadline_range" : null, "activity_date_deadline_range_type" : null, "activity_note" : null, "activity_summary" : null, + "activity_type_id" : null, + "activity_type_name" : null, "activity_user_field_name" : null, + "activity_user_id" : null, + "activity_user_name" : null, "activity_user_type" : null, "binding_type" : null, "binding_view_types" : null, @@ -280,6 +338,8 @@ "sequence" : null, "sms_method" : null, "state" : null, + "template_id" : null, + "template_name" : null, "type" : null, "update_boolean_value" : null, "update_m2m_operation" : null, @@ -298,11 +358,19 @@ { "model_id" : null, + "update_field_id" : null, + "update_related_model_id" : null, + "crud_model_id" : null, + "link_field_id" : null, "activity_date_deadline_range" : null, "activity_date_deadline_range_type" : null, "activity_note" : null, "activity_summary" : null, + "activity_type_id" : null, + "activity_type_name" : null, "activity_user_field_name" : null, + "activity_user_id" : null, + "activity_user_name" : null, "activity_user_type" : null, "binding_type" : null, "binding_view_types" : null, @@ -319,6 +387,8 @@ "sequence" : null, "sms_method" : null, "state" : null, + "template_id" : null, + "template_name" : null, "type" : null, "update_boolean_value" : null, "update_m2m_operation" : null, @@ -350,11 +420,19 @@ |字段col300|类型col150|备注col400| |---|---|----| |model_id可选 |String|模型| +|update_field_id可选 |String|要更新的字段| +|update_related_model_id可选 |String|更新相关模型| +|crud_model_id可选 |String|创建记录| +|link_field_id可选 |String|链接字段| |activity_date_deadline_range可选 |Integer|截止日期至| |activity_date_deadline_range_type可选 |String|到期类型| |activity_note可选 |String|备注| |activity_summary可选 |String|标题| +|activity_type_id可选 |String|活动类型| +|activity_type_name可选 |String|活动类型名称| |activity_user_field_name可选 |String|用户字段| +|activity_user_id可选 |String|负责人| +|activity_user_name可选 |String|负责人| |activity_user_type可选 |String|用户类型| |binding_type |String|绑定类型| |binding_view_types可选 |String|绑定视图类型| @@ -369,6 +447,8 @@ |sequence可选 |Integer|序列| |sms_method可选 |String|发送短信为| |state |String|类型| +|template_id可选 |String|EMail模板| +|template_name可选 |String|EMail模板| |type |String|动作类型| |update_boolean_value可选 |String|布尔值| |update_m2m_operation可选 |String|Many2many 业务| @@ -383,11 +463,19 @@ ```json { "model_id" : null, + "update_field_id" : null, + "update_related_model_id" : null, + "crud_model_id" : null, + "link_field_id" : null, "activity_date_deadline_range" : null, "activity_date_deadline_range_type" : null, "activity_note" : null, "activity_summary" : null, + "activity_type_id" : null, + "activity_type_name" : null, "activity_user_field_name" : null, + "activity_user_id" : null, + "activity_user_name" : null, "activity_user_type" : null, "binding_type" : null, "binding_view_types" : null, @@ -404,6 +492,8 @@ "sequence" : null, "sms_method" : null, "state" : null, + "template_id" : null, + "template_name" : null, "type" : null, "update_boolean_value" : null, "update_m2m_operation" : null, @@ -440,11 +530,19 @@ Integer |字段col300|类型col150|备注col400| |---|---|----| |model_id可选 |String|模型| +|update_field_id可选 |String|要更新的字段| +|update_related_model_id可选 |String|更新相关模型| +|crud_model_id可选 |String|创建记录| +|link_field_id可选 |String|链接字段| |activity_date_deadline_range可选 |Integer|截止日期至| |activity_date_deadline_range_type可选 |String|到期类型| |activity_note可选 |String|备注| |activity_summary可选 |String|标题| +|activity_type_id可选 |String|活动类型| +|activity_type_name可选 |String|活动类型名称| |activity_user_field_name可选 |String|用户字段| +|activity_user_id可选 |String|负责人| +|activity_user_name可选 |String|负责人| |activity_user_type可选 |String|用户类型| |binding_type |String|绑定类型| |binding_view_types可选 |String|绑定视图类型| @@ -459,6 +557,8 @@ Integer |sequence可选 |Integer|序列| |sms_method可选 |String|发送短信为| |state |String|类型| +|template_id可选 |String|EMail模板| +|template_name可选 |String|EMail模板| |type |String|动作类型| |update_boolean_value可选 |String|布尔值| |update_m2m_operation可选 |String|Many2many 业务| @@ -473,11 +573,19 @@ Integer ```json { "model_id" : null, + "update_field_id" : null, + "update_related_model_id" : null, + "crud_model_id" : null, + "link_field_id" : null, "activity_date_deadline_range" : null, "activity_date_deadline_range_type" : null, "activity_note" : null, "activity_summary" : null, + "activity_type_id" : null, + "activity_type_name" : null, "activity_user_field_name" : null, + "activity_user_id" : null, + "activity_user_name" : null, "activity_user_type" : null, "binding_type" : null, "binding_view_types" : null, @@ -494,6 +602,8 @@ Integer "sequence" : null, "sms_method" : null, "state" : null, + "template_id" : null, + "template_name" : null, "type" : null, "update_boolean_value" : null, "update_m2m_operation" : null, @@ -512,11 +622,19 @@ Integer { "model_id" : null, + "update_field_id" : null, + "update_related_model_id" : null, + "crud_model_id" : null, + "link_field_id" : null, "activity_date_deadline_range" : null, "activity_date_deadline_range_type" : null, "activity_note" : null, "activity_summary" : null, + "activity_type_id" : null, + "activity_type_name" : null, "activity_user_field_name" : null, + "activity_user_id" : null, + "activity_user_name" : null, "activity_user_type" : null, "binding_type" : null, "binding_view_types" : null, @@ -533,6 +651,8 @@ Integer "sequence" : null, "sms_method" : null, "state" : null, + "template_id" : null, + "template_name" : null, "type" : null, "update_boolean_value" : null, "update_m2m_operation" : null, @@ -564,11 +684,19 @@ Integer |字段col300|类型col150|备注col400| |---|---|----| |model_id可选 |String|模型| +|update_field_id可选 |String|要更新的字段| +|update_related_model_id可选 |String|更新相关模型| +|crud_model_id可选 |String|创建记录| +|link_field_id可选 |String|链接字段| |activity_date_deadline_range可选 |Integer|截止日期至| |activity_date_deadline_range_type可选 |String|到期类型| |activity_note可选 |String|备注| |activity_summary可选 |String|标题| +|activity_type_id可选 |String|活动类型| +|activity_type_name可选 |String|活动类型名称| |activity_user_field_name可选 |String|用户字段| +|activity_user_id可选 |String|负责人| +|activity_user_name可选 |String|负责人| |activity_user_type可选 |String|用户类型| |binding_type |String|绑定类型| |binding_view_types可选 |String|绑定视图类型| @@ -583,6 +711,8 @@ Integer |sequence可选 |Integer|序列| |sms_method可选 |String|发送短信为| |state |String|类型| +|template_id可选 |String|EMail模板| +|template_name可选 |String|EMail模板| |type |String|动作类型| |update_boolean_value可选 |String|布尔值| |update_m2m_operation可选 |String|Many2many 业务| @@ -597,11 +727,19 @@ Integer ```json { "model_id" : null, + "update_field_id" : null, + "update_related_model_id" : null, + "crud_model_id" : null, + "link_field_id" : null, "activity_date_deadline_range" : null, "activity_date_deadline_range_type" : null, "activity_note" : null, "activity_summary" : null, + "activity_type_id" : null, + "activity_type_name" : null, "activity_user_field_name" : null, + "activity_user_id" : null, + "activity_user_name" : null, "activity_user_type" : null, "binding_type" : null, "binding_view_types" : null, @@ -618,6 +756,8 @@ Integer "sequence" : null, "sms_method" : null, "state" : null, + "template_id" : null, + "template_name" : null, "type" : null, "update_boolean_value" : null, "update_m2m_operation" : null, @@ -636,11 +776,19 @@ Integer { "model_id" : null, + "update_field_id" : null, + "update_related_model_id" : null, + "crud_model_id" : null, + "link_field_id" : null, "activity_date_deadline_range" : null, "activity_date_deadline_range_type" : null, "activity_note" : null, "activity_summary" : null, + "activity_type_id" : null, + "activity_type_name" : null, "activity_user_field_name" : null, + "activity_user_id" : null, + "activity_user_name" : null, "activity_user_type" : null, "binding_type" : null, "binding_view_types" : null, @@ -657,6 +805,8 @@ Integer "sequence" : null, "sms_method" : null, "state" : null, + "template_id" : null, + "template_name" : null, "type" : null, "update_boolean_value" : null, "update_m2m_operation" : null, @@ -688,6 +838,12 @@ Integer |字段col300|类型col150|备注col400| |---|---|----| |n_activity_date_deadline_range_type_eq可选 |String|到期类型| +|n_activity_type_id_eq可选 |String|活动类型| +|n_activity_type_name_eq可选 |String|活动类型名称| +|n_activity_type_name_like可选 |String|活动类型名称| +|n_activity_user_id_eq可选 |String|负责人| +|n_activity_user_name_eq可选 |String|负责人| +|n_activity_user_name_like可选 |String|负责人| |n_activity_user_type_eq可选 |String|用户类型| |n_binding_type_eq可选 |String|绑定类型| |n_evaluation_type_eq可选 |String|值类型| @@ -696,6 +852,9 @@ Integer |n_name_like可选 |String|名称| |n_sms_method_eq可选 |String|发送短信为| |n_state_eq可选 |String|类型| +|n_template_id_eq可选 |String|EMail模板| +|n_template_name_eq可选 |String|EMail模板| +|n_template_name_like可选 |String|EMail模板| |n_update_boolean_value_eq可选 |String|布尔值| |n_update_m2m_operation_eq可选 |String|Many2many 业务| |n_usage_eq可选 |String|用途| @@ -709,6 +868,12 @@ Integer "size" : 20, "sort" : null, "n_activity_date_deadline_range_type_eq" : null, + "n_activity_type_id_eq" : null, + "n_activity_type_name_eq" : null, + "n_activity_type_name_like" : null, + "n_activity_user_id_eq" : null, + "n_activity_user_name_eq" : null, + "n_activity_user_name_like" : null, "n_activity_user_type_eq" : null, "n_binding_type_eq" : null, "n_evaluation_type_eq" : null, @@ -717,6 +882,9 @@ Integer "n_name_like" : null, "n_sms_method_eq" : null, "n_state_eq" : null, + "n_template_id_eq" : null, + "n_template_name_eq" : null, + "n_template_name_like" : null, "n_update_boolean_value_eq" : null, "n_update_m2m_operation_eq" : null, "n_usage_eq" : null, @@ -729,11 +897,19 @@ Integer [ { "model_id" : null, + "update_field_id" : null, + "update_related_model_id" : null, + "crud_model_id" : null, + "link_field_id" : null, "activity_date_deadline_range" : null, "activity_date_deadline_range_type" : null, "activity_note" : null, "activity_summary" : null, + "activity_type_id" : null, + "activity_type_name" : null, "activity_user_field_name" : null, + "activity_user_id" : null, + "activity_user_name" : null, "activity_user_type" : null, "binding_type" : null, "binding_view_types" : null, @@ -750,6 +926,8 @@ Integer "sequence" : null, "sms_method" : null, "state" : null, + "template_id" : null, + "template_name" : null, "type" : null, "update_boolean_value" : null, "update_m2m_operation" : null, diff --git a/doc/odoo/api/ServiceAPI/deapi/ir_cron.md b/doc/odoo/api/ServiceAPI/deapi/ir_cron.md index 9f95ac58fe6a4e6e8ee612e2d35ed2eab45487ce..94bceb5bdd8f1f1570fa10fb5aef1fa16b30c571 100644 --- a/doc/odoo/api/ServiceAPI/deapi/ir_cron.md +++ b/doc/odoo/api/ServiceAPI/deapi/ir_cron.md @@ -17,6 +17,34 @@ |字段col300|类型col150|备注col400| |---|---|----| |model_id可选 |String|模型| +|code可选 |String|代码| +|evaluation_type可选 |String|值类型| +|update_path可选 |String|字段更新路径| +|update_field_id可选 |String|要更新的字段| +|update_related_model_id可选 |String|更新相关模型| +|value可选 |String|值| +|update_boolean_value可选 |String|布尔值| +|crud_model_id可选 |String|创建记录| +|link_field_id可选 |String|链接字段| +|sms_method可选 |String|发送短信为| +|template_id可选 |String|EMail模板| +|mail_post_autofollow可选 |Integer|订阅收件人| +|activity_type_id可选 |String|活动类型| +|activity_user_type可选 |String|用户类型| +|activity_user_field_name可选 |String|用户字段| +|activity_user_id可选 |String|负责人| +|activity_note可选 |String|备注| +|usage可选 |String|用途| +|state可选 |String|类型| +|activity_type_name可选 |String|活动类型名称| +|activity_user_name可选 |String|负责人| +|activity_summary可选 |String|标题| +|activity_date_deadline_range_type可选 |String|到期类型| +|activity_date_deadline_range可选 |Integer|截止日期至| +|mail_post_method可选 |String|发送电子邮件| +|webhook_url可选 |String|Webhook URL| +|template_name可选 |String|EMail模板| +|name可选 |String|动作名称| |active可选 |Integer|有效| |cron_name可选 |String|名称| |failure_count可选 |Integer|失败次数| @@ -24,9 +52,12 @@ |id |String|标识| |interval_number |Integer|间隔数值| |interval_type |String|间隔单位| +|ir_actions_server_id可选 |String|服务器动作标识| |lastcall可选 |Timestamp|最后执行日期| |nextcall |Timestamp|下一次执行日期| |priority可选 |Integer|优先级| +|user_id可选 |String|执行帐户| +|user_name可选 |String|执行帐户| @@ -34,6 +65,34 @@ ```json { "model_id" : null, + "code" : null, + "evaluation_type" : null, + "update_path" : null, + "update_field_id" : null, + "update_related_model_id" : null, + "value" : null, + "update_boolean_value" : null, + "crud_model_id" : null, + "link_field_id" : null, + "sms_method" : null, + "template_id" : null, + "mail_post_autofollow" : null, + "activity_type_id" : null, + "activity_user_type" : null, + "activity_user_field_name" : null, + "activity_user_id" : null, + "activity_note" : null, + "usage" : null, + "state" : null, + "activity_type_name" : null, + "activity_user_name" : null, + "activity_summary" : null, + "activity_date_deadline_range_type" : null, + "activity_date_deadline_range" : null, + "mail_post_method" : null, + "webhook_url" : null, + "template_name" : null, + "name" : null, "active" : null, "create_date" : null, "create_uid" : null, @@ -43,9 +102,12 @@ "id" : null, "interval_number" : null, "interval_type" : null, + "ir_actions_server_id" : null, "lastcall" : null, "nextcall" : null, "priority" : null, + "user_id" : null, + "user_name" : null, "write_date" : null, "write_uid" : null, } @@ -57,6 +119,34 @@ { "model_id" : null, + "code" : null, + "evaluation_type" : null, + "update_path" : null, + "update_field_id" : null, + "update_related_model_id" : null, + "value" : null, + "update_boolean_value" : null, + "crud_model_id" : null, + "link_field_id" : null, + "sms_method" : null, + "template_id" : null, + "mail_post_autofollow" : null, + "activity_type_id" : null, + "activity_user_type" : null, + "activity_user_field_name" : null, + "activity_user_id" : null, + "activity_note" : null, + "usage" : null, + "state" : null, + "activity_type_name" : null, + "activity_user_name" : null, + "activity_summary" : null, + "activity_date_deadline_range_type" : null, + "activity_date_deadline_range" : null, + "mail_post_method" : null, + "webhook_url" : null, + "template_name" : null, + "name" : null, "active" : null, "create_date" : null, "create_uid" : null, @@ -66,9 +156,12 @@ "id" : null, "interval_number" : null, "interval_type" : null, + "ir_actions_server_id" : null, "lastcall" : null, "nextcall" : null, "priority" : null, + "user_id" : null, + "user_name" : null, "write_date" : null, "write_uid" : null, } @@ -100,6 +193,34 @@ { "model_id" : null, + "code" : null, + "evaluation_type" : null, + "update_path" : null, + "update_field_id" : null, + "update_related_model_id" : null, + "value" : null, + "update_boolean_value" : null, + "crud_model_id" : null, + "link_field_id" : null, + "sms_method" : null, + "template_id" : null, + "mail_post_autofollow" : null, + "activity_type_id" : null, + "activity_user_type" : null, + "activity_user_field_name" : null, + "activity_user_id" : null, + "activity_note" : null, + "usage" : null, + "state" : null, + "activity_type_name" : null, + "activity_user_name" : null, + "activity_summary" : null, + "activity_date_deadline_range_type" : null, + "activity_date_deadline_range" : null, + "mail_post_method" : null, + "webhook_url" : null, + "template_name" : null, + "name" : null, "active" : null, "create_date" : null, "create_uid" : null, @@ -109,9 +230,12 @@ "id" : null, "interval_number" : null, "interval_type" : null, + "ir_actions_server_id" : null, "lastcall" : null, "nextcall" : null, "priority" : null, + "user_id" : null, + "user_name" : null, "write_date" : null, "write_uid" : null, } @@ -162,6 +286,34 @@ |字段col300|类型col150|备注col400| |---|---|----| |model_id可选 |String|模型| +|code可选 |String|代码| +|evaluation_type可选 |String|值类型| +|update_path可选 |String|字段更新路径| +|update_field_id可选 |String|要更新的字段| +|update_related_model_id可选 |String|更新相关模型| +|value可选 |String|值| +|update_boolean_value可选 |String|布尔值| +|crud_model_id可选 |String|创建记录| +|link_field_id可选 |String|链接字段| +|sms_method可选 |String|发送短信为| +|template_id可选 |String|EMail模板| +|mail_post_autofollow可选 |Integer|订阅收件人| +|activity_type_id可选 |String|活动类型| +|activity_user_type可选 |String|用户类型| +|activity_user_field_name可选 |String|用户字段| +|activity_user_id可选 |String|负责人| +|activity_note可选 |String|备注| +|usage可选 |String|用途| +|state可选 |String|类型| +|activity_type_name可选 |String|活动类型名称| +|activity_user_name可选 |String|负责人| +|activity_summary可选 |String|标题| +|activity_date_deadline_range_type可选 |String|到期类型| +|activity_date_deadline_range可选 |Integer|截止日期至| +|mail_post_method可选 |String|发送电子邮件| +|webhook_url可选 |String|Webhook URL| +|template_name可选 |String|EMail模板| +|name可选 |String|动作名称| |active可选 |Integer|有效| |cron_name可选 |String|名称| |failure_count可选 |Integer|失败次数| @@ -169,9 +321,12 @@ |id |String|标识| |interval_number |Integer|间隔数值| |interval_type |String|间隔单位| +|ir_actions_server_id可选 |String|服务器动作标识| |lastcall可选 |Timestamp|最后执行日期| |nextcall |Timestamp|下一次执行日期| |priority可选 |Integer|优先级| +|user_id可选 |String|执行帐户| +|user_name可选 |String|执行帐户| @@ -179,6 +334,34 @@ ```json { "model_id" : null, + "code" : null, + "evaluation_type" : null, + "update_path" : null, + "update_field_id" : null, + "update_related_model_id" : null, + "value" : null, + "update_boolean_value" : null, + "crud_model_id" : null, + "link_field_id" : null, + "sms_method" : null, + "template_id" : null, + "mail_post_autofollow" : null, + "activity_type_id" : null, + "activity_user_type" : null, + "activity_user_field_name" : null, + "activity_user_id" : null, + "activity_note" : null, + "usage" : null, + "state" : null, + "activity_type_name" : null, + "activity_user_name" : null, + "activity_summary" : null, + "activity_date_deadline_range_type" : null, + "activity_date_deadline_range" : null, + "mail_post_method" : null, + "webhook_url" : null, + "template_name" : null, + "name" : null, "active" : null, "create_date" : null, "create_uid" : null, @@ -188,9 +371,12 @@ "id" : null, "interval_number" : null, "interval_type" : null, + "ir_actions_server_id" : null, "lastcall" : null, "nextcall" : null, "priority" : null, + "user_id" : null, + "user_name" : null, "write_date" : null, "write_uid" : null, } @@ -202,6 +388,34 @@ { "model_id" : null, + "code" : null, + "evaluation_type" : null, + "update_path" : null, + "update_field_id" : null, + "update_related_model_id" : null, + "value" : null, + "update_boolean_value" : null, + "crud_model_id" : null, + "link_field_id" : null, + "sms_method" : null, + "template_id" : null, + "mail_post_autofollow" : null, + "activity_type_id" : null, + "activity_user_type" : null, + "activity_user_field_name" : null, + "activity_user_id" : null, + "activity_note" : null, + "usage" : null, + "state" : null, + "activity_type_name" : null, + "activity_user_name" : null, + "activity_summary" : null, + "activity_date_deadline_range_type" : null, + "activity_date_deadline_range" : null, + "mail_post_method" : null, + "webhook_url" : null, + "template_name" : null, + "name" : null, "active" : null, "create_date" : null, "create_uid" : null, @@ -211,9 +425,12 @@ "id" : null, "interval_number" : null, "interval_type" : null, + "ir_actions_server_id" : null, "lastcall" : null, "nextcall" : null, "priority" : null, + "user_id" : null, + "user_name" : null, "write_date" : null, "write_uid" : null, } @@ -238,6 +455,34 @@ |字段col300|类型col150|备注col400| |---|---|----| |model_id可选 |String|模型| +|code可选 |String|代码| +|evaluation_type可选 |String|值类型| +|update_path可选 |String|字段更新路径| +|update_field_id可选 |String|要更新的字段| +|update_related_model_id可选 |String|更新相关模型| +|value可选 |String|值| +|update_boolean_value可选 |String|布尔值| +|crud_model_id可选 |String|创建记录| +|link_field_id可选 |String|链接字段| +|sms_method可选 |String|发送短信为| +|template_id可选 |String|EMail模板| +|mail_post_autofollow可选 |Integer|订阅收件人| +|activity_type_id可选 |String|活动类型| +|activity_user_type可选 |String|用户类型| +|activity_user_field_name可选 |String|用户字段| +|activity_user_id可选 |String|负责人| +|activity_note可选 |String|备注| +|usage可选 |String|用途| +|state可选 |String|类型| +|activity_type_name可选 |String|活动类型名称| +|activity_user_name可选 |String|负责人| +|activity_summary可选 |String|标题| +|activity_date_deadline_range_type可选 |String|到期类型| +|activity_date_deadline_range可选 |Integer|截止日期至| +|mail_post_method可选 |String|发送电子邮件| +|webhook_url可选 |String|Webhook URL| +|template_name可选 |String|EMail模板| +|name可选 |String|动作名称| |active可选 |Integer|有效| |cron_name可选 |String|名称| |failure_count可选 |Integer|失败次数| @@ -245,9 +490,12 @@ |id |String|标识| |interval_number |Integer|间隔数值| |interval_type |String|间隔单位| +|ir_actions_server_id可选 |String|服务器动作标识| |lastcall可选 |Timestamp|最后执行日期| |nextcall |Timestamp|下一次执行日期| |priority可选 |Integer|优先级| +|user_id可选 |String|执行帐户| +|user_name可选 |String|执行帐户| @@ -255,6 +503,34 @@ ```json { "model_id" : null, + "code" : null, + "evaluation_type" : null, + "update_path" : null, + "update_field_id" : null, + "update_related_model_id" : null, + "value" : null, + "update_boolean_value" : null, + "crud_model_id" : null, + "link_field_id" : null, + "sms_method" : null, + "template_id" : null, + "mail_post_autofollow" : null, + "activity_type_id" : null, + "activity_user_type" : null, + "activity_user_field_name" : null, + "activity_user_id" : null, + "activity_note" : null, + "usage" : null, + "state" : null, + "activity_type_name" : null, + "activity_user_name" : null, + "activity_summary" : null, + "activity_date_deadline_range_type" : null, + "activity_date_deadline_range" : null, + "mail_post_method" : null, + "webhook_url" : null, + "template_name" : null, + "name" : null, "active" : null, "create_date" : null, "create_uid" : null, @@ -264,9 +540,12 @@ "id" : null, "interval_number" : null, "interval_type" : null, + "ir_actions_server_id" : null, "lastcall" : null, "nextcall" : null, "priority" : null, + "user_id" : null, + "user_name" : null, "write_date" : null, "write_uid" : null, } @@ -296,6 +575,34 @@ Integer |字段col300|类型col150|备注col400| |---|---|----| |model_id可选 |String|模型| +|code可选 |String|代码| +|evaluation_type可选 |String|值类型| +|update_path可选 |String|字段更新路径| +|update_field_id可选 |String|要更新的字段| +|update_related_model_id可选 |String|更新相关模型| +|value可选 |String|值| +|update_boolean_value可选 |String|布尔值| +|crud_model_id可选 |String|创建记录| +|link_field_id可选 |String|链接字段| +|sms_method可选 |String|发送短信为| +|template_id可选 |String|EMail模板| +|mail_post_autofollow可选 |Integer|订阅收件人| +|activity_type_id可选 |String|活动类型| +|activity_user_type可选 |String|用户类型| +|activity_user_field_name可选 |String|用户字段| +|activity_user_id可选 |String|负责人| +|activity_note可选 |String|备注| +|usage可选 |String|用途| +|state可选 |String|类型| +|activity_type_name可选 |String|活动类型名称| +|activity_user_name可选 |String|负责人| +|activity_summary可选 |String|标题| +|activity_date_deadline_range_type可选 |String|到期类型| +|activity_date_deadline_range可选 |Integer|截止日期至| +|mail_post_method可选 |String|发送电子邮件| +|webhook_url可选 |String|Webhook URL| +|template_name可选 |String|EMail模板| +|name可选 |String|动作名称| |active可选 |Integer|有效| |cron_name可选 |String|名称| |failure_count可选 |Integer|失败次数| @@ -303,9 +610,12 @@ Integer |id |String|标识| |interval_number |Integer|间隔数值| |interval_type |String|间隔单位| +|ir_actions_server_id可选 |String|服务器动作标识| |lastcall可选 |Timestamp|最后执行日期| |nextcall |Timestamp|下一次执行日期| |priority可选 |Integer|优先级| +|user_id可选 |String|执行帐户| +|user_name可选 |String|执行帐户| @@ -313,6 +623,34 @@ Integer ```json { "model_id" : null, + "code" : null, + "evaluation_type" : null, + "update_path" : null, + "update_field_id" : null, + "update_related_model_id" : null, + "value" : null, + "update_boolean_value" : null, + "crud_model_id" : null, + "link_field_id" : null, + "sms_method" : null, + "template_id" : null, + "mail_post_autofollow" : null, + "activity_type_id" : null, + "activity_user_type" : null, + "activity_user_field_name" : null, + "activity_user_id" : null, + "activity_note" : null, + "usage" : null, + "state" : null, + "activity_type_name" : null, + "activity_user_name" : null, + "activity_summary" : null, + "activity_date_deadline_range_type" : null, + "activity_date_deadline_range" : null, + "mail_post_method" : null, + "webhook_url" : null, + "template_name" : null, + "name" : null, "active" : null, "create_date" : null, "create_uid" : null, @@ -322,9 +660,12 @@ Integer "id" : null, "interval_number" : null, "interval_type" : null, + "ir_actions_server_id" : null, "lastcall" : null, "nextcall" : null, "priority" : null, + "user_id" : null, + "user_name" : null, "write_date" : null, "write_uid" : null, } @@ -336,6 +677,34 @@ Integer { "model_id" : null, + "code" : null, + "evaluation_type" : null, + "update_path" : null, + "update_field_id" : null, + "update_related_model_id" : null, + "value" : null, + "update_boolean_value" : null, + "crud_model_id" : null, + "link_field_id" : null, + "sms_method" : null, + "template_id" : null, + "mail_post_autofollow" : null, + "activity_type_id" : null, + "activity_user_type" : null, + "activity_user_field_name" : null, + "activity_user_id" : null, + "activity_note" : null, + "usage" : null, + "state" : null, + "activity_type_name" : null, + "activity_user_name" : null, + "activity_summary" : null, + "activity_date_deadline_range_type" : null, + "activity_date_deadline_range" : null, + "mail_post_method" : null, + "webhook_url" : null, + "template_name" : null, + "name" : null, "active" : null, "create_date" : null, "create_uid" : null, @@ -345,9 +714,12 @@ Integer "id" : null, "interval_number" : null, "interval_type" : null, + "ir_actions_server_id" : null, "lastcall" : null, "nextcall" : null, "priority" : null, + "user_id" : null, + "user_name" : null, "write_date" : null, "write_uid" : null, } @@ -372,6 +744,34 @@ Integer |字段col300|类型col150|备注col400| |---|---|----| |model_id可选 |String|模型| +|code可选 |String|代码| +|evaluation_type可选 |String|值类型| +|update_path可选 |String|字段更新路径| +|update_field_id可选 |String|要更新的字段| +|update_related_model_id可选 |String|更新相关模型| +|value可选 |String|值| +|update_boolean_value可选 |String|布尔值| +|crud_model_id可选 |String|创建记录| +|link_field_id可选 |String|链接字段| +|sms_method可选 |String|发送短信为| +|template_id可选 |String|EMail模板| +|mail_post_autofollow可选 |Integer|订阅收件人| +|activity_type_id可选 |String|活动类型| +|activity_user_type可选 |String|用户类型| +|activity_user_field_name可选 |String|用户字段| +|activity_user_id可选 |String|负责人| +|activity_note可选 |String|备注| +|usage可选 |String|用途| +|state可选 |String|类型| +|activity_type_name可选 |String|活动类型名称| +|activity_user_name可选 |String|负责人| +|activity_summary可选 |String|标题| +|activity_date_deadline_range_type可选 |String|到期类型| +|activity_date_deadline_range可选 |Integer|截止日期至| +|mail_post_method可选 |String|发送电子邮件| +|webhook_url可选 |String|Webhook URL| +|template_name可选 |String|EMail模板| +|name可选 |String|动作名称| |active可选 |Integer|有效| |cron_name可选 |String|名称| |failure_count可选 |Integer|失败次数| @@ -379,9 +779,12 @@ Integer |id |String|标识| |interval_number |Integer|间隔数值| |interval_type |String|间隔单位| +|ir_actions_server_id可选 |String|服务器动作标识| |lastcall可选 |Timestamp|最后执行日期| |nextcall |Timestamp|下一次执行日期| |priority可选 |Integer|优先级| +|user_id可选 |String|执行帐户| +|user_name可选 |String|执行帐户| @@ -389,6 +792,34 @@ Integer ```json { "model_id" : null, + "code" : null, + "evaluation_type" : null, + "update_path" : null, + "update_field_id" : null, + "update_related_model_id" : null, + "value" : null, + "update_boolean_value" : null, + "crud_model_id" : null, + "link_field_id" : null, + "sms_method" : null, + "template_id" : null, + "mail_post_autofollow" : null, + "activity_type_id" : null, + "activity_user_type" : null, + "activity_user_field_name" : null, + "activity_user_id" : null, + "activity_note" : null, + "usage" : null, + "state" : null, + "activity_type_name" : null, + "activity_user_name" : null, + "activity_summary" : null, + "activity_date_deadline_range_type" : null, + "activity_date_deadline_range" : null, + "mail_post_method" : null, + "webhook_url" : null, + "template_name" : null, + "name" : null, "active" : null, "create_date" : null, "create_uid" : null, @@ -398,9 +829,12 @@ Integer "id" : null, "interval_number" : null, "interval_type" : null, + "ir_actions_server_id" : null, "lastcall" : null, "nextcall" : null, "priority" : null, + "user_id" : null, + "user_name" : null, "write_date" : null, "write_uid" : null, } @@ -412,6 +846,34 @@ Integer { "model_id" : null, + "code" : null, + "evaluation_type" : null, + "update_path" : null, + "update_field_id" : null, + "update_related_model_id" : null, + "value" : null, + "update_boolean_value" : null, + "crud_model_id" : null, + "link_field_id" : null, + "sms_method" : null, + "template_id" : null, + "mail_post_autofollow" : null, + "activity_type_id" : null, + "activity_user_type" : null, + "activity_user_field_name" : null, + "activity_user_id" : null, + "activity_note" : null, + "usage" : null, + "state" : null, + "activity_type_name" : null, + "activity_user_name" : null, + "activity_summary" : null, + "activity_date_deadline_range_type" : null, + "activity_date_deadline_range" : null, + "mail_post_method" : null, + "webhook_url" : null, + "template_name" : null, + "name" : null, "active" : null, "create_date" : null, "create_uid" : null, @@ -421,9 +883,12 @@ Integer "id" : null, "interval_number" : null, "interval_type" : null, + "ir_actions_server_id" : null, "lastcall" : null, "nextcall" : null, "priority" : null, + "user_id" : null, + "user_name" : null, "write_date" : null, "write_uid" : null, } @@ -449,6 +914,12 @@ Integer |---|---|----| |n_id_eq可选 |String|标识| |n_interval_type_eq可选 |String|间隔单位| +|n_ir_actions_server_id_eq可选 |String|服务器动作标识| +|n_name_eq可选 |String|动作名称| +|n_name_like可选 |String|动作名称| +|n_user_id_eq可选 |String|执行帐户| +|n_user_name_eq可选 |String|执行帐户| +|n_user_name_like可选 |String|执行帐户| @@ -460,6 +931,12 @@ Integer "sort" : null, "n_id_eq" : null, "n_interval_type_eq" : null, + "n_ir_actions_server_id_eq" : null, + "n_name_eq" : null, + "n_name_like" : null, + "n_user_id_eq" : null, + "n_user_name_eq" : null, + "n_user_name_like" : null, } ``` @@ -469,6 +946,34 @@ Integer [ { "model_id" : null, + "code" : null, + "evaluation_type" : null, + "update_path" : null, + "update_field_id" : null, + "update_related_model_id" : null, + "value" : null, + "update_boolean_value" : null, + "crud_model_id" : null, + "link_field_id" : null, + "sms_method" : null, + "template_id" : null, + "mail_post_autofollow" : null, + "activity_type_id" : null, + "activity_user_type" : null, + "activity_user_field_name" : null, + "activity_user_id" : null, + "activity_note" : null, + "usage" : null, + "state" : null, + "activity_type_name" : null, + "activity_user_name" : null, + "activity_summary" : null, + "activity_date_deadline_range_type" : null, + "activity_date_deadline_range" : null, + "mail_post_method" : null, + "webhook_url" : null, + "template_name" : null, + "name" : null, "active" : null, "create_date" : null, "create_uid" : null, @@ -478,9 +983,12 @@ Integer "id" : null, "interval_number" : null, "interval_type" : null, + "ir_actions_server_id" : null, "lastcall" : null, "nextcall" : null, "priority" : null, + "user_id" : null, + "user_name" : null, "write_date" : null, "write_uid" : null, } diff --git a/doc/odoo/api/ServiceAPI/deapi/mail_followers.md b/doc/odoo/api/ServiceAPI/deapi/mail_followers.md index 8f1eb5695c24a0024f1ccb26a8b1c191a465681c..a28cc96975afb3af478de7617e7b92bcda07747d 100644 --- a/doc/odoo/api/ServiceAPI/deapi/mail_followers.md +++ b/doc/odoo/api/ServiceAPI/deapi/mail_followers.md @@ -16,7 +16,8 @@ ##### 请求参数 {docsify-ignore} |字段col300|类型col150|备注col400| |---|---|----| -|name可选 |String|名称| +|name可选 |String|相关的业务伙伴| +|user_id可选 |String|系统用户标识| |type可选 |String|关注类型| |res_id可选 |String|资源标识| |display_name可选 |String|显示名称| @@ -30,6 +31,7 @@ ```json { "name" : null, + "user_id" : null, "type" : null, "res_id" : null, "display_name" : null, @@ -45,6 +47,7 @@ { "name" : null, + "user_id" : null, "type" : null, "res_id" : null, "display_name" : null, @@ -80,6 +83,7 @@ { "name" : null, + "user_id" : null, "type" : null, "res_id" : null, "display_name" : null, @@ -133,7 +137,8 @@ ##### 请求参数 {docsify-ignore} |字段col300|类型col150|备注col400| |---|---|----| -|name可选 |String|名称| +|name可选 |String|相关的业务伙伴| +|user_id可选 |String|系统用户标识| |type可选 |String|关注类型| |res_id可选 |String|资源标识| |display_name可选 |String|显示名称| @@ -147,6 +152,7 @@ ```json { "name" : null, + "user_id" : null, "type" : null, "res_id" : null, "display_name" : null, @@ -162,6 +168,7 @@ { "name" : null, + "user_id" : null, "type" : null, "res_id" : null, "display_name" : null, @@ -189,7 +196,8 @@ ##### 请求参数 {docsify-ignore} |字段col300|类型col150|备注col400| |---|---|----| -|name可选 |String|名称| +|name可选 |String|相关的业务伙伴| +|user_id可选 |String|系统用户标识| |type可选 |String|关注类型| |res_id可选 |String|资源标识| |display_name可选 |String|显示名称| @@ -203,6 +211,7 @@ ```json { "name" : null, + "user_id" : null, "type" : null, "res_id" : null, "display_name" : null, @@ -235,7 +244,8 @@ Integer ##### 请求参数 {docsify-ignore} |字段col300|类型col150|备注col400| |---|---|----| -|name可选 |String|名称| +|name可选 |String|相关的业务伙伴| +|user_id可选 |String|系统用户标识| |type可选 |String|关注类型| |res_id可选 |String|资源标识| |display_name可选 |String|显示名称| @@ -249,6 +259,7 @@ Integer ```json { "name" : null, + "user_id" : null, "type" : null, "res_id" : null, "display_name" : null, @@ -264,6 +275,7 @@ Integer { "name" : null, + "user_id" : null, "type" : null, "res_id" : null, "display_name" : null, @@ -291,7 +303,8 @@ Integer ##### 请求参数 {docsify-ignore} |字段col300|类型col150|备注col400| |---|---|----| -|name可选 |String|名称| +|name可选 |String|相关的业务伙伴| +|user_id可选 |String|系统用户标识| |type可选 |String|关注类型| |res_id可选 |String|资源标识| |display_name可选 |String|显示名称| @@ -305,6 +318,7 @@ Integer ```json { "name" : null, + "user_id" : null, "type" : null, "res_id" : null, "display_name" : null, @@ -320,6 +334,7 @@ Integer { "name" : null, + "user_id" : null, "type" : null, "res_id" : null, "display_name" : null, @@ -348,8 +363,8 @@ Integer |字段col300|类型col150|备注col400| |---|---|----| |n_id_eq可选 |String|标识| -|n_name_eq可选 |String|名称| -|n_name_like可选 |String|名称| +|n_name_eq可选 |String|相关的业务伙伴| +|n_name_like可选 |String|相关的业务伙伴| |n_partner_id_eq可选 |String|相关的业务伙伴| |n_res_id_eq可选 |String|资源标识| |n_type_eq可选 |String|关注类型| @@ -377,6 +392,7 @@ Integer [ { "name" : null, + "user_id" : null, "type" : null, "res_id" : null, "display_name" : null, @@ -405,8 +421,8 @@ Integer |字段col300|类型col150|备注col400| |---|---|----| |n_id_eq可选 |String|标识| -|n_name_eq可选 |String|名称| -|n_name_like可选 |String|名称| +|n_name_eq可选 |String|相关的业务伙伴| +|n_name_like可选 |String|相关的业务伙伴| |n_partner_id_eq可选 |String|相关的业务伙伴| |n_res_id_eq可选 |String|资源标识| |n_type_eq可选 |String|关注类型| @@ -434,6 +450,7 @@ Integer [ { "name" : null, + "user_id" : null, "type" : null, "res_id" : null, "display_name" : null, @@ -462,8 +479,8 @@ Integer |字段col300|类型col150|备注col400| |---|---|----| |n_id_eq可选 |String|标识| -|n_name_eq可选 |String|名称| -|n_name_like可选 |String|名称| +|n_name_eq可选 |String|相关的业务伙伴| +|n_name_like可选 |String|相关的业务伙伴| |n_partner_id_eq可选 |String|相关的业务伙伴| |n_res_id_eq可选 |String|资源标识| |n_type_eq可选 |String|关注类型| diff --git a/doc/odoo/api/ServiceAPI/deapi/mail_message.md b/doc/odoo/api/ServiceAPI/deapi/mail_message.md index 445b00141848b295118273061197fa09430befb6..70488a61a1fd4098efa44a4d79268da48b67383c 100644 --- a/doc/odoo/api/ServiceAPI/deapi/mail_message.md +++ b/doc/odoo/api/ServiceAPI/deapi/mail_message.md @@ -25,6 +25,7 @@ |account_audit_log_preview可选 |String|描述| |author_guest_id可选 |String|访客| |author_id可选 |String|作者| +|author_name可选 |String|作者| |body可选 |String|内容| |date可选 |Timestamp|日期| |display_name可选 |String|显示名称| @@ -42,6 +43,7 @@ |model可选 |String|相关单据模型| |needaction可选 |Integer|需要行动| |parent_id可选 |String|上级消息| +|parent_name可选 |String|上级消息| |pinned_at可选 |Timestamp|已置顶| |preview可选 |String|预览| |rating_value可选 |Double|评级值| @@ -54,6 +56,7 @@ |starred可选 |Integer|星标消息| |subject可选 |String|主旨| |subtype_id可选 |String|子类型| +|subtype_name可选 |String|子类型| |mail_tracking_values可选 |Object|null| @@ -70,6 +73,7 @@ "account_audit_log_preview" : null, "author_guest_id" : null, "author_id" : null, + "author_name" : null, "body" : null, "create_date" : null, "create_uid" : null, @@ -89,6 +93,7 @@ "model" : null, "needaction" : null, "parent_id" : null, + "parent_name" : null, "pinned_at" : null, "preview" : null, "rating_value" : null, @@ -101,6 +106,7 @@ "starred" : null, "subject" : null, "subtype_id" : null, + "subtype_name" : null, "write_date" : null, "write_uid" : null, "mail_tracking_values" : null, @@ -121,6 +127,7 @@ "account_audit_log_preview" : null, "author_guest_id" : null, "author_id" : null, + "author_name" : null, "body" : null, "create_date" : null, "create_uid" : null, @@ -140,6 +147,7 @@ "model" : null, "needaction" : null, "parent_id" : null, + "parent_name" : null, "pinned_at" : null, "preview" : null, "rating_value" : null, @@ -152,6 +160,7 @@ "starred" : null, "subject" : null, "subtype_id" : null, + "subtype_name" : null, "write_date" : null, "write_uid" : null, "mail_tracking_values" : null, @@ -192,6 +201,7 @@ "account_audit_log_preview" : null, "author_guest_id" : null, "author_id" : null, + "author_name" : null, "body" : null, "create_date" : null, "create_uid" : null, @@ -211,6 +221,7 @@ "model" : null, "needaction" : null, "parent_id" : null, + "parent_name" : null, "pinned_at" : null, "preview" : null, "rating_value" : null, @@ -223,6 +234,7 @@ "starred" : null, "subject" : null, "subtype_id" : null, + "subtype_name" : null, "write_date" : null, "write_uid" : null, "mail_tracking_values" : null, @@ -282,6 +294,7 @@ |account_audit_log_preview可选 |String|描述| |author_guest_id可选 |String|访客| |author_id可选 |String|作者| +|author_name可选 |String|作者| |body可选 |String|内容| |date可选 |Timestamp|日期| |display_name可选 |String|显示名称| @@ -299,6 +312,7 @@ |model可选 |String|相关单据模型| |needaction可选 |Integer|需要行动| |parent_id可选 |String|上级消息| +|parent_name可选 |String|上级消息| |pinned_at可选 |Timestamp|已置顶| |preview可选 |String|预览| |rating_value可选 |Double|评级值| @@ -311,6 +325,7 @@ |starred可选 |Integer|星标消息| |subject可选 |String|主旨| |subtype_id可选 |String|子类型| +|subtype_name可选 |String|子类型| |mail_tracking_values可选 |Object|null| @@ -327,6 +342,7 @@ "account_audit_log_preview" : null, "author_guest_id" : null, "author_id" : null, + "author_name" : null, "body" : null, "create_date" : null, "create_uid" : null, @@ -346,6 +362,7 @@ "model" : null, "needaction" : null, "parent_id" : null, + "parent_name" : null, "pinned_at" : null, "preview" : null, "rating_value" : null, @@ -358,6 +375,7 @@ "starred" : null, "subject" : null, "subtype_id" : null, + "subtype_name" : null, "write_date" : null, "write_uid" : null, "mail_tracking_values" : null, @@ -378,6 +396,7 @@ "account_audit_log_preview" : null, "author_guest_id" : null, "author_id" : null, + "author_name" : null, "body" : null, "create_date" : null, "create_uid" : null, @@ -397,6 +416,7 @@ "model" : null, "needaction" : null, "parent_id" : null, + "parent_name" : null, "pinned_at" : null, "preview" : null, "rating_value" : null, @@ -409,6 +429,7 @@ "starred" : null, "subject" : null, "subtype_id" : null, + "subtype_name" : null, "write_date" : null, "write_uid" : null, "mail_tracking_values" : null, @@ -447,6 +468,7 @@ |account_audit_log_preview可选 |String|描述| |author_guest_id可选 |String|访客| |author_id可选 |String|作者| +|author_name可选 |String|作者| |body可选 |String|内容| |date可选 |Timestamp|日期| |display_name可选 |String|显示名称| @@ -464,6 +486,7 @@ |model可选 |String|相关单据模型| |needaction可选 |Integer|需要行动| |parent_id可选 |String|上级消息| +|parent_name可选 |String|上级消息| |pinned_at可选 |Timestamp|已置顶| |preview可选 |String|预览| |rating_value可选 |Double|评级值| @@ -476,6 +499,7 @@ |starred可选 |Integer|星标消息| |subject可选 |String|主旨| |subtype_id可选 |String|子类型| +|subtype_name可选 |String|子类型| |mail_tracking_values可选 |Object|null| @@ -492,6 +516,7 @@ "account_audit_log_preview" : null, "author_guest_id" : null, "author_id" : null, + "author_name" : null, "body" : null, "create_date" : null, "create_uid" : null, @@ -511,6 +536,7 @@ "model" : null, "needaction" : null, "parent_id" : null, + "parent_name" : null, "pinned_at" : null, "preview" : null, "rating_value" : null, @@ -523,6 +549,7 @@ "starred" : null, "subject" : null, "subtype_id" : null, + "subtype_name" : null, "write_date" : null, "write_uid" : null, "mail_tracking_values" : null, @@ -557,6 +584,7 @@ |account_audit_log_preview可选 |String|描述| |author_guest_id可选 |String|访客| |author_id可选 |String|作者| +|author_name可选 |String|作者| |body可选 |String|内容| |date可选 |Timestamp|日期| |display_name可选 |String|显示名称| @@ -574,6 +602,7 @@ |model可选 |String|相关单据模型| |needaction可选 |Integer|需要行动| |parent_id可选 |String|上级消息| +|parent_name可选 |String|上级消息| |pinned_at可选 |Timestamp|已置顶| |preview可选 |String|预览| |rating_value可选 |Double|评级值| @@ -586,6 +615,7 @@ |starred可选 |Integer|星标消息| |subject可选 |String|主旨| |subtype_id可选 |String|子类型| +|subtype_name可选 |String|子类型| |mail_tracking_values可选 |Object|null| @@ -602,6 +632,7 @@ "account_audit_log_preview" : null, "author_guest_id" : null, "author_id" : null, + "author_name" : null, "body" : null, "create_date" : null, "create_uid" : null, @@ -621,6 +652,7 @@ "model" : null, "needaction" : null, "parent_id" : null, + "parent_name" : null, "pinned_at" : null, "preview" : null, "rating_value" : null, @@ -633,6 +665,7 @@ "starred" : null, "subject" : null, "subtype_id" : null, + "subtype_name" : null, "write_date" : null, "write_uid" : null, "mail_tracking_values" : null, @@ -677,6 +710,7 @@ Integer |account_audit_log_preview可选 |String|描述| |author_guest_id可选 |String|访客| |author_id可选 |String|作者| +|author_name可选 |String|作者| |body可选 |String|内容| |date可选 |Timestamp|日期| |display_name可选 |String|显示名称| @@ -694,6 +728,7 @@ Integer |model可选 |String|相关单据模型| |needaction可选 |Integer|需要行动| |parent_id可选 |String|上级消息| +|parent_name可选 |String|上级消息| |pinned_at可选 |Timestamp|已置顶| |preview可选 |String|预览| |rating_value可选 |Double|评级值| @@ -706,6 +741,7 @@ Integer |starred可选 |Integer|星标消息| |subject可选 |String|主旨| |subtype_id可选 |String|子类型| +|subtype_name可选 |String|子类型| |mail_tracking_values可选 |Object|null| @@ -722,6 +758,7 @@ Integer "account_audit_log_preview" : null, "author_guest_id" : null, "author_id" : null, + "author_name" : null, "body" : null, "create_date" : null, "create_uid" : null, @@ -741,6 +778,7 @@ Integer "model" : null, "needaction" : null, "parent_id" : null, + "parent_name" : null, "pinned_at" : null, "preview" : null, "rating_value" : null, @@ -753,6 +791,7 @@ Integer "starred" : null, "subject" : null, "subtype_id" : null, + "subtype_name" : null, "write_date" : null, "write_uid" : null, "mail_tracking_values" : null, @@ -787,6 +826,7 @@ Integer |account_audit_log_preview可选 |String|描述| |author_guest_id可选 |String|访客| |author_id可选 |String|作者| +|author_name可选 |String|作者| |body可选 |String|内容| |date可选 |Timestamp|日期| |display_name可选 |String|显示名称| @@ -804,6 +844,7 @@ Integer |model可选 |String|相关单据模型| |needaction可选 |Integer|需要行动| |parent_id可选 |String|上级消息| +|parent_name可选 |String|上级消息| |pinned_at可选 |Timestamp|已置顶| |preview可选 |String|预览| |rating_value可选 |Double|评级值| @@ -816,6 +857,7 @@ Integer |starred可选 |Integer|星标消息| |subject可选 |String|主旨| |subtype_id可选 |String|子类型| +|subtype_name可选 |String|子类型| |mail_tracking_values可选 |Object|null| @@ -832,6 +874,7 @@ Integer "account_audit_log_preview" : null, "author_guest_id" : null, "author_id" : null, + "author_name" : null, "body" : null, "create_date" : null, "create_uid" : null, @@ -851,6 +894,7 @@ Integer "model" : null, "needaction" : null, "parent_id" : null, + "parent_name" : null, "pinned_at" : null, "preview" : null, "rating_value" : null, @@ -863,6 +907,7 @@ Integer "starred" : null, "subject" : null, "subtype_id" : null, + "subtype_name" : null, "write_date" : null, "write_uid" : null, "mail_tracking_values" : null, @@ -883,6 +928,7 @@ Integer "account_audit_log_preview" : null, "author_guest_id" : null, "author_id" : null, + "author_name" : null, "body" : null, "create_date" : null, "create_uid" : null, @@ -902,6 +948,7 @@ Integer "model" : null, "needaction" : null, "parent_id" : null, + "parent_name" : null, "pinned_at" : null, "preview" : null, "rating_value" : null, @@ -914,6 +961,7 @@ Integer "starred" : null, "subject" : null, "subtype_id" : null, + "subtype_name" : null, "write_date" : null, "write_uid" : null, "mail_tracking_values" : null, @@ -952,6 +1000,7 @@ Integer |account_audit_log_preview可选 |String|描述| |author_guest_id可选 |String|访客| |author_id可选 |String|作者| +|author_name可选 |String|作者| |body可选 |String|内容| |date可选 |Timestamp|日期| |display_name可选 |String|显示名称| @@ -969,6 +1018,7 @@ Integer |model可选 |String|相关单据模型| |needaction可选 |Integer|需要行动| |parent_id可选 |String|上级消息| +|parent_name可选 |String|上级消息| |pinned_at可选 |Timestamp|已置顶| |preview可选 |String|预览| |rating_value可选 |Double|评级值| @@ -981,6 +1031,7 @@ Integer |starred可选 |Integer|星标消息| |subject可选 |String|主旨| |subtype_id可选 |String|子类型| +|subtype_name可选 |String|子类型| |mail_tracking_values可选 |Object|null| @@ -997,6 +1048,7 @@ Integer "account_audit_log_preview" : null, "author_guest_id" : null, "author_id" : null, + "author_name" : null, "body" : null, "create_date" : null, "create_uid" : null, @@ -1016,6 +1068,7 @@ Integer "model" : null, "needaction" : null, "parent_id" : null, + "parent_name" : null, "pinned_at" : null, "preview" : null, "rating_value" : null, @@ -1028,6 +1081,7 @@ Integer "starred" : null, "subject" : null, "subtype_id" : null, + "subtype_name" : null, "write_date" : null, "write_uid" : null, "mail_tracking_values" : null, @@ -1062,6 +1116,7 @@ Integer |account_audit_log_preview可选 |String|描述| |author_guest_id可选 |String|访客| |author_id可选 |String|作者| +|author_name可选 |String|作者| |body可选 |String|内容| |date可选 |Timestamp|日期| |display_name可选 |String|显示名称| @@ -1079,6 +1134,7 @@ Integer |model可选 |String|相关单据模型| |needaction可选 |Integer|需要行动| |parent_id可选 |String|上级消息| +|parent_name可选 |String|上级消息| |pinned_at可选 |Timestamp|已置顶| |preview可选 |String|预览| |rating_value可选 |Double|评级值| @@ -1091,6 +1147,7 @@ Integer |starred可选 |Integer|星标消息| |subject可选 |String|主旨| |subtype_id可选 |String|子类型| +|subtype_name可选 |String|子类型| |mail_tracking_values可选 |Object|null| @@ -1107,6 +1164,7 @@ Integer "account_audit_log_preview" : null, "author_guest_id" : null, "author_id" : null, + "author_name" : null, "body" : null, "create_date" : null, "create_uid" : null, @@ -1126,6 +1184,7 @@ Integer "model" : null, "needaction" : null, "parent_id" : null, + "parent_name" : null, "pinned_at" : null, "preview" : null, "rating_value" : null, @@ -1138,6 +1197,7 @@ Integer "starred" : null, "subject" : null, "subtype_id" : null, + "subtype_name" : null, "write_date" : null, "write_uid" : null, "mail_tracking_values" : null, @@ -1177,6 +1237,7 @@ Integer |account_audit_log_preview可选 |String|描述| |author_guest_id可选 |String|访客| |author_id可选 |String|作者| +|author_name可选 |String|作者| |body可选 |String|内容| |date可选 |Timestamp|日期| |display_name可选 |String|显示名称| @@ -1194,6 +1255,7 @@ Integer |model可选 |String|相关单据模型| |needaction可选 |Integer|需要行动| |parent_id可选 |String|上级消息| +|parent_name可选 |String|上级消息| |pinned_at可选 |Timestamp|已置顶| |preview可选 |String|预览| |rating_value可选 |Double|评级值| @@ -1206,6 +1268,7 @@ Integer |starred可选 |Integer|星标消息| |subject可选 |String|主旨| |subtype_id可选 |String|子类型| +|subtype_name可选 |String|子类型| |mail_tracking_values可选 |Object|null| @@ -1222,6 +1285,7 @@ Integer "account_audit_log_preview" : null, "author_guest_id" : null, "author_id" : null, + "author_name" : null, "body" : null, "create_date" : null, "create_uid" : null, @@ -1241,6 +1305,7 @@ Integer "model" : null, "needaction" : null, "parent_id" : null, + "parent_name" : null, "pinned_at" : null, "preview" : null, "rating_value" : null, @@ -1253,6 +1318,7 @@ Integer "starred" : null, "subject" : null, "subtype_id" : null, + "subtype_name" : null, "write_date" : null, "write_uid" : null, "mail_tracking_values" : null, @@ -1287,6 +1353,7 @@ Integer |account_audit_log_preview可选 |String|描述| |author_guest_id可选 |String|访客| |author_id可选 |String|作者| +|author_name可选 |String|作者| |body可选 |String|内容| |date可选 |Timestamp|日期| |display_name可选 |String|显示名称| @@ -1304,6 +1371,7 @@ Integer |model可选 |String|相关单据模型| |needaction可选 |Integer|需要行动| |parent_id可选 |String|上级消息| +|parent_name可选 |String|上级消息| |pinned_at可选 |Timestamp|已置顶| |preview可选 |String|预览| |rating_value可选 |Double|评级值| @@ -1316,6 +1384,7 @@ Integer |starred可选 |Integer|星标消息| |subject可选 |String|主旨| |subtype_id可选 |String|子类型| +|subtype_name可选 |String|子类型| |mail_tracking_values可选 |Object|null| @@ -1332,6 +1401,7 @@ Integer "account_audit_log_preview" : null, "author_guest_id" : null, "author_id" : null, + "author_name" : null, "body" : null, "create_date" : null, "create_uid" : null, @@ -1351,6 +1421,7 @@ Integer "model" : null, "needaction" : null, "parent_id" : null, + "parent_name" : null, "pinned_at" : null, "preview" : null, "rating_value" : null, @@ -1363,6 +1434,7 @@ Integer "starred" : null, "subject" : null, "subtype_id" : null, + "subtype_name" : null, "write_date" : null, "write_uid" : null, "mail_tracking_values" : null, @@ -1383,6 +1455,7 @@ Integer "account_audit_log_preview" : null, "author_guest_id" : null, "author_id" : null, + "author_name" : null, "body" : null, "create_date" : null, "create_uid" : null, @@ -1402,6 +1475,7 @@ Integer "model" : null, "needaction" : null, "parent_id" : null, + "parent_name" : null, "pinned_at" : null, "preview" : null, "rating_value" : null, @@ -1414,6 +1488,7 @@ Integer "starred" : null, "subject" : null, "subtype_id" : null, + "subtype_name" : null, "write_date" : null, "write_uid" : null, "mail_tracking_values" : null, @@ -1452,6 +1527,7 @@ Integer |account_audit_log_preview可选 |String|描述| |author_guest_id可选 |String|访客| |author_id可选 |String|作者| +|author_name可选 |String|作者| |body可选 |String|内容| |date可选 |Timestamp|日期| |display_name可选 |String|显示名称| @@ -1469,6 +1545,7 @@ Integer |model可选 |String|相关单据模型| |needaction可选 |Integer|需要行动| |parent_id可选 |String|上级消息| +|parent_name可选 |String|上级消息| |pinned_at可选 |Timestamp|已置顶| |preview可选 |String|预览| |rating_value可选 |Double|评级值| @@ -1481,6 +1558,7 @@ Integer |starred可选 |Integer|星标消息| |subject可选 |String|主旨| |subtype_id可选 |String|子类型| +|subtype_name可选 |String|子类型| |mail_tracking_values可选 |Object|null| @@ -1497,6 +1575,7 @@ Integer "account_audit_log_preview" : null, "author_guest_id" : null, "author_id" : null, + "author_name" : null, "body" : null, "create_date" : null, "create_uid" : null, @@ -1516,6 +1595,7 @@ Integer "model" : null, "needaction" : null, "parent_id" : null, + "parent_name" : null, "pinned_at" : null, "preview" : null, "rating_value" : null, @@ -1528,6 +1608,7 @@ Integer "starred" : null, "subject" : null, "subtype_id" : null, + "subtype_name" : null, "write_date" : null, "write_uid" : null, "mail_tracking_values" : null, @@ -1556,6 +1637,8 @@ Integer |---|---|----| |n_author_guest_id_eq可选 |String|访客| |n_author_id_eq可选 |String|作者| +|n_author_name_eq可选 |String|作者| +|n_author_name_like可选 |String|作者| |n_body_like可选 |String|内容| |n_id_eq可选 |String|标识| |n_is_favorite_eq可选 |Integer|收藏| @@ -1563,10 +1646,14 @@ Integer |n_message_type_eq可选 |String|类型| |n_needaction_eq可选 |Integer|需要行动| |n_parent_id_eq可选 |String|上级消息| +|n_parent_name_eq可选 |String|上级消息| +|n_parent_name_like可选 |String|上级消息| |n_record_alias_domain_id_eq可选 |String|别名域| |n_record_company_id_eq可选 |String|公司| |n_res_id_eq可选 |String|资源标识| |n_subtype_id_eq可选 |String|子类型| +|n_subtype_name_eq可选 |String|子类型| +|n_subtype_name_like可选 |String|子类型| @@ -1578,6 +1665,8 @@ Integer "sort" : null, "n_author_guest_id_eq" : null, "n_author_id_eq" : null, + "n_author_name_eq" : null, + "n_author_name_like" : null, "n_body_like" : null, "n_id_eq" : null, "n_is_favorite_eq" : null, @@ -1585,10 +1674,14 @@ Integer "n_message_type_eq" : null, "n_needaction_eq" : null, "n_parent_id_eq" : null, + "n_parent_name_eq" : null, + "n_parent_name_like" : null, "n_record_alias_domain_id_eq" : null, "n_record_company_id_eq" : null, "n_res_id_eq" : null, "n_subtype_id_eq" : null, + "n_subtype_name_eq" : null, + "n_subtype_name_like" : null, } ``` @@ -1606,6 +1699,7 @@ Integer "account_audit_log_preview" : null, "author_guest_id" : null, "author_id" : null, + "author_name" : null, "body" : null, "create_date" : null, "create_uid" : null, @@ -1625,6 +1719,7 @@ Integer "model" : null, "needaction" : null, "parent_id" : null, + "parent_name" : null, "pinned_at" : null, "preview" : null, "rating_value" : null, @@ -1637,6 +1732,7 @@ Integer "starred" : null, "subject" : null, "subtype_id" : null, + "subtype_name" : null, "write_date" : null, "write_uid" : null, "mail_tracking_values" : null, @@ -1664,6 +1760,8 @@ Integer |---|---|----| |n_author_guest_id_eq可选 |String|访客| |n_author_id_eq可选 |String|作者| +|n_author_name_eq可选 |String|作者| +|n_author_name_like可选 |String|作者| |n_body_like可选 |String|内容| |n_id_eq可选 |String|标识| |n_is_favorite_eq可选 |Integer|收藏| @@ -1671,10 +1769,14 @@ Integer |n_message_type_eq可选 |String|类型| |n_needaction_eq可选 |Integer|需要行动| |n_parent_id_eq可选 |String|上级消息| +|n_parent_name_eq可选 |String|上级消息| +|n_parent_name_like可选 |String|上级消息| |n_record_alias_domain_id_eq可选 |String|别名域| |n_record_company_id_eq可选 |String|公司| |n_res_id_eq可选 |String|资源标识| |n_subtype_id_eq可选 |String|子类型| +|n_subtype_name_eq可选 |String|子类型| +|n_subtype_name_like可选 |String|子类型| @@ -1686,6 +1788,8 @@ Integer "sort" : null, "n_author_guest_id_eq" : null, "n_author_id_eq" : null, + "n_author_name_eq" : null, + "n_author_name_like" : null, "n_body_like" : null, "n_id_eq" : null, "n_is_favorite_eq" : null, @@ -1693,10 +1797,14 @@ Integer "n_message_type_eq" : null, "n_needaction_eq" : null, "n_parent_id_eq" : null, + "n_parent_name_eq" : null, + "n_parent_name_like" : null, "n_record_alias_domain_id_eq" : null, "n_record_company_id_eq" : null, "n_res_id_eq" : null, "n_subtype_id_eq" : null, + "n_subtype_name_eq" : null, + "n_subtype_name_like" : null, } ``` @@ -1714,6 +1822,7 @@ Integer "account_audit_log_preview" : null, "author_guest_id" : null, "author_id" : null, + "author_name" : null, "body" : null, "create_date" : null, "create_uid" : null, @@ -1733,6 +1842,7 @@ Integer "model" : null, "needaction" : null, "parent_id" : null, + "parent_name" : null, "pinned_at" : null, "preview" : null, "rating_value" : null, @@ -1745,6 +1855,7 @@ Integer "starred" : null, "subject" : null, "subtype_id" : null, + "subtype_name" : null, "write_date" : null, "write_uid" : null, "mail_tracking_values" : null, @@ -1771,6 +1882,8 @@ Integer |---|---|----| |n_author_guest_id_eq可选 |String|访客| |n_author_id_eq可选 |String|作者| +|n_author_name_eq可选 |String|作者| +|n_author_name_like可选 |String|作者| |n_body_like可选 |String|内容| |n_id_eq可选 |String|标识| |n_is_favorite_eq可选 |Integer|收藏| @@ -1778,10 +1891,14 @@ Integer |n_message_type_eq可选 |String|类型| |n_needaction_eq可选 |Integer|需要行动| |n_parent_id_eq可选 |String|上级消息| +|n_parent_name_eq可选 |String|上级消息| +|n_parent_name_like可选 |String|上级消息| |n_record_alias_domain_id_eq可选 |String|别名域| |n_record_company_id_eq可选 |String|公司| |n_res_id_eq可选 |String|资源标识| |n_subtype_id_eq可选 |String|子类型| +|n_subtype_name_eq可选 |String|子类型| +|n_subtype_name_like可选 |String|子类型| @@ -1793,6 +1910,8 @@ Integer "sort" : null, "n_author_guest_id_eq" : null, "n_author_id_eq" : null, + "n_author_name_eq" : null, + "n_author_name_like" : null, "n_body_like" : null, "n_id_eq" : null, "n_is_favorite_eq" : null, @@ -1800,10 +1919,14 @@ Integer "n_message_type_eq" : null, "n_needaction_eq" : null, "n_parent_id_eq" : null, + "n_parent_name_eq" : null, + "n_parent_name_like" : null, "n_record_alias_domain_id_eq" : null, "n_record_company_id_eq" : null, "n_res_id_eq" : null, "n_subtype_id_eq" : null, + "n_subtype_name_eq" : null, + "n_subtype_name_like" : null, } ``` @@ -1821,6 +1944,7 @@ Integer "account_audit_log_preview" : null, "author_guest_id" : null, "author_id" : null, + "author_name" : null, "body" : null, "create_date" : null, "create_uid" : null, @@ -1840,6 +1964,7 @@ Integer "model" : null, "needaction" : null, "parent_id" : null, + "parent_name" : null, "pinned_at" : null, "preview" : null, "rating_value" : null, @@ -1852,6 +1977,7 @@ Integer "starred" : null, "subject" : null, "subtype_id" : null, + "subtype_name" : null, "write_date" : null, "write_uid" : null, "mail_tracking_values" : null, @@ -1878,6 +2004,8 @@ Integer |---|---|----| |n_author_guest_id_eq可选 |String|访客| |n_author_id_eq可选 |String|作者| +|n_author_name_eq可选 |String|作者| +|n_author_name_like可选 |String|作者| |n_body_like可选 |String|内容| |n_id_eq可选 |String|标识| |n_is_favorite_eq可选 |Integer|收藏| @@ -1885,10 +2013,14 @@ Integer |n_message_type_eq可选 |String|类型| |n_needaction_eq可选 |Integer|需要行动| |n_parent_id_eq可选 |String|上级消息| +|n_parent_name_eq可选 |String|上级消息| +|n_parent_name_like可选 |String|上级消息| |n_record_alias_domain_id_eq可选 |String|别名域| |n_record_company_id_eq可选 |String|公司| |n_res_id_eq可选 |String|资源标识| |n_subtype_id_eq可选 |String|子类型| +|n_subtype_name_eq可选 |String|子类型| +|n_subtype_name_like可选 |String|子类型| @@ -1900,6 +2032,8 @@ Integer "sort" : null, "n_author_guest_id_eq" : null, "n_author_id_eq" : null, + "n_author_name_eq" : null, + "n_author_name_like" : null, "n_body_like" : null, "n_id_eq" : null, "n_is_favorite_eq" : null, @@ -1907,10 +2041,14 @@ Integer "n_message_type_eq" : null, "n_needaction_eq" : null, "n_parent_id_eq" : null, + "n_parent_name_eq" : null, + "n_parent_name_like" : null, "n_record_alias_domain_id_eq" : null, "n_record_company_id_eq" : null, "n_res_id_eq" : null, "n_subtype_id_eq" : null, + "n_subtype_name_eq" : null, + "n_subtype_name_like" : null, } ``` @@ -1928,6 +2066,7 @@ Integer "account_audit_log_preview" : null, "author_guest_id" : null, "author_id" : null, + "author_name" : null, "body" : null, "create_date" : null, "create_uid" : null, @@ -1947,6 +2086,7 @@ Integer "model" : null, "needaction" : null, "parent_id" : null, + "parent_name" : null, "pinned_at" : null, "preview" : null, "rating_value" : null, @@ -1959,6 +2099,7 @@ Integer "starred" : null, "subject" : null, "subtype_id" : null, + "subtype_name" : null, "write_date" : null, "write_uid" : null, "mail_tracking_values" : null, @@ -1985,6 +2126,8 @@ Integer |---|---|----| |n_author_guest_id_eq可选 |String|访客| |n_author_id_eq可选 |String|作者| +|n_author_name_eq可选 |String|作者| +|n_author_name_like可选 |String|作者| |n_body_like可选 |String|内容| |n_id_eq可选 |String|标识| |n_is_favorite_eq可选 |Integer|收藏| @@ -1992,10 +2135,14 @@ Integer |n_message_type_eq可选 |String|类型| |n_needaction_eq可选 |Integer|需要行动| |n_parent_id_eq可选 |String|上级消息| +|n_parent_name_eq可选 |String|上级消息| +|n_parent_name_like可选 |String|上级消息| |n_record_alias_domain_id_eq可选 |String|别名域| |n_record_company_id_eq可选 |String|公司| |n_res_id_eq可选 |String|资源标识| |n_subtype_id_eq可选 |String|子类型| +|n_subtype_name_eq可选 |String|子类型| +|n_subtype_name_like可选 |String|子类型| @@ -2007,6 +2154,8 @@ Integer "sort" : null, "n_author_guest_id_eq" : null, "n_author_id_eq" : null, + "n_author_name_eq" : null, + "n_author_name_like" : null, "n_body_like" : null, "n_id_eq" : null, "n_is_favorite_eq" : null, @@ -2014,10 +2163,14 @@ Integer "n_message_type_eq" : null, "n_needaction_eq" : null, "n_parent_id_eq" : null, + "n_parent_name_eq" : null, + "n_parent_name_like" : null, "n_record_alias_domain_id_eq" : null, "n_record_company_id_eq" : null, "n_res_id_eq" : null, "n_subtype_id_eq" : null, + "n_subtype_name_eq" : null, + "n_subtype_name_like" : null, } ``` @@ -2035,6 +2188,7 @@ Integer "account_audit_log_preview" : null, "author_guest_id" : null, "author_id" : null, + "author_name" : null, "body" : null, "create_date" : null, "create_uid" : null, @@ -2054,6 +2208,7 @@ Integer "model" : null, "needaction" : null, "parent_id" : null, + "parent_name" : null, "pinned_at" : null, "preview" : null, "rating_value" : null, @@ -2066,6 +2221,7 @@ Integer "starred" : null, "subject" : null, "subtype_id" : null, + "subtype_name" : null, "write_date" : null, "write_uid" : null, "mail_tracking_values" : null, @@ -2267,6 +2423,7 @@ Integer |account_audit_log_preview可选 |String|描述| |author_guest_id可选 |String|访客| |author_id可选 |String|作者| +|author_name可选 |String|作者| |body可选 |String|内容| |date可选 |Timestamp|日期| |display_name可选 |String|显示名称| @@ -2284,6 +2441,7 @@ Integer |model可选 |String|相关单据模型| |needaction可选 |Integer|需要行动| |parent_id可选 |String|上级消息| +|parent_name可选 |String|上级消息| |pinned_at可选 |Timestamp|已置顶| |preview可选 |String|预览| |rating_value可选 |Double|评级值| @@ -2296,6 +2454,7 @@ Integer |starred可选 |Integer|星标消息| |subject可选 |String|主旨| |subtype_id可选 |String|子类型| +|subtype_name可选 |String|子类型| |mail_tracking_values可选 |Object|null| @@ -2375,6 +2534,7 @@ Integer |account_audit_log_preview可选 |String|描述| |author_guest_id可选 |String|访客| |author_id可选 |String|作者| +|author_name可选 |String|作者| |body可选 |String|内容| |date可选 |Timestamp|日期| |display_name可选 |String|显示名称| @@ -2392,6 +2552,7 @@ Integer |model可选 |String|相关单据模型| |needaction可选 |Integer|需要行动| |parent_id可选 |String|上级消息| +|parent_name可选 |String|上级消息| |pinned_at可选 |Timestamp|已置顶| |preview可选 |String|预览| |rating_value可选 |Double|评级值| @@ -2404,6 +2565,7 @@ Integer |starred可选 |Integer|星标消息| |subject可选 |String|主旨| |subtype_id可选 |String|子类型| +|subtype_name可选 |String|子类型| |mail_tracking_values可选 |Object|null| @@ -2441,6 +2603,7 @@ Integer |account_audit_log_preview可选 |String|描述| |author_guest_id可选 |String|访客| |author_id可选 |String|作者| +|author_name可选 |String|作者| |body可选 |String|内容| |date可选 |Timestamp|日期| |display_name可选 |String|显示名称| @@ -2458,6 +2621,7 @@ Integer |model可选 |String|相关单据模型| |needaction可选 |Integer|需要行动| |parent_id可选 |String|上级消息| +|parent_name可选 |String|上级消息| |pinned_at可选 |Timestamp|已置顶| |preview可选 |String|预览| |rating_value可选 |Double|评级值| @@ -2470,6 +2634,7 @@ Integer |starred可选 |Integer|星标消息| |subject可选 |String|主旨| |subtype_id可选 |String|子类型| +|subtype_name可选 |String|子类型| |mail_tracking_values可选 |Object|null| @@ -2506,6 +2671,7 @@ Integer |account_audit_log_preview可选 |String|描述| |author_guest_id可选 |String|访客| |author_id可选 |String|作者| +|author_name可选 |String|作者| |body可选 |String|内容| |date可选 |Timestamp|日期| |display_name可选 |String|显示名称| @@ -2523,6 +2689,7 @@ Integer |model可选 |String|相关单据模型| |needaction可选 |Integer|需要行动| |parent_id可选 |String|上级消息| +|parent_name可选 |String|上级消息| |pinned_at可选 |Timestamp|已置顶| |preview可选 |String|预览| |rating_value可选 |Double|评级值| @@ -2535,6 +2702,7 @@ Integer |starred可选 |Integer|星标消息| |subject可选 |String|主旨| |subtype_id可选 |String|子类型| +|subtype_name可选 |String|子类型| |mail_tracking_values可选 |Object|null| @@ -2572,6 +2740,7 @@ Integer |account_audit_log_preview可选 |String|描述| |author_guest_id可选 |String|访客| |author_id可选 |String|作者| +|author_name可选 |String|作者| |body可选 |String|内容| |date可选 |Timestamp|日期| |display_name可选 |String|显示名称| @@ -2589,6 +2758,7 @@ Integer |model可选 |String|相关单据模型| |needaction可选 |Integer|需要行动| |parent_id可选 |String|上级消息| +|parent_name可选 |String|上级消息| |pinned_at可选 |Timestamp|已置顶| |preview可选 |String|预览| |rating_value可选 |Double|评级值| @@ -2601,6 +2771,7 @@ Integer |starred可选 |Integer|星标消息| |subject可选 |String|主旨| |subtype_id可选 |String|子类型| +|subtype_name可选 |String|子类型| |mail_tracking_values可选 |Object|null| @@ -2637,6 +2808,7 @@ Integer |account_audit_log_preview可选 |String|描述| |author_guest_id可选 |String|访客| |author_id可选 |String|作者| +|author_name可选 |String|作者| |body可选 |String|内容| |date可选 |Timestamp|日期| |display_name可选 |String|显示名称| @@ -2654,6 +2826,7 @@ Integer |model可选 |String|相关单据模型| |needaction可选 |Integer|需要行动| |parent_id可选 |String|上级消息| +|parent_name可选 |String|上级消息| |pinned_at可选 |Timestamp|已置顶| |preview可选 |String|预览| |rating_value可选 |Double|评级值| @@ -2666,6 +2839,7 @@ Integer |starred可选 |Integer|星标消息| |subject可选 |String|主旨| |subtype_id可选 |String|子类型| +|subtype_name可选 |String|子类型| |mail_tracking_values可选 |Object|null| @@ -2703,6 +2877,7 @@ Integer |account_audit_log_preview可选 |String|描述| |author_guest_id可选 |String|访客| |author_id可选 |String|作者| +|author_name可选 |String|作者| |body可选 |String|内容| |date可选 |Timestamp|日期| |display_name可选 |String|显示名称| @@ -2720,6 +2895,7 @@ Integer |model可选 |String|相关单据模型| |needaction可选 |Integer|需要行动| |parent_id可选 |String|上级消息| +|parent_name可选 |String|上级消息| |pinned_at可选 |Timestamp|已置顶| |preview可选 |String|预览| |rating_value可选 |Double|评级值| @@ -2732,6 +2908,7 @@ Integer |starred可选 |Integer|星标消息| |subject可选 |String|主旨| |subtype_id可选 |String|子类型| +|subtype_name可选 |String|子类型| |mail_tracking_values可选 |Object|null| @@ -2768,6 +2945,7 @@ Integer |account_audit_log_preview可选 |String|描述| |author_guest_id可选 |String|访客| |author_id可选 |String|作者| +|author_name可选 |String|作者| |body可选 |String|内容| |date可选 |Timestamp|日期| |display_name可选 |String|显示名称| @@ -2785,6 +2963,7 @@ Integer |model可选 |String|相关单据模型| |needaction可选 |Integer|需要行动| |parent_id可选 |String|上级消息| +|parent_name可选 |String|上级消息| |pinned_at可选 |Timestamp|已置顶| |preview可选 |String|预览| |rating_value可选 |Double|评级值| @@ -2797,6 +2976,7 @@ Integer |starred可选 |Integer|星标消息| |subject可选 |String|主旨| |subtype_id可选 |String|子类型| +|subtype_name可选 |String|子类型| |mail_tracking_values可选 |Object|null| @@ -2834,6 +3014,7 @@ Integer |account_audit_log_preview可选 |String|描述| |author_guest_id可选 |String|访客| |author_id可选 |String|作者| +|author_name可选 |String|作者| |body可选 |String|内容| |date可选 |Timestamp|日期| |display_name可选 |String|显示名称| @@ -2851,6 +3032,7 @@ Integer |model可选 |String|相关单据模型| |needaction可选 |Integer|需要行动| |parent_id可选 |String|上级消息| +|parent_name可选 |String|上级消息| |pinned_at可选 |Timestamp|已置顶| |preview可选 |String|预览| |rating_value可选 |Double|评级值| @@ -2863,6 +3045,7 @@ Integer |starred可选 |Integer|星标消息| |subject可选 |String|主旨| |subtype_id可选 |String|子类型| +|subtype_name可选 |String|子类型| |mail_tracking_values可选 |Object|null| @@ -2899,6 +3082,7 @@ Integer |account_audit_log_preview可选 |String|描述| |author_guest_id可选 |String|访客| |author_id可选 |String|作者| +|author_name可选 |String|作者| |body可选 |String|内容| |date可选 |Timestamp|日期| |display_name可选 |String|显示名称| @@ -2916,6 +3100,7 @@ Integer |model可选 |String|相关单据模型| |needaction可选 |Integer|需要行动| |parent_id可选 |String|上级消息| +|parent_name可选 |String|上级消息| |pinned_at可选 |Timestamp|已置顶| |preview可选 |String|预览| |rating_value可选 |Double|评级值| @@ -2928,6 +3113,7 @@ Integer |starred可选 |Integer|星标消息| |subject可选 |String|主旨| |subtype_id可选 |String|子类型| +|subtype_name可选 |String|子类型| |mail_tracking_values可选 |Object|null| @@ -2965,6 +3151,7 @@ Integer |account_audit_log_preview可选 |String|描述| |author_guest_id可选 |String|访客| |author_id可选 |String|作者| +|author_name可选 |String|作者| |body可选 |String|内容| |date可选 |Timestamp|日期| |display_name可选 |String|显示名称| @@ -2982,6 +3169,7 @@ Integer |model可选 |String|相关单据模型| |needaction可选 |Integer|需要行动| |parent_id可选 |String|上级消息| +|parent_name可选 |String|上级消息| |pinned_at可选 |Timestamp|已置顶| |preview可选 |String|预览| |rating_value可选 |Double|评级值| @@ -2994,6 +3182,7 @@ Integer |starred可选 |Integer|星标消息| |subject可选 |String|主旨| |subtype_id可选 |String|子类型| +|subtype_name可选 |String|子类型| |mail_tracking_values可选 |Object|null| @@ -3023,6 +3212,8 @@ Integer |---|---|----| |n_author_guest_id_eq可选 |String|访客| |n_author_id_eq可选 |String|作者| +|n_author_name_eq可选 |String|作者| +|n_author_name_like可选 |String|作者| |n_body_like可选 |String|内容| |n_id_eq可选 |String|标识| |n_is_favorite_eq可选 |Integer|收藏| @@ -3030,10 +3221,14 @@ Integer |n_message_type_eq可选 |String|类型| |n_needaction_eq可选 |Integer|需要行动| |n_parent_id_eq可选 |String|上级消息| +|n_parent_name_eq可选 |String|上级消息| +|n_parent_name_like可选 |String|上级消息| |n_record_alias_domain_id_eq可选 |String|别名域| |n_record_company_id_eq可选 |String|公司| |n_res_id_eq可选 |String|资源标识| |n_subtype_id_eq可选 |String|子类型| +|n_subtype_name_eq可选 |String|子类型| +|n_subtype_name_like可选 |String|子类型| @@ -3062,6 +3257,8 @@ Integer |---|---|----| |n_author_guest_id_eq可选 |String|访客| |n_author_id_eq可选 |String|作者| +|n_author_name_eq可选 |String|作者| +|n_author_name_like可选 |String|作者| |n_body_like可选 |String|内容| |n_id_eq可选 |String|标识| |n_is_favorite_eq可选 |Integer|收藏| @@ -3069,10 +3266,14 @@ Integer |n_message_type_eq可选 |String|类型| |n_needaction_eq可选 |Integer|需要行动| |n_parent_id_eq可选 |String|上级消息| +|n_parent_name_eq可选 |String|上级消息| +|n_parent_name_like可选 |String|上级消息| |n_record_alias_domain_id_eq可选 |String|别名域| |n_record_company_id_eq可选 |String|公司| |n_res_id_eq可选 |String|资源标识| |n_subtype_id_eq可选 |String|子类型| +|n_subtype_name_eq可选 |String|子类型| +|n_subtype_name_like可选 |String|子类型| @@ -3101,6 +3302,8 @@ Integer |---|---|----| |n_author_guest_id_eq可选 |String|访客| |n_author_id_eq可选 |String|作者| +|n_author_name_eq可选 |String|作者| +|n_author_name_like可选 |String|作者| |n_body_like可选 |String|内容| |n_id_eq可选 |String|标识| |n_is_favorite_eq可选 |Integer|收藏| @@ -3108,10 +3311,14 @@ Integer |n_message_type_eq可选 |String|类型| |n_needaction_eq可选 |Integer|需要行动| |n_parent_id_eq可选 |String|上级消息| +|n_parent_name_eq可选 |String|上级消息| +|n_parent_name_like可选 |String|上级消息| |n_record_alias_domain_id_eq可选 |String|别名域| |n_record_company_id_eq可选 |String|公司| |n_res_id_eq可选 |String|资源标识| |n_subtype_id_eq可选 |String|子类型| +|n_subtype_name_eq可选 |String|子类型| +|n_subtype_name_like可选 |String|子类型| @@ -3140,6 +3347,8 @@ Integer |---|---|----| |n_author_guest_id_eq可选 |String|访客| |n_author_id_eq可选 |String|作者| +|n_author_name_eq可选 |String|作者| +|n_author_name_like可选 |String|作者| |n_body_like可选 |String|内容| |n_id_eq可选 |String|标识| |n_is_favorite_eq可选 |Integer|收藏| @@ -3147,10 +3356,14 @@ Integer |n_message_type_eq可选 |String|类型| |n_needaction_eq可选 |Integer|需要行动| |n_parent_id_eq可选 |String|上级消息| +|n_parent_name_eq可选 |String|上级消息| +|n_parent_name_like可选 |String|上级消息| |n_record_alias_domain_id_eq可选 |String|别名域| |n_record_company_id_eq可选 |String|公司| |n_res_id_eq可选 |String|资源标识| |n_subtype_id_eq可选 |String|子类型| +|n_subtype_name_eq可选 |String|子类型| +|n_subtype_name_like可选 |String|子类型| @@ -3179,6 +3392,8 @@ Integer |---|---|----| |n_author_guest_id_eq可选 |String|访客| |n_author_id_eq可选 |String|作者| +|n_author_name_eq可选 |String|作者| +|n_author_name_like可选 |String|作者| |n_body_like可选 |String|内容| |n_id_eq可选 |String|标识| |n_is_favorite_eq可选 |Integer|收藏| @@ -3186,10 +3401,14 @@ Integer |n_message_type_eq可选 |String|类型| |n_needaction_eq可选 |Integer|需要行动| |n_parent_id_eq可选 |String|上级消息| +|n_parent_name_eq可选 |String|上级消息| +|n_parent_name_like可选 |String|上级消息| |n_record_alias_domain_id_eq可选 |String|别名域| |n_record_company_id_eq可选 |String|公司| |n_res_id_eq可选 |String|资源标识| |n_subtype_id_eq可选 |String|子类型| +|n_subtype_name_eq可选 |String|子类型| +|n_subtype_name_like可选 |String|子类型| diff --git a/doc/odoo/api/ServiceAPI/deapi/mail_notification.md b/doc/odoo/api/ServiceAPI/deapi/mail_notification.md new file mode 100644 index 0000000000000000000000000000000000000000..2e2493a3044a576452668664edcfd1cec52ed38c --- /dev/null +++ b/doc/odoo/api/ServiceAPI/deapi/mail_notification.md @@ -0,0 +1,736 @@ +# 消息通知(mail_notification) :id=mail_notification +## 创建消息通知 + + +
+ +
+
+ +
+
+权限标识:`CREATE` + + + +##### 请求参数 {docsify-ignore} +|字段col300|类型col150|备注col400| +|---|---|----| +|message_content可选 |String|消息内容| +|author_id可选 |String|作者| +|display_name可选 |String|显示名称| +|failure_reason可选 |String|失败原因| +|failure_type可选 |String|失败类型| +|id |String|标识| +|is_read可选 |Integer|已读| +|mail_mail_id可选 |String|邮件| +|mail_message_id |String|消息| +|mail_message_record_name |String|消息记录名称| +|notification_status可选 |String|状态| +|notification_type |String|通知类型| +|read_date可选 |Timestamp|读取日期| +|res_partner_id可选 |String|收件人| +|res_partner_name可选 |String|收件人名称| +|sms_id_int可选 |Integer|短信 ID| +|sms_number可选 |String|短信息号码| + + + +##### 请求示例: {docsify-ignore} +```json +{ + "message_content" : null, + "author_id" : null, + "display_name" : null, + "failure_reason" : null, + "failure_type" : null, + "id" : null, + "is_read" : null, + "mail_mail_id" : null, + "mail_message_id" : null, + "mail_message_record_name" : null, + "notification_status" : null, + "notification_type" : null, + "read_date" : null, + "res_partner_id" : null, + "res_partner_name" : null, + "sms_id_int" : null, + "sms_number" : null, +} +``` + + +##### 响应示例: {docsify-ignore} +```json + +{ + "message_content" : null, + "author_id" : null, + "display_name" : null, + "failure_reason" : null, + "failure_type" : null, + "id" : null, + "is_read" : null, + "mail_mail_id" : null, + "mail_message_id" : null, + "mail_message_record_name" : null, + "notification_status" : null, + "notification_type" : null, + "read_date" : null, + "res_partner_id" : null, + "res_partner_name" : null, + "sms_id_int" : null, + "sms_number" : null, +} + +``` + +## 获取消息通知 + + +
+ +
+
+ +
+
+权限标识:`READ` + +##### 路径参数 {docsify-ignore} +|字段col300|类型col150|备注col400| +|---|---|----| +|key|String|标识| + + + + +##### 响应示例: {docsify-ignore} +```json + +{ + "message_content" : null, + "author_id" : null, + "display_name" : null, + "failure_reason" : null, + "failure_type" : null, + "id" : null, + "is_read" : null, + "mail_mail_id" : null, + "mail_message_id" : null, + "mail_message_record_name" : null, + "notification_status" : null, + "notification_type" : null, + "read_date" : null, + "res_partner_id" : null, + "res_partner_name" : null, + "sms_id_int" : null, + "sms_number" : null, +} + +``` + +## 删除消息通知 + + +
+ +
+
+ +
+
+权限标识:`DELETE` + +##### 路径参数 {docsify-ignore} +|字段col300|类型col150|备注col400| +|---|---|----| +|key|String|标识| + + + + + +## 更新消息通知 + + +
+ +
+
+ +
+
+权限标识:`UPDATE` + +##### 路径参数 {docsify-ignore} +|字段col300|类型col150|备注col400| +|---|---|----| +|key|String|标识| + + + +##### 请求参数 {docsify-ignore} +|字段col300|类型col150|备注col400| +|---|---|----| +|message_content可选 |String|消息内容| +|author_id可选 |String|作者| +|display_name可选 |String|显示名称| +|failure_reason可选 |String|失败原因| +|failure_type可选 |String|失败类型| +|id |String|标识| +|is_read可选 |Integer|已读| +|mail_mail_id可选 |String|邮件| +|mail_message_id |String|消息| +|mail_message_record_name |String|消息记录名称| +|notification_status可选 |String|状态| +|notification_type |String|通知类型| +|read_date可选 |Timestamp|读取日期| +|res_partner_id可选 |String|收件人| +|res_partner_name可选 |String|收件人名称| +|sms_id_int可选 |Integer|短信 ID| +|sms_number可选 |String|短信息号码| + + + +##### 请求示例: {docsify-ignore} +```json +{ + "message_content" : null, + "author_id" : null, + "display_name" : null, + "failure_reason" : null, + "failure_type" : null, + "id" : null, + "is_read" : null, + "mail_mail_id" : null, + "mail_message_id" : null, + "mail_message_record_name" : null, + "notification_status" : null, + "notification_type" : null, + "read_date" : null, + "res_partner_id" : null, + "res_partner_name" : null, + "sms_id_int" : null, + "sms_number" : null, +} +``` + + +##### 响应示例: {docsify-ignore} +```json + +{ + "message_content" : null, + "author_id" : null, + "display_name" : null, + "failure_reason" : null, + "failure_type" : null, + "id" : null, + "is_read" : null, + "mail_mail_id" : null, + "mail_message_id" : null, + "mail_message_record_name" : null, + "notification_status" : null, + "notification_type" : null, + "read_date" : null, + "res_partner_id" : null, + "res_partner_name" : null, + "sms_id_int" : null, + "sms_number" : null, +} + +``` + +## 检查消息通知主键 + + +
+ +
+
+ +
+
+权限标识:`CREATE` + + + +##### 请求参数 {docsify-ignore} +|字段col300|类型col150|备注col400| +|---|---|----| +|message_content可选 |String|消息内容| +|author_id可选 |String|作者| +|display_name可选 |String|显示名称| +|failure_reason可选 |String|失败原因| +|failure_type可选 |String|失败类型| +|id |String|标识| +|is_read可选 |Integer|已读| +|mail_mail_id可选 |String|邮件| +|mail_message_id |String|消息| +|mail_message_record_name |String|消息记录名称| +|notification_status可选 |String|状态| +|notification_type |String|通知类型| +|read_date可选 |Timestamp|读取日期| +|res_partner_id可选 |String|收件人| +|res_partner_name可选 |String|收件人名称| +|sms_id_int可选 |Integer|短信 ID| +|sms_number可选 |String|短信息号码| + + + +##### 请求示例: {docsify-ignore} +```json +{ + "message_content" : null, + "author_id" : null, + "display_name" : null, + "failure_reason" : null, + "failure_type" : null, + "id" : null, + "is_read" : null, + "mail_mail_id" : null, + "mail_message_id" : null, + "mail_message_record_name" : null, + "notification_status" : null, + "notification_type" : null, + "read_date" : null, + "res_partner_id" : null, + "res_partner_name" : null, + "sms_id_int" : null, + "sms_number" : null, +} +``` + + +##### 响应示例: {docsify-ignore} +```json +Integer +``` + +## 获取消息通知草稿 + + +
+ +
+
+ +
+
+权限标识:`CREATE` + + + +##### 请求参数 {docsify-ignore} +|字段col300|类型col150|备注col400| +|---|---|----| +|message_content可选 |String|消息内容| +|author_id可选 |String|作者| +|display_name可选 |String|显示名称| +|failure_reason可选 |String|失败原因| +|failure_type可选 |String|失败类型| +|id |String|标识| +|is_read可选 |Integer|已读| +|mail_mail_id可选 |String|邮件| +|mail_message_id |String|消息| +|mail_message_record_name |String|消息记录名称| +|notification_status可选 |String|状态| +|notification_type |String|通知类型| +|read_date可选 |Timestamp|读取日期| +|res_partner_id可选 |String|收件人| +|res_partner_name可选 |String|收件人名称| +|sms_id_int可选 |Integer|短信 ID| +|sms_number可选 |String|短信息号码| + + + +##### 请求示例: {docsify-ignore} +```json +{ + "message_content" : null, + "author_id" : null, + "display_name" : null, + "failure_reason" : null, + "failure_type" : null, + "id" : null, + "is_read" : null, + "mail_mail_id" : null, + "mail_message_id" : null, + "mail_message_record_name" : null, + "notification_status" : null, + "notification_type" : null, + "read_date" : null, + "res_partner_id" : null, + "res_partner_name" : null, + "sms_id_int" : null, + "sms_number" : null, +} +``` + + +##### 响应示例: {docsify-ignore} +```json + +{ + "message_content" : null, + "author_id" : null, + "display_name" : null, + "failure_reason" : null, + "failure_type" : null, + "id" : null, + "is_read" : null, + "mail_mail_id" : null, + "mail_message_id" : null, + "mail_message_record_name" : null, + "notification_status" : null, + "notification_type" : null, + "read_date" : null, + "res_partner_id" : null, + "res_partner_name" : null, + "sms_id_int" : null, + "sms_number" : null, +} + +``` + +## 保存消息通知 + + +
+ +
+
+ +
+
+权限标识:`CREATE` + + + +##### 请求参数 {docsify-ignore} +|字段col300|类型col150|备注col400| +|---|---|----| +|message_content可选 |String|消息内容| +|author_id可选 |String|作者| +|display_name可选 |String|显示名称| +|failure_reason可选 |String|失败原因| +|failure_type可选 |String|失败类型| +|id |String|标识| +|is_read可选 |Integer|已读| +|mail_mail_id可选 |String|邮件| +|mail_message_id |String|消息| +|mail_message_record_name |String|消息记录名称| +|notification_status可选 |String|状态| +|notification_type |String|通知类型| +|read_date可选 |Timestamp|读取日期| +|res_partner_id可选 |String|收件人| +|res_partner_name可选 |String|收件人名称| +|sms_id_int可选 |Integer|短信 ID| +|sms_number可选 |String|短信息号码| + + + +##### 请求示例: {docsify-ignore} +```json +{ + "message_content" : null, + "author_id" : null, + "display_name" : null, + "failure_reason" : null, + "failure_type" : null, + "id" : null, + "is_read" : null, + "mail_mail_id" : null, + "mail_message_id" : null, + "mail_message_record_name" : null, + "notification_status" : null, + "notification_type" : null, + "read_date" : null, + "res_partner_id" : null, + "res_partner_name" : null, + "sms_id_int" : null, + "sms_number" : null, +} +``` + + +##### 响应示例: {docsify-ignore} +```json + +{ + "message_content" : null, + "author_id" : null, + "display_name" : null, + "failure_reason" : null, + "failure_type" : null, + "id" : null, + "is_read" : null, + "mail_mail_id" : null, + "mail_message_id" : null, + "mail_message_record_name" : null, + "notification_status" : null, + "notification_type" : null, + "read_date" : null, + "res_partner_id" : null, + "res_partner_name" : null, + "sms_id_int" : null, + "sms_number" : null, +} + +``` + +## DEFAULT + + +
+ +
+
+ +
+
+权限标识:`READ` + + + +##### 请求参数 {docsify-ignore} +|字段col300|类型col150|备注col400| +|---|---|----| +|n_author_id_eq可选 |String|作者| +|n_failure_type_eq可选 |String|失败类型| +|n_id_eq可选 |String|标识| +|n_mail_mail_id_eq可选 |String|邮件| +|n_mail_message_id_eq可选 |String|消息| +|n_mail_message_record_name_eq可选 |String|消息记录名称| +|n_mail_message_record_name_like可选 |String|消息记录名称| +|n_notification_status_eq可选 |String|状态| +|n_notification_type_eq可选 |String|通知类型| +|n_res_partner_id_eq可选 |String|收件人| +|n_res_partner_name_eq可选 |String|收件人名称| +|n_res_partner_name_like可选 |String|收件人名称| + + + +##### 请求示例: {docsify-ignore} +```json +{ + "page" : 0, + "size" : 20, + "sort" : null, + "n_author_id_eq" : null, + "n_failure_type_eq" : null, + "n_id_eq" : null, + "n_mail_mail_id_eq" : null, + "n_mail_message_id_eq" : null, + "n_mail_message_record_name_eq" : null, + "n_mail_message_record_name_like" : null, + "n_notification_status_eq" : null, + "n_notification_type_eq" : null, + "n_res_partner_id_eq" : null, + "n_res_partner_name_eq" : null, + "n_res_partner_name_like" : null, +} +``` + + +##### 响应示例: {docsify-ignore} +```json +[ + { + "message_content" : null, + "author_id" : null, + "display_name" : null, + "failure_reason" : null, + "failure_type" : null, + "id" : null, + "is_read" : null, + "mail_mail_id" : null, + "mail_message_id" : null, + "mail_message_record_name" : null, + "notification_status" : null, + "notification_type" : null, + "read_date" : null, + "res_partner_id" : null, + "res_partner_name" : null, + "sms_id_int" : null, + "sms_number" : null, + } +] +``` + + + +## 下载导入模板 + +
+ +
+
+ +
+
+ + +##### 查询参数 {docsify-ignore} + +|字段col300|类型col150|备注col400| +|---|---|----| +| srfimporttag | String | 导入标识 | + + + +## 数据导出 + + +
+ +
+
+ +
+
+ +##### 路径参数 {docsify-ignore} +|字段col300|类型col150|备注col400| +|---|---|----| +|param|String|导出集合方法名称| +|key|String|数据主键| + +##### 查询参数 {docsify-ignore} +|字段col300|类型col150|备注col400| +|---|---|----| +|srfexporttag|String|导出模板标识| + +##### 请求参数 {docsify-ignore} +|字段col300|类型col150|备注col400| +|---|---|----| +|page|Integer|page| +|size|Integer|分页大小| +|n_xxx_eq|String|过滤参数| + + +## 数据导入 + + +
+ +
+
+ +
+
+ +##### 查询参数 {docsify-ignore} + +|字段col300|类型col150|备注col400| +|---|---|----| +| srfimporttag | String | 导入标识 | + +##### 请求参数 {docsify-ignore} + +|字段col300|类型col150|备注col400| +|---|---|----| +| file | file | 导入数据文具 | + +## 数据导入(返回错误excel) + + +
+ +
+
+ +
+
+ +##### 查询参数 {docsify-ignore} + +|字段col300|类型col150|备注col400| +|---|---|----| +| srfimporttag | String | 导入标识 | + +##### 请求参数 {docsify-ignore} + +|字段col300|类型col150|备注col400| +|---|---|----| +| file | file | 导入数据文具 | + +## 自定义表头导入(异步) + +
+ +
+
+ +
+
+ +##### 查询参数 {docsify-ignore} + +|字段col300|类型col150|备注col400| +|---|---|----| +| srfimporttag | String | 导入标识 | +| srfossfileid | String | 导入文件 | +| srfimportschemaid | String | 表头定义 | + + +## 数据打印 + +
+ +
+
+ +
+
+ +##### 路径参数 {docsify-ignore} +|字段col300|类型col150|备注col400| +|---|---|----| +|key|String|数据主键| + +##### 查询参数 {docsify-ignore} + +|字段col300|类型col150|备注col400| +|---|---|----| +| srfprinttag | String | 打印标识 | +| srfcontenttype | String | 打印类型 | + + + +## 报表打印 + + +
+ +
+
+ +
+
+ + +##### 查询参数 {docsify-ignore} + +|字段col300|类型col150|备注col400| +|---|---|----| +| srfreporttag | String | 报表标识 | +| srfcontenttype | String | 报表类型 | + + + + + \ No newline at end of file diff --git a/doc/odoo/api/ServiceAPI/deapi/res_company.md b/doc/odoo/api/ServiceAPI/deapi/res_company.md index 4370bda1f6ad4f6c85877bcf1744fb01f12375cc..1d226f4ca40370cce3c351f43989531e9a89237c 100644 --- a/doc/odoo/api/ServiceAPI/deapi/res_company.md +++ b/doc/odoo/api/ServiceAPI/deapi/res_company.md @@ -21,8 +21,8 @@ |followers可选 |Object|关注者| |absence_management可选 |Integer|缺勤管理| |account_fiscal_country_id可选 |String|会计所在国家/地区| -|account_opening_date |Timestamp|期初分录| -|account_price_include |String|Default Sales Price Include| +|account_opening_date可选 |Timestamp|期初分录| +|account_price_include可选 |String|Default Sales Price Include| |account_storno可选 |Integer|Storno会计应用程序| |account_use_credit_limit可选 |Integer|销售信用额度| |active可选 |Integer|有效| @@ -60,8 +60,8 @@ |company_registry_placeholder可选 |String|公司注册处占位符| |company_vat_placeholder可选 |String|公司增值税占位符| |contract_expiration_notice_period可选 |Integer|合同到期通知期| -|currency_id |String|币别| -|currency_name |String|币别| +|currency_id可选 |String|币别| +|currency_name可选 |String|币别| |days_to_purchase可选 |Double|采购前置天数| |display_invoice_amount_total_words可选 |Integer|大写发票总额| |display_invoice_tax_company_currency可选 |Integer|税款以公司币别表示| @@ -71,8 +71,8 @@ |email_secondary_color可选 |String|电子邮件按钮颜色| |employee_properties_definition可选 |String|员工属性| |expects_chart_of_accounts可选 |Integer|Expects a Chart of Accounts| -|fiscalyear_last_day |Integer|会计年度最后一天| -|fiscalyear_last_month |String|会计年度最后一个月| +|fiscalyear_last_day可选 |Integer|会计年度最后一天| +|fiscalyear_last_month可选 |String|会计年度最后一个月| |fiscalyear_lock_date可选 |Timestamp|全球锁定日期| |font可选 |String|字体| |hard_lock_date可选 |Timestamp|硬锁定日期| @@ -91,8 +91,8 @@ |invoice_terms_html可选 |String|Default Terms and Conditions as a Web page| |is_company_details_empty可选 |Integer|公司详细信息是否为空| |job_properties_definition可选 |String|职位属性| -|layout_background |String|布局背景| -|manufacturing_lead |Double|制造提前期| +|layout_background可选 |String|布局背景| +|manufacturing_lead可选 |Double|制造提前期| |message_attachment_count可选 |Integer|Attachment Count| |message_has_error可选 |Integer|Message Delivery error| |message_has_error_counter可选 |Integer|错误数量| @@ -107,12 +107,12 @@ |parent_id可选 |String|上级公司| |parent_name可选 |String|上级公司| |parent_path可选 |String|上级路径| -|partner_id |String|合作伙伴| -|partner_name |String|合作伙伴| +|partner_id可选 |String|合作伙伴| +|partner_name可选 |String|合作伙伴| |payment_onboarding_payment_method可选 |String|选择支付方式| |po_double_validation可选 |String|批准等级| |po_double_validation_amount可选 |BigDecimal|再次验证金额| -|po_lead |Double|采购提前期| +|po_lead可选 |Double|采购提前期| |po_lock可选 |String|销售订单修改| |portal_confirmation_pay可选 |Integer|线上付款| |portal_confirmation_sign可选 |Integer|线上签署| @@ -128,7 +128,7 @@ |sale_lock_date可选 |Timestamp|销售锁定日期| |sale_onboarding_payment_method可选 |String|销售入门选择的付款方式| |secondary_color可选 |String|次要颜色| -|security_lead |Double|销售安全天数| +|security_lead可选 |Double|销售安全天数| |sequence可选 |Integer|序列| |snailmail_color可选 |Integer|实体邮寄颜色| |snailmail_cover可选 |Integer|添加一个封面页| @@ -690,8 +690,8 @@ |followers可选 |Object|关注者| |absence_management可选 |Integer|缺勤管理| |account_fiscal_country_id可选 |String|会计所在国家/地区| -|account_opening_date |Timestamp|期初分录| -|account_price_include |String|Default Sales Price Include| +|account_opening_date可选 |Timestamp|期初分录| +|account_price_include可选 |String|Default Sales Price Include| |account_storno可选 |Integer|Storno会计应用程序| |account_use_credit_limit可选 |Integer|销售信用额度| |active可选 |Integer|有效| @@ -729,8 +729,8 @@ |company_registry_placeholder可选 |String|公司注册处占位符| |company_vat_placeholder可选 |String|公司增值税占位符| |contract_expiration_notice_period可选 |Integer|合同到期通知期| -|currency_id |String|币别| -|currency_name |String|币别| +|currency_id可选 |String|币别| +|currency_name可选 |String|币别| |days_to_purchase可选 |Double|采购前置天数| |display_invoice_amount_total_words可选 |Integer|大写发票总额| |display_invoice_tax_company_currency可选 |Integer|税款以公司币别表示| @@ -740,8 +740,8 @@ |email_secondary_color可选 |String|电子邮件按钮颜色| |employee_properties_definition可选 |String|员工属性| |expects_chart_of_accounts可选 |Integer|Expects a Chart of Accounts| -|fiscalyear_last_day |Integer|会计年度最后一天| -|fiscalyear_last_month |String|会计年度最后一个月| +|fiscalyear_last_day可选 |Integer|会计年度最后一天| +|fiscalyear_last_month可选 |String|会计年度最后一个月| |fiscalyear_lock_date可选 |Timestamp|全球锁定日期| |font可选 |String|字体| |hard_lock_date可选 |Timestamp|硬锁定日期| @@ -760,8 +760,8 @@ |invoice_terms_html可选 |String|Default Terms and Conditions as a Web page| |is_company_details_empty可选 |Integer|公司详细信息是否为空| |job_properties_definition可选 |String|职位属性| -|layout_background |String|布局背景| -|manufacturing_lead |Double|制造提前期| +|layout_background可选 |String|布局背景| +|manufacturing_lead可选 |Double|制造提前期| |message_attachment_count可选 |Integer|Attachment Count| |message_has_error可选 |Integer|Message Delivery error| |message_has_error_counter可选 |Integer|错误数量| @@ -776,12 +776,12 @@ |parent_id可选 |String|上级公司| |parent_name可选 |String|上级公司| |parent_path可选 |String|上级路径| -|partner_id |String|合作伙伴| -|partner_name |String|合作伙伴| +|partner_id可选 |String|合作伙伴| +|partner_name可选 |String|合作伙伴| |payment_onboarding_payment_method可选 |String|选择支付方式| |po_double_validation可选 |String|批准等级| |po_double_validation_amount可选 |BigDecimal|再次验证金额| -|po_lead |Double|采购提前期| +|po_lead可选 |Double|采购提前期| |po_lock可选 |String|销售订单修改| |portal_confirmation_pay可选 |Integer|线上付款| |portal_confirmation_sign可选 |Integer|线上签署| @@ -797,7 +797,7 @@ |sale_lock_date可选 |Timestamp|销售锁定日期| |sale_onboarding_payment_method可选 |String|销售入门选择的付款方式| |secondary_color可选 |String|次要颜色| -|security_lead |Double|销售安全天数| +|security_lead可选 |Double|销售安全天数| |sequence可选 |Integer|序列| |snailmail_color可选 |Integer|实体邮寄颜色| |snailmail_cover可选 |Integer|添加一个封面页| @@ -1159,8 +1159,8 @@ |followers可选 |Object|关注者| |absence_management可选 |Integer|缺勤管理| |account_fiscal_country_id可选 |String|会计所在国家/地区| -|account_opening_date |Timestamp|期初分录| -|account_price_include |String|Default Sales Price Include| +|account_opening_date可选 |Timestamp|期初分录| +|account_price_include可选 |String|Default Sales Price Include| |account_storno可选 |Integer|Storno会计应用程序| |account_use_credit_limit可选 |Integer|销售信用额度| |active可选 |Integer|有效| @@ -1198,8 +1198,8 @@ |company_registry_placeholder可选 |String|公司注册处占位符| |company_vat_placeholder可选 |String|公司增值税占位符| |contract_expiration_notice_period可选 |Integer|合同到期通知期| -|currency_id |String|币别| -|currency_name |String|币别| +|currency_id可选 |String|币别| +|currency_name可选 |String|币别| |days_to_purchase可选 |Double|采购前置天数| |display_invoice_amount_total_words可选 |Integer|大写发票总额| |display_invoice_tax_company_currency可选 |Integer|税款以公司币别表示| @@ -1209,8 +1209,8 @@ |email_secondary_color可选 |String|电子邮件按钮颜色| |employee_properties_definition可选 |String|员工属性| |expects_chart_of_accounts可选 |Integer|Expects a Chart of Accounts| -|fiscalyear_last_day |Integer|会计年度最后一天| -|fiscalyear_last_month |String|会计年度最后一个月| +|fiscalyear_last_day可选 |Integer|会计年度最后一天| +|fiscalyear_last_month可选 |String|会计年度最后一个月| |fiscalyear_lock_date可选 |Timestamp|全球锁定日期| |font可选 |String|字体| |hard_lock_date可选 |Timestamp|硬锁定日期| @@ -1229,8 +1229,8 @@ |invoice_terms_html可选 |String|Default Terms and Conditions as a Web page| |is_company_details_empty可选 |Integer|公司详细信息是否为空| |job_properties_definition可选 |String|职位属性| -|layout_background |String|布局背景| -|manufacturing_lead |Double|制造提前期| +|layout_background可选 |String|布局背景| +|manufacturing_lead可选 |Double|制造提前期| |message_attachment_count可选 |Integer|Attachment Count| |message_has_error可选 |Integer|Message Delivery error| |message_has_error_counter可选 |Integer|错误数量| @@ -1245,12 +1245,12 @@ |parent_id可选 |String|上级公司| |parent_name可选 |String|上级公司| |parent_path可选 |String|上级路径| -|partner_id |String|合作伙伴| -|partner_name |String|合作伙伴| +|partner_id可选 |String|合作伙伴| +|partner_name可选 |String|合作伙伴| |payment_onboarding_payment_method可选 |String|选择支付方式| |po_double_validation可选 |String|批准等级| |po_double_validation_amount可选 |BigDecimal|再次验证金额| -|po_lead |Double|采购提前期| +|po_lead可选 |Double|采购提前期| |po_lock可选 |String|销售订单修改| |portal_confirmation_pay可选 |Integer|线上付款| |portal_confirmation_sign可选 |Integer|线上签署| @@ -1266,7 +1266,7 @@ |sale_lock_date可选 |Timestamp|销售锁定日期| |sale_onboarding_payment_method可选 |String|销售入门选择的付款方式| |secondary_color可选 |String|次要颜色| -|security_lead |Double|销售安全天数| +|security_lead可选 |Double|销售安全天数| |sequence可选 |Integer|序列| |snailmail_color可选 |Integer|实体邮寄颜色| |snailmail_cover可选 |Integer|添加一个封面页| @@ -1479,8 +1479,8 @@ Integer |followers可选 |Object|关注者| |absence_management可选 |Integer|缺勤管理| |account_fiscal_country_id可选 |String|会计所在国家/地区| -|account_opening_date |Timestamp|期初分录| -|account_price_include |String|Default Sales Price Include| +|account_opening_date可选 |Timestamp|期初分录| +|account_price_include可选 |String|Default Sales Price Include| |account_storno可选 |Integer|Storno会计应用程序| |account_use_credit_limit可选 |Integer|销售信用额度| |active可选 |Integer|有效| @@ -1518,8 +1518,8 @@ Integer |company_registry_placeholder可选 |String|公司注册处占位符| |company_vat_placeholder可选 |String|公司增值税占位符| |contract_expiration_notice_period可选 |Integer|合同到期通知期| -|currency_id |String|币别| -|currency_name |String|币别| +|currency_id可选 |String|币别| +|currency_name可选 |String|币别| |days_to_purchase可选 |Double|采购前置天数| |display_invoice_amount_total_words可选 |Integer|大写发票总额| |display_invoice_tax_company_currency可选 |Integer|税款以公司币别表示| @@ -1529,8 +1529,8 @@ Integer |email_secondary_color可选 |String|电子邮件按钮颜色| |employee_properties_definition可选 |String|员工属性| |expects_chart_of_accounts可选 |Integer|Expects a Chart of Accounts| -|fiscalyear_last_day |Integer|会计年度最后一天| -|fiscalyear_last_month |String|会计年度最后一个月| +|fiscalyear_last_day可选 |Integer|会计年度最后一天| +|fiscalyear_last_month可选 |String|会计年度最后一个月| |fiscalyear_lock_date可选 |Timestamp|全球锁定日期| |font可选 |String|字体| |hard_lock_date可选 |Timestamp|硬锁定日期| @@ -1549,8 +1549,8 @@ Integer |invoice_terms_html可选 |String|Default Terms and Conditions as a Web page| |is_company_details_empty可选 |Integer|公司详细信息是否为空| |job_properties_definition可选 |String|职位属性| -|layout_background |String|布局背景| -|manufacturing_lead |Double|制造提前期| +|layout_background可选 |String|布局背景| +|manufacturing_lead可选 |Double|制造提前期| |message_attachment_count可选 |Integer|Attachment Count| |message_has_error可选 |Integer|Message Delivery error| |message_has_error_counter可选 |Integer|错误数量| @@ -1565,12 +1565,12 @@ Integer |parent_id可选 |String|上级公司| |parent_name可选 |String|上级公司| |parent_path可选 |String|上级路径| -|partner_id |String|合作伙伴| -|partner_name |String|合作伙伴| +|partner_id可选 |String|合作伙伴| +|partner_name可选 |String|合作伙伴| |payment_onboarding_payment_method可选 |String|选择支付方式| |po_double_validation可选 |String|批准等级| |po_double_validation_amount可选 |BigDecimal|再次验证金额| -|po_lead |Double|采购提前期| +|po_lead可选 |Double|采购提前期| |po_lock可选 |String|销售订单修改| |portal_confirmation_pay可选 |Integer|线上付款| |portal_confirmation_sign可选 |Integer|线上签署| @@ -1586,7 +1586,7 @@ Integer |sale_lock_date可选 |Timestamp|销售锁定日期| |sale_onboarding_payment_method可选 |String|销售入门选择的付款方式| |secondary_color可选 |String|次要颜色| -|security_lead |Double|销售安全天数| +|security_lead可选 |Double|销售安全天数| |sequence可选 |Integer|序列| |snailmail_color可选 |Integer|实体邮寄颜色| |snailmail_cover可选 |Integer|添加一个封面页| @@ -1948,8 +1948,8 @@ Integer |followers可选 |Object|关注者| |absence_management可选 |Integer|缺勤管理| |account_fiscal_country_id可选 |String|会计所在国家/地区| -|account_opening_date |Timestamp|期初分录| -|account_price_include |String|Default Sales Price Include| +|account_opening_date可选 |Timestamp|期初分录| +|account_price_include可选 |String|Default Sales Price Include| |account_storno可选 |Integer|Storno会计应用程序| |account_use_credit_limit可选 |Integer|销售信用额度| |active可选 |Integer|有效| @@ -1987,8 +1987,8 @@ Integer |company_registry_placeholder可选 |String|公司注册处占位符| |company_vat_placeholder可选 |String|公司增值税占位符| |contract_expiration_notice_period可选 |Integer|合同到期通知期| -|currency_id |String|币别| -|currency_name |String|币别| +|currency_id可选 |String|币别| +|currency_name可选 |String|币别| |days_to_purchase可选 |Double|采购前置天数| |display_invoice_amount_total_words可选 |Integer|大写发票总额| |display_invoice_tax_company_currency可选 |Integer|税款以公司币别表示| @@ -1998,8 +1998,8 @@ Integer |email_secondary_color可选 |String|电子邮件按钮颜色| |employee_properties_definition可选 |String|员工属性| |expects_chart_of_accounts可选 |Integer|Expects a Chart of Accounts| -|fiscalyear_last_day |Integer|会计年度最后一天| -|fiscalyear_last_month |String|会计年度最后一个月| +|fiscalyear_last_day可选 |Integer|会计年度最后一天| +|fiscalyear_last_month可选 |String|会计年度最后一个月| |fiscalyear_lock_date可选 |Timestamp|全球锁定日期| |font可选 |String|字体| |hard_lock_date可选 |Timestamp|硬锁定日期| @@ -2018,8 +2018,8 @@ Integer |invoice_terms_html可选 |String|Default Terms and Conditions as a Web page| |is_company_details_empty可选 |Integer|公司详细信息是否为空| |job_properties_definition可选 |String|职位属性| -|layout_background |String|布局背景| -|manufacturing_lead |Double|制造提前期| +|layout_background可选 |String|布局背景| +|manufacturing_lead可选 |Double|制造提前期| |message_attachment_count可选 |Integer|Attachment Count| |message_has_error可选 |Integer|Message Delivery error| |message_has_error_counter可选 |Integer|错误数量| @@ -2034,12 +2034,12 @@ Integer |parent_id可选 |String|上级公司| |parent_name可选 |String|上级公司| |parent_path可选 |String|上级路径| -|partner_id |String|合作伙伴| -|partner_name |String|合作伙伴| +|partner_id可选 |String|合作伙伴| +|partner_name可选 |String|合作伙伴| |payment_onboarding_payment_method可选 |String|选择支付方式| |po_double_validation可选 |String|批准等级| |po_double_validation_amount可选 |BigDecimal|再次验证金额| -|po_lead |Double|采购提前期| +|po_lead可选 |Double|采购提前期| |po_lock可选 |String|销售订单修改| |portal_confirmation_pay可选 |Integer|线上付款| |portal_confirmation_sign可选 |Integer|线上签署| @@ -2055,7 +2055,7 @@ Integer |sale_lock_date可选 |Timestamp|销售锁定日期| |sale_onboarding_payment_method可选 |String|销售入门选择的付款方式| |secondary_color可选 |String|次要颜色| -|security_lead |Double|销售安全天数| +|security_lead可选 |Double|销售安全天数| |sequence可选 |Integer|序列| |snailmail_color可选 |Integer|实体邮寄颜色| |snailmail_cover可选 |Integer|添加一个封面页| diff --git a/doc/odoo/api/ServiceAPI/deapi/res_partner.md b/doc/odoo/api/ServiceAPI/deapi/res_partner.md index 4683c3fce9d60f4f6a1bbd731595224d84f3667e..fcd5e245f6c7d3a36d61be43aba3cc4fe0611a60 100644 --- a/doc/odoo/api/ServiceAPI/deapi/res_partner.md +++ b/doc/odoo/api/ServiceAPI/deapi/res_partner.md @@ -150,6 +150,7 @@ |vat_label可选 |String|税务 ID 标签| |website可选 |String|网站链接| |zip可选 |String|邮编| +|employee_id可选 |String|相关员工| |avatar128可选 |String|头像128| |image128可选 |String|图片128| |avatar512可选 |String|头像512| @@ -304,6 +305,7 @@ "write_date" : null, "write_uid" : null, "zip" : null, + "employee_id" : null, "avatar128" : null, "image128" : null, "avatar512" : null, @@ -460,6 +462,7 @@ "write_date" : null, "write_uid" : null, "zip" : null, + "employee_id" : null, "avatar128" : null, "image128" : null, "avatar512" : null, @@ -636,6 +639,7 @@ "write_date" : null, "write_uid" : null, "zip" : null, + "employee_id" : null, "avatar128" : null, "image128" : null, "avatar512" : null, @@ -827,6 +831,7 @@ |vat_label可选 |String|税务 ID 标签| |website可选 |String|网站链接| |zip可选 |String|邮编| +|employee_id可选 |String|相关员工| |avatar128可选 |String|头像128| |image128可选 |String|图片128| |avatar512可选 |String|头像512| @@ -981,6 +986,7 @@ "write_date" : null, "write_uid" : null, "zip" : null, + "employee_id" : null, "avatar128" : null, "image128" : null, "avatar512" : null, @@ -1137,6 +1143,7 @@ "write_date" : null, "write_uid" : null, "zip" : null, + "employee_id" : null, "avatar128" : null, "image128" : null, "avatar512" : null, @@ -1302,6 +1309,7 @@ |vat_label可选 |String|税务 ID 标签| |website可选 |String|网站链接| |zip可选 |String|邮编| +|employee_id可选 |String|相关员工| |avatar128可选 |String|头像128| |image128可选 |String|图片128| |avatar512可选 |String|头像512| @@ -1456,6 +1464,7 @@ "write_date" : null, "write_uid" : null, "zip" : null, + "employee_id" : null, "avatar128" : null, "image128" : null, "avatar512" : null, @@ -1626,6 +1635,7 @@ Integer |vat_label可选 |String|税务 ID 标签| |website可选 |String|网站链接| |zip可选 |String|邮编| +|employee_id可选 |String|相关员工| |avatar128可选 |String|头像128| |image128可选 |String|图片128| |avatar512可选 |String|头像512| @@ -1780,6 +1790,7 @@ Integer "write_date" : null, "write_uid" : null, "zip" : null, + "employee_id" : null, "avatar128" : null, "image128" : null, "avatar512" : null, @@ -1936,6 +1947,7 @@ Integer "write_date" : null, "write_uid" : null, "zip" : null, + "employee_id" : null, "avatar128" : null, "image128" : null, "avatar512" : null, @@ -2101,6 +2113,7 @@ Integer |vat_label可选 |String|税务 ID 标签| |website可选 |String|网站链接| |zip可选 |String|邮编| +|employee_id可选 |String|相关员工| |avatar128可选 |String|头像128| |image128可选 |String|图片128| |avatar512可选 |String|头像512| @@ -2255,6 +2268,7 @@ Integer "write_date" : null, "write_uid" : null, "zip" : null, + "employee_id" : null, "avatar128" : null, "image128" : null, "avatar512" : null, @@ -2411,6 +2425,7 @@ Integer "write_date" : null, "write_uid" : null, "zip" : null, + "employee_id" : null, "avatar128" : null, "image128" : null, "avatar512" : null, @@ -2663,6 +2678,7 @@ Integer "write_date" : null, "write_uid" : null, "zip" : null, + "employee_id" : null, "avatar128" : null, "image128" : null, "avatar512" : null, @@ -2915,6 +2931,7 @@ Integer "write_date" : null, "write_uid" : null, "zip" : null, + "employee_id" : null, "avatar128" : null, "image128" : null, "avatar512" : null, @@ -3167,6 +3184,7 @@ Integer "write_date" : null, "write_uid" : null, "zip" : null, + "employee_id" : null, "avatar128" : null, "image128" : null, "avatar512" : null, diff --git a/doc/odoo/app/ibizodooapp.md b/doc/odoo/app/ibizodooapp.md index 5e72ce48ce2869844742635abb673e83e1a865df..3ba9e68ba9839dceb5eaca1c13a07eb720a00d44 100644 --- a/doc/odoo/app/ibizodooapp.md +++ b/doc/odoo/app/ibizodooapp.md @@ -45,6 +45,7 @@ |[线索/商机编辑视图](app/view/crm_lead_main_view)|crm_lead_main_view|线索/商机|实体编辑视图|系统自动添加| |[渠道](app/view/crm_lead_multi_data_view)|crm_lead_multi_data_view|渠道|实体多数据自定义视图|| |[邀请成员](app/view/discuss_channel_invite_member_view)|discuss_channel_invite_member_view|邀请成员|实体选项操作视图|| +|[讨论频道](app/view/discuss_channel_main_pop_view)|discuss_channel_main_pop_view|讨论频道|实体自定义视图|系统自动添加| |[讨论频道主视图](app/view/discuss_channel_main_view)|discuss_channel_main_view|讨论频道|实体自定义视图|系统自动添加| |[频道成员编辑视图](app/view/discuss_channel_member_edit_view)|discuss_channel_member_edit_view|频道成员|实体编辑视图|系统自动添加| |[频道成员表格视图](app/view/discuss_channel_member_grid_view)|discuss_channel_member_grid_view|频道成员|实体表格视图|系统自动添加| @@ -77,7 +78,7 @@ |[组织架构](app/view/hr_employee_org_tree_view9)|hr_employee_org_tree_view9|组织架构|实体树视图(部件视图)|| |[员工选择表格视图](app/view/hr_employee_pickup_grid_view)|hr_employee_pickup_grid_view|员工|实体选择表格视图(部件视图)|系统自动添加| |[员工数据选择视图](app/view/hr_employee_pickup_view)|hr_employee_pickup_view|员工|实体数据选择视图|系统自动添加| -|[ibizodooapp](app/view/hr_index_view)|hr_index_view|ibizodooapp|应用首页视图|| +|[ibizodooapp](app/view/hr_index_view)|hr_index_view|人力资源|应用首页视图|| |[工作岗位编辑视图](app/view/hr_job_edit_view)|hr_job_edit_view|工作岗位|实体编辑视图|系统自动添加| |[工作岗位](app/view/hr_job_main_view)|hr_job_main_view|工作岗位|实体编辑视图|| |[工作岗位](app/view/hr_job_main_view_test)|hr_job_main_view_test|工作岗位|实体编辑视图|| @@ -174,6 +175,8 @@ |[电子邮件域名数据选择视图](app/view/mail_alias_domain_pickup_view)|mail_alias_domain_pickup_view|电子邮件域名|实体数据选择视图|系统自动添加| |[EMail别名实体](app/view/mail_alias_main_view)|mail_alias_main_view|别名|实体编辑视图|| |[EMail别名](app/view/mail_alias_multi_data_view)|mail_alias_multi_data_view|别名|实体多数据自定义视图|| +|[单据关注者](app/view/mail_followers_main_view)|mail_followers_main_view|单据关注者|实体编辑视图|| +|[单据关注者](app/view/mail_followers_multi_data_view)|mail_followers_multi_data_view|单据关注者|实体多数据自定义视图|| |[发送邮件](app/view/mail_mail_main_view)|mail_mail_main_view|EMail|实体编辑视图|| |[发送邮件](app/view/mail_mail_multi_data_view)|mail_mail_multi_data_view|EMail|实体多数据自定义视图|| |[频道](app/view/mail_message_discuss_channel_list_view)|mail_message_discuss_channel_list_view|频道|实体列表视图|系统自动添加| @@ -181,10 +184,20 @@ |[收件箱](app/view/mail_message_discuss_inbox_list_view)|mail_message_discuss_inbox_list_view|收件箱|实体列表视图|| |[讨论](app/view/mail_message_discuss_main_view)|mail_message_discuss_main_view|讨论|实体树导航视图|| |[星标消息](app/view/mail_message_discuss_starred_list_view)|mail_message_discuss_starred_list_view|星标消息|实体列表视图|系统自动添加| +|[消息编辑视图](app/view/mail_message_edit_view)|mail_message_edit_view|消息|实体编辑视图|系统自动添加| +|[消息](app/view/mail_message_main_view)|mail_message_main_view|消息|实体编辑视图|| +|[消息](app/view/mail_message_multi_data_view)|mail_message_multi_data_view|消息|实体多数据自定义视图|| +|[消息选择表格视图](app/view/mail_message_pickup_grid_view)|mail_message_pickup_grid_view|消息|实体选择表格视图(部件视图)|系统自动添加| +|[消息数据选择视图](app/view/mail_message_pickup_view)|mail_message_pickup_view|消息|实体数据选择视图|系统自动添加| |[置顶消息](app/view/mail_message_pinned_list_view)|mail_message_pinned_list_view|置顶消息|实体列表视图|系统自动添加| +|[消息数据重定向视图](app/view/mail_message_redirect_view)|mail_message_redirect_view|消息|实体数据重定向视图|系统自动添加| |[消息检索](app/view/mail_message_search_list_view)|mail_message_search_list_view|消息检索|实体列表视图|系统自动添加| +|[消息通知](app/view/mail_notification_main_view)|mail_notification_main_view|消息通知|实体编辑视图|| +|[消息通知](app/view/mail_notification_multi_data_view)|mail_notification_multi_data_view|消息通知|实体多数据自定义视图|| |[EMail模板](app/view/mail_template_main_view)|mail_template_main_view|EMail模板|实体编辑视图|| |[EMail模板](app/view/mail_template_multi_data_view)|mail_template_multi_data_view|EMail模板|实体多数据自定义视图|| +|[EMail模板选择表格视图](app/view/mail_template_pickup_grid_view)|mail_template_pickup_grid_view|EMail模板|实体选择表格视图(部件视图)|系统自动添加| +|[EMail模板数据选择视图](app/view/mail_template_pickup_view)|mail_template_pickup_view|EMail模板|实体数据选择视图|系统自动添加| |[邮件会话](app/view/mail_thread_component_view)|mail_thread_component_view|邮件会话|实体自定义视图|| |[联系人首页](app/view/partner_index_view)|partner_index_view|联系人|应用首页视图|| |[核心产品功能编辑视图](app/view/ps_core_prd_func_info_view)|ps_core_prd_func_info_view|核心产品功能|实体编辑视图|系统自动添加| diff --git a/doc/odoo/app/view/crm_lead_main_view.md b/doc/odoo/app/view/crm_lead_main_view.md index 9f2b836f37870fb6ceaea858619bfd7e454e5a13..cc356dbc3d0ec34e3b09d90164eca83a414a3589 100644 --- a/doc/odoo/app/view/crm_lead_main_view.md +++ b/doc/odoo/app/view/crm_lead_main_view.md @@ -14,21 +14,21 @@ ### 关联界面行为 + * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [删除评论](module/mail/mail_message#界面行为) + * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [回复](module/mail/mail_message#界面行为) * [邮件会话(MAIL_THREAD)](module/mail/mail_thread) : [清空评论](module/mail/mail_thread#界面行为) - * [邮件会话(MAIL_THREAD)](module/mail/mail_thread) : [添加附件](module/mail/mail_thread#界面行为) + * [邮件会话(MAIL_THREAD)](module/mail/mail_thread) : [打开安排活动视图](module/mail/mail_thread#界面行为) + * [邮件会话(MAIL_THREAD)](module/mail/mail_thread) : [发送评论](module/mail/mail_thread#界面行为) * [附件(IR_ATTACHMENT)](module/base/ir_attachment) : [附件下载](module/base/ir_attachment#界面行为) - * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [删除评论](module/mail/mail_message#界面行为) * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [编辑](module/mail/mail_message#界面行为) - * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [回复](module/mail/mail_message#界面行为) + * [邮件会话(MAIL_THREAD)](module/mail/mail_thread) : [添加附件](module/mail/mail_thread#界面行为) * [线索/商机(CRM_LEAD)](module/crm/crm_lead) : [编辑界面_保存操作](module/crm/crm_lead#界面行为) - * [邮件会话(MAIL_THREAD)](module/mail/mail_thread) : [发送评论](module/mail/mail_thread#界面行为) - * [邮件会话(MAIL_THREAD)](module/mail/mail_thread) : [打开安排活动视图](module/mail/mail_thread#界面行为) ### 关联界面逻辑 - * [单据关注者(MAIL_FOLLOWERS)](module/mail/mail_followers) : [关注人员更新(嵌入)](module/mail/mail_followers/uilogic/attention_personnel_update_emb) * [附件(IR_ATTACHMENT)](module/base/ir_attachment) : [删除附件数据](module/base/ir_attachment/uilogic/delete_attachment) * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [控制评论按钮显示](module/mail/mail_message/uilogic/comment_icon_show) * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [控制评论按钮隐藏](module/mail/mail_message/uilogic/comment_icon_hidden) + * [单据关注者(MAIL_FOLLOWERS)](module/mail/mail_followers) : [关注人员更新(嵌入)](module/mail/mail_followers/uilogic/attention_personnel_update_emb) ### 关联视图 * [安排活动(mail_activity_schedule_quick_create_view)](app/view/mail_activity_schedule_quick_create_view) diff --git a/doc/odoo/app/view/discuss_channel_main_pop_view.md b/doc/odoo/app/view/discuss_channel_main_pop_view.md new file mode 100644 index 0000000000000000000000000000000000000000..ff748473dbe115fa7d97a029e8e0c34003727a08 --- /dev/null +++ b/doc/odoo/app/view/discuss_channel_main_pop_view.md @@ -0,0 +1,48 @@ +# 讨论频道(discuss_channel_main_pop_view) + + +系统自动添加 + + + +## 控件 +#### 数据视图(attachments) +#### CAPTIONBAR(captionbar) +#### 列表(control) +#### 编辑表单(form) +#### 列表(members) +#### 单视图面板(pinned_message_view) +#### 单视图面板(search_message_view) + + +### 关联界面行为 + * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [回复](module/mail/mail_message#界面行为) + * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [发送评论](module/discuss/discuss_channel#界面行为) + * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [清空评论](module/discuss/discuss_channel#界面行为) + * [附件(IR_ATTACHMENT)](module/base/ir_attachment) : [附件下载](module/base/ir_attachment#界面行为) + * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [删除评论](module/mail/mail_message#界面行为) + * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [编辑](module/mail/mail_message#界面行为) + +### 关联界面逻辑 + * [附件(IR_ATTACHMENT)](module/base/ir_attachment) : [删除附件数据](module/base/ir_attachment/uilogic/delete_attachment) + * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [控制评论按钮显示](module/mail/mail_message/uilogic/comment_icon_show) + * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [控制评论按钮隐藏](module/mail/mail_message/uilogic/comment_icon_hidden) + +### 关联视图 + * [频道成员(discuss_channel_member_grid_view)](app/view/discuss_channel_member_grid_view) + * [讨论频道(discuss_channel_pickup_view)](app/view/discuss_channel_pickup_view) + * [子频道(discuss_channel_sub_channel_grid_view)](app/view/discuss_channel_sub_channel_grid_view) + * [置顶消息(mail_message_pinned_list_view)](app/view/mail_message_pinned_list_view) + * [消息检索(mail_message_search_list_view)](app/view/mail_message_search_list_view) + * [权限组(res_groups_pickup_view)](app/view/res_groups_pickup_view) + + \ No newline at end of file diff --git a/doc/odoo/app/view/discuss_channel_main_view.md b/doc/odoo/app/view/discuss_channel_main_view.md index 5a6c654b95c4113a848b4d86ce3b454e4d727548..9c7fb99425e8462da1d53e4d26db570aec591870 100644 --- a/doc/odoo/app/view/discuss_channel_main_view.md +++ b/doc/odoo/app/view/discuss_channel_main_view.md @@ -17,19 +17,19 @@ ### 关联界面行为 - * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [回复](module/mail/mail_message#界面行为) - * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [打开消息检索](module/discuss/discuss_channel#界面行为) - * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [讨论串](module/discuss/discuss_channel#界面行为) * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [显示置顶消息](module/discuss/discuss_channel#界面行为) * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [编辑](module/mail/mail_message#界面行为) * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [发送评论](module/discuss/discuss_channel#界面行为) + * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [通知设置](module/discuss/discuss_channel#界面行为) + * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [回复](module/mail/mail_message#界面行为) * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [删除评论](module/mail/mail_message#界面行为) - * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [打开附件栏](module/discuss/discuss_channel#界面行为) - * [附件(IR_ATTACHMENT)](module/base/ir_attachment) : [附件下载](module/base/ir_attachment#界面行为) + * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [打开消息检索](module/discuss/discuss_channel#界面行为) + * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [清空评论](module/discuss/discuss_channel#界面行为) * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [邀请人员](module/discuss/discuss_channel#界面行为) - * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [通知设置](module/discuss/discuss_channel#界面行为) * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [打开成员列表栏](module/discuss/discuss_channel#界面行为) - * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [清空评论](module/discuss/discuss_channel#界面行为) + * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [打开附件栏](module/discuss/discuss_channel#界面行为) + * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [讨论串](module/discuss/discuss_channel#界面行为) + * [附件(IR_ATTACHMENT)](module/base/ir_attachment) : [附件下载](module/base/ir_attachment#界面行为) ### 关联界面逻辑 * [附件(IR_ATTACHMENT)](module/base/ir_attachment) : [删除附件数据](module/base/ir_attachment/uilogic/delete_attachment) diff --git a/doc/odoo/app/view/discuss_channel_member_edit_view.md b/doc/odoo/app/view/discuss_channel_member_edit_view.md index c472085ba53d22910338f624a394c9055c452229..08b75dd6305660ed6634be6d7b3b53c8507fdcfb 100644 --- a/doc/odoo/app/view/discuss_channel_member_edit_view.md +++ b/doc/odoo/app/view/discuss_channel_member_edit_view.md @@ -13,15 +13,15 @@ ### 关联界面行为 - * [频道成员(DISCUSS_CHANNEL_MEMBER)](module/discuss/discuss_channel_member) : [编辑界面_最后一个记录](module/discuss/discuss_channel_member#界面行为) - * [频道成员(DISCUSS_CHANNEL_MEMBER)](module/discuss/discuss_channel_member) : [编辑界面_保存并退出操作](module/discuss/discuss_channel_member#界面行为) - * [频道成员(DISCUSS_CHANNEL_MEMBER)](module/discuss/discuss_channel_member) : [编辑界面_保存并新建操作](module/discuss/discuss_channel_member#界面行为) - * [频道成员(DISCUSS_CHANNEL_MEMBER)](module/discuss/discuss_channel_member) : [编辑界面_删除并退出操作](module/discuss/discuss_channel_member#界面行为) * [频道成员(DISCUSS_CHANNEL_MEMBER)](module/discuss/discuss_channel_member) : [编辑界面_第一个记录](module/discuss/discuss_channel_member#界面行为) + * [频道成员(DISCUSS_CHANNEL_MEMBER)](module/discuss/discuss_channel_member) : [编辑界面_最后一个记录](module/discuss/discuss_channel_member#界面行为) * [频道成员(DISCUSS_CHANNEL_MEMBER)](module/discuss/discuss_channel_member) : [编辑界面_保存操作](module/discuss/discuss_channel_member#界面行为) - * [频道成员(DISCUSS_CHANNEL_MEMBER)](module/discuss/discuss_channel_member) : [编辑界面_新建操作](module/discuss/discuss_channel_member#界面行为) * [频道成员(DISCUSS_CHANNEL_MEMBER)](module/discuss/discuss_channel_member) : [编辑界面_拷贝操作](module/discuss/discuss_channel_member#界面行为) + * [频道成员(DISCUSS_CHANNEL_MEMBER)](module/discuss/discuss_channel_member) : [编辑界面_保存并新建操作](module/discuss/discuss_channel_member#界面行为) * [频道成员(DISCUSS_CHANNEL_MEMBER)](module/discuss/discuss_channel_member) : [编辑界面_上一个记录](module/discuss/discuss_channel_member#界面行为) + * [频道成员(DISCUSS_CHANNEL_MEMBER)](module/discuss/discuss_channel_member) : [编辑界面_新建操作](module/discuss/discuss_channel_member#界面行为) + * [频道成员(DISCUSS_CHANNEL_MEMBER)](module/discuss/discuss_channel_member) : [编辑界面_保存并退出操作](module/discuss/discuss_channel_member#界面行为) + * [频道成员(DISCUSS_CHANNEL_MEMBER)](module/discuss/discuss_channel_member) : [编辑界面_删除并退出操作](module/discuss/discuss_channel_member#界面行为) * [频道成员(DISCUSS_CHANNEL_MEMBER)](module/discuss/discuss_channel_member) : [编辑界面_下一个记录](module/discuss/discuss_channel_member#界面行为) ### 关联视图 diff --git a/doc/odoo/app/view/discuss_channel_quick_cfg_view.md b/doc/odoo/app/view/discuss_channel_quick_cfg_view.md index 32055170ca84441270e61500941bbb657055aa40..423ff806890cf5528e4762509e42cb5769a5f893 100644 --- a/doc/odoo/app/view/discuss_channel_quick_cfg_view.md +++ b/doc/odoo/app/view/discuss_channel_quick_cfg_view.md @@ -14,8 +14,8 @@ ### 关联界面行为 - * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [取消变更](module/discuss/discuss_channel#界面行为) * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [编辑界面_保存操作](module/discuss/discuss_channel#界面行为) + * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [取消变更](module/discuss/discuss_channel#界面行为) * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [编辑界面_保存并新建操作](module/discuss/discuss_channel#界面行为) ### 关联视图 diff --git a/doc/odoo/app/view/discuss_index_view.md b/doc/odoo/app/view/discuss_index_view.md index 5fbe3dfe1c663f11280a5d0565a94d6ce69c45e2..a00778c20d4b27dfc19b6584a98c1439069aab68 100644 --- a/doc/odoo/app/view/discuss_index_view.md +++ b/doc/odoo/app/view/discuss_index_view.md @@ -8,25 +8,25 @@ ### 关联界面行为 - * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [回复](module/mail/mail_message#界面行为) - * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [打开消息检索](module/discuss/discuss_channel#界面行为) - * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [讨论串](module/discuss/discuss_channel#界面行为) * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [显示置顶消息](module/discuss/discuss_channel#界面行为) * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [编辑](module/mail/mail_message#界面行为) * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [发送评论](module/discuss/discuss_channel#界面行为) + * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [通知设置](module/discuss/discuss_channel#界面行为) + * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [回复](module/mail/mail_message#界面行为) * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [频道管理](module/discuss/discuss_channel#界面行为) + * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [离开频道](module/discuss/discuss_channel#界面行为) + * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [新建频道](module/discuss/discuss_channel#界面行为) * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [删除评论](module/mail/mail_message#界面行为) - * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [打开附件栏](module/discuss/discuss_channel#界面行为) - * [附件(IR_ATTACHMENT)](module/base/ir_attachment) : [附件下载](module/base/ir_attachment#界面行为) + * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [打开消息检索](module/discuss/discuss_channel#界面行为) + * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [清空评论](module/discuss/discuss_channel#界面行为) + * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [频道管理](module/discuss/discuss_channel#界面行为) * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [邀请人员](module/discuss/discuss_channel#界面行为) + * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [打开成员列表栏](module/discuss/discuss_channel#界面行为) * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [打开聊天](module/discuss/discuss_channel#界面行为) - * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [频道管理](module/discuss/discuss_channel#界面行为) - * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [新建频道](module/discuss/discuss_channel#界面行为) - * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [通知设置](module/discuss/discuss_channel#界面行为) - * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [离开频道](module/discuss/discuss_channel#界面行为) + * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [打开附件栏](module/discuss/discuss_channel#界面行为) * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [新建频道](module/discuss/discuss_channel#界面行为) - * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [打开成员列表栏](module/discuss/discuss_channel#界面行为) - * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [清空评论](module/discuss/discuss_channel#界面行为) + * [讨论频道(DISCUSS_CHANNEL)](module/discuss/discuss_channel) : [讨论串](module/discuss/discuss_channel#界面行为) + * [附件(IR_ATTACHMENT)](module/base/ir_attachment) : [附件下载](module/base/ir_attachment#界面行为) ### 关联界面逻辑 * [附件(IR_ATTACHMENT)](module/base/ir_attachment) : [删除附件数据](module/base/ir_attachment/uilogic/delete_attachment) @@ -35,6 +35,7 @@ ### 关联视图 * [邀请成员(discuss_channel_invite_member_view)](app/view/discuss_channel_invite_member_view) + * [讨论频道(discuss_channel_main_pop_view)](app/view/discuss_channel_main_pop_view) * [讨论频道(discuss_channel_main_view)](app/view/discuss_channel_main_view) * [频道成员(discuss_channel_member_grid_view)](app/view/discuss_channel_member_grid_view) * [讨论频道(discuss_channel_pickup_view)](app/view/discuss_channel_pickup_view) diff --git a/doc/odoo/app/view/fetchmail_server_main_view.md b/doc/odoo/app/view/fetchmail_server_main_view.md index d66b209108790e3729a84b8867389190a9d649fb..71fc75d7d6ee794914224b66c85ba788a34c97f4 100644 --- a/doc/odoo/app/view/fetchmail_server_main_view.md +++ b/doc/odoo/app/view/fetchmail_server_main_view.md @@ -29,9 +29,9 @@ if(data[0].server_type === "pop"){ ### 关联界面行为 - * [收件服务器(FETCHMAIL_SERVER)](module/mail/fetchmail_server) : [编辑界面_保存操作](module/mail/fetchmail_server#界面行为) - * [收件服务器(FETCHMAIL_SERVER)](module/mail/fetchmail_server) : [编辑界面_保存并新建操作](module/mail/fetchmail_server#界面行为) * [收件服务器(FETCHMAIL_SERVER)](module/mail/fetchmail_server) : [取消变更](module/mail/fetchmail_server#界面行为) + * [收件服务器(FETCHMAIL_SERVER)](module/mail/fetchmail_server) : [编辑界面_保存并新建操作](module/mail/fetchmail_server#界面行为) + * [收件服务器(FETCHMAIL_SERVER)](module/mail/fetchmail_server) : [编辑界面_保存操作](module/mail/fetchmail_server#界面行为) \ No newline at end of file diff --git a/doc/odoo/app/view/mail_followers_multi_data_view.md b/doc/odoo/app/view/mail_followers_multi_data_view.md new file mode 100644 index 0000000000000000000000000000000000000000..008e139174d467de88a405eee5b136e576cfb21c --- /dev/null +++ b/doc/odoo/app/view/mail_followers_multi_data_view.md @@ -0,0 +1,31 @@ +# 单据关注者(mail_followers_multi_data_view) + + + +## 控件 +#### CAPTIONBAR(captionbar) +#### 数据表格(grid) +#### 搜索栏(searchbar) +#### 工具栏(toolbar) + +## 视图界面逻辑 + * newdata(预置新建数据逻辑) + * opendata(预置打开数据逻辑) + + +### 关联界面行为 + * [单据关注者(MAIL_FOLLOWERS)](module/mail/mail_followers) : [表格界面_新建操作](module/mail/mail_followers#界面行为) + +### 关联视图 + * [单据关注者(mail_followers_main_view)](app/view/mail_followers_main_view) + + \ No newline at end of file diff --git a/doc/odoo/app/view/mail_mail_main_view.md b/doc/odoo/app/view/mail_mail_main_view.md index 2f235b7bf96c3b93f6ab0d73d5494a6d585ff30c..5a63dd881ebab913c0e8454e5ca36081315e7bc6 100644 --- a/doc/odoo/app/view/mail_mail_main_view.md +++ b/doc/odoo/app/view/mail_mail_main_view.md @@ -11,9 +11,9 @@ ### 关联界面行为 + * [发出邮件(MAIL_MAIL)](module/mail/mail_mail) : [取消变更](module/mail/mail_mail#界面行为) * [发出邮件(MAIL_MAIL)](module/mail/mail_mail) : [编辑界面_保存并新建操作](module/mail/mail_mail#界面行为) * [发出邮件(MAIL_MAIL)](module/mail/mail_mail) : [编辑界面_保存操作](module/mail/mail_mail#界面行为) - * [发出邮件(MAIL_MAIL)](module/mail/mail_mail) : [取消变更](module/mail/mail_mail#界面行为) \ No newline at end of file diff --git a/doc/odoo/app/view/mail_message_main_view.md b/doc/odoo/app/view/mail_message_main_view.md new file mode 100644 index 0000000000000000000000000000000000000000..527f6286db96409f6f4debb464aacdcf20ea8e9e --- /dev/null +++ b/doc/odoo/app/view/mail_message_main_view.md @@ -0,0 +1,38 @@ +# 消息(mail_message_main_view) + + + +## 控件 +#### CAPTIONBAR(captionbar) +#### DATAINFOBAR(datainfobar) +#### 数据关系栏(drbar) +#### 编辑表单(form) +#### 工具栏(toolbar) +#### 工具栏(toolbar1) + + +### 关联界面行为 + * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [取消变更](module/mail/mail_message#界面行为) + * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [编辑界面_保存操作](module/mail/mail_message#界面行为) + * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [编辑界面_保存并新建操作](module/mail/mail_message#界面行为) + +### 关联视图 + * [线索/商机(crm_lead_main_view)](app/view/crm_lead_main_view) + * [部门(hr_department_main_view)](app/view/hr_department_main_view) + * [员工(hr_employee_main_view)](app/view/hr_employee_main_view) + * [消息(mail_message_pickup_view)](app/view/mail_message_pickup_view) + * [消息(mail_message_redirect_view)](app/view/mail_message_redirect_view) + * [公司(res_company_main_view)](app/view/res_company_main_view) + * [联系人(res_partner_main_view)](app/view/res_partner_main_view) + * [联系人(res_partner_pickup_view)](app/view/res_partner_pickup_view) + + \ No newline at end of file diff --git a/doc/odoo/app/view/mail_message_multi_data_view.md b/doc/odoo/app/view/mail_message_multi_data_view.md new file mode 100644 index 0000000000000000000000000000000000000000..07b0153665c9e78b1a53e3d9d027df32ddeafdb9 --- /dev/null +++ b/doc/odoo/app/view/mail_message_multi_data_view.md @@ -0,0 +1,31 @@ +# 消息(mail_message_multi_data_view) + + + +## 控件 +#### CAPTIONBAR(captionbar) +#### 数据表格(grid) +#### 搜索栏(searchbar) +#### 工具栏(toolbar) + +## 视图界面逻辑 + * newdata(预置新建数据逻辑) + * opendata(预置打开数据逻辑) + + +### 关联界面行为 + * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [表格界面_新建操作](module/mail/mail_message#界面行为) + +### 关联视图 + * [消息(mail_message_main_view)](app/view/mail_message_main_view) + + \ No newline at end of file diff --git a/doc/odoo/app/view/mail_message_pickup_grid_view.md b/doc/odoo/app/view/mail_message_pickup_grid_view.md new file mode 100644 index 0000000000000000000000000000000000000000..693b470d30b61b92e72fcb6c7aa813ecd8474e00 --- /dev/null +++ b/doc/odoo/app/view/mail_message_pickup_grid_view.md @@ -0,0 +1,24 @@ +# 消息(mail_message_pickup_grid_view) + + +系统自动添加 + + + +## 控件 +#### CAPTIONBAR(captionbar) +#### 数据表格(grid) +#### 搜索栏(searchbar) +#### 搜索表单(searchform) + + + \ No newline at end of file diff --git a/doc/odoo/app/view/mail_message_pickup_view.md b/doc/odoo/app/view/mail_message_pickup_view.md new file mode 100644 index 0000000000000000000000000000000000000000..78dc4c33209cefbf7efe8f1871ad354c108c4dd0 --- /dev/null +++ b/doc/odoo/app/view/mail_message_pickup_view.md @@ -0,0 +1,25 @@ +# 消息(mail_message_pickup_view) + + +系统自动添加 + + + +## 控件 +#### CAPTIONBAR(captionbar) +#### 选择视图面板(pickupviewpanel) + + +### 关联视图 + * [消息(mail_message_pickup_grid_view)](app/view/mail_message_pickup_grid_view) + + \ No newline at end of file diff --git a/doc/odoo/app/view/mail_message_pinned_list_view.md b/doc/odoo/app/view/mail_message_pinned_list_view.md index d6f80590e250a94fde9b969e6cb09e906b800789..1b5c77c25fc01343e0e31f49af8f4175b9a7de64 100644 --- a/doc/odoo/app/view/mail_message_pinned_list_view.md +++ b/doc/odoo/app/view/mail_message_pinned_list_view.md @@ -16,6 +16,9 @@ * opendata(预置打开数据逻辑) +### 关联视图 + * [消息(mail_message_edit_view)](app/view/mail_message_edit_view) + \ No newline at end of file diff --git a/doc/odoo/app/view/mail_message_search_list_view.md b/doc/odoo/app/view/mail_message_search_list_view.md index 06e4fca9ea30999f1ce4e87e3ee610bbc6faa158..75572eba6750ebb9d6c663565f1ecb400b673003 100644 --- a/doc/odoo/app/view/mail_message_search_list_view.md +++ b/doc/odoo/app/view/mail_message_search_list_view.md @@ -17,9 +17,12 @@ ### 关联界面行为 - * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [编辑](module/mail/mail_message#界面行为) - * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [回复](module/mail/mail_message#界面行为) * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [删除评论](module/mail/mail_message#界面行为) + * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [回复](module/mail/mail_message#界面行为) + * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [编辑](module/mail/mail_message#界面行为) + +### 关联视图 + * [消息(mail_message_edit_view)](app/view/mail_message_edit_view) \ No newline at end of file diff --git a/doc/odoo/app/view/mail_notification_multi_data_view.md b/doc/odoo/app/view/mail_notification_multi_data_view.md new file mode 100644 index 0000000000000000000000000000000000000000..2997ec323e49e36daefe3d7c0fcc0d67979f225d --- /dev/null +++ b/doc/odoo/app/view/mail_notification_multi_data_view.md @@ -0,0 +1,31 @@ +# 消息通知(mail_notification_multi_data_view) + + + +## 控件 +#### CAPTIONBAR(captionbar) +#### 数据表格(grid) +#### 搜索栏(searchbar) +#### 工具栏(toolbar) + +## 视图界面逻辑 + * newdata(预置新建数据逻辑) + * opendata(预置打开数据逻辑) + + +### 关联界面行为 + * [消息通知(MAIL_NOTIFICATION)](module/mail/mail_notification) : [表格界面_新建操作](module/mail/mail_notification#界面行为) + +### 关联视图 + * [消息通知(mail_notification_main_view)](app/view/mail_notification_main_view) + + \ No newline at end of file diff --git a/doc/odoo/app/view/mail_template_main_view.md b/doc/odoo/app/view/mail_template_main_view.md index 5e5cbed44f2c1ee59464f869afb8dce77ae36e13..4162fca3469028821b44b483dbeff00e96c231f8 100644 --- a/doc/odoo/app/view/mail_template_main_view.md +++ b/doc/odoo/app/view/mail_template_main_view.md @@ -11,9 +11,9 @@ ### 关联界面行为 - * [EMail模板(MAIL_TEMPLATE)](module/mail/mail_template) : [编辑界面_保存并新建操作](module/mail/mail_template#界面行为) * [EMail模板(MAIL_TEMPLATE)](module/mail/mail_template) : [编辑界面_保存操作](module/mail/mail_template#界面行为) * [EMail模板(MAIL_TEMPLATE)](module/mail/mail_template) : [取消变更](module/mail/mail_template#界面行为) + * [EMail模板(MAIL_TEMPLATE)](module/mail/mail_template) : [编辑界面_保存并新建操作](module/mail/mail_template#界面行为) \ No newline at end of file diff --git a/doc/odoo/app/view/mail_template_pickup_view.md b/doc/odoo/app/view/mail_template_pickup_view.md new file mode 100644 index 0000000000000000000000000000000000000000..f962a876f5e8b7b0f40c6f38ec3703301d7bc5b4 --- /dev/null +++ b/doc/odoo/app/view/mail_template_pickup_view.md @@ -0,0 +1,25 @@ +# EMail模板(mail_template_pickup_view) + + +系统自动添加 + + + +## 控件 +#### CAPTIONBAR(captionbar) +#### 选择视图面板(pickupviewpanel) + + +### 关联视图 + * [EMail模板(mail_template_pickup_grid_view)](app/view/mail_template_pickup_grid_view) + + \ No newline at end of file diff --git a/doc/odoo/app/view/mail_thread_component_view.md b/doc/odoo/app/view/mail_thread_component_view.md index ce614661306e7f38ef0b09c50bb573df38d7d9e6..7c6d29be689c1a8fd6df283a593b25e53f224616 100644 --- a/doc/odoo/app/view/mail_thread_component_view.md +++ b/doc/odoo/app/view/mail_thread_component_view.md @@ -10,20 +10,20 @@ ### 关联界面行为 - * [邮件会话(MAIL_THREAD)](module/mail/mail_thread) : [清空评论](module/mail/mail_thread#界面行为) - * [邮件会话(MAIL_THREAD)](module/mail/mail_thread) : [添加附件](module/mail/mail_thread#界面行为) - * [附件(IR_ATTACHMENT)](module/base/ir_attachment) : [附件下载](module/base/ir_attachment#界面行为) * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [删除评论](module/mail/mail_message#界面行为) - * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [编辑](module/mail/mail_message#界面行为) * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [回复](module/mail/mail_message#界面行为) - * [邮件会话(MAIL_THREAD)](module/mail/mail_thread) : [发送评论](module/mail/mail_thread#界面行为) + * [邮件会话(MAIL_THREAD)](module/mail/mail_thread) : [清空评论](module/mail/mail_thread#界面行为) * [邮件会话(MAIL_THREAD)](module/mail/mail_thread) : [打开安排活动视图](module/mail/mail_thread#界面行为) + * [邮件会话(MAIL_THREAD)](module/mail/mail_thread) : [发送评论](module/mail/mail_thread#界面行为) + * [附件(IR_ATTACHMENT)](module/base/ir_attachment) : [附件下载](module/base/ir_attachment#界面行为) + * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [编辑](module/mail/mail_message#界面行为) + * [邮件会话(MAIL_THREAD)](module/mail/mail_thread) : [添加附件](module/mail/mail_thread#界面行为) ### 关联界面逻辑 - * [单据关注者(MAIL_FOLLOWERS)](module/mail/mail_followers) : [关注人员更新(嵌入)](module/mail/mail_followers/uilogic/attention_personnel_update_emb) * [附件(IR_ATTACHMENT)](module/base/ir_attachment) : [删除附件数据](module/base/ir_attachment/uilogic/delete_attachment) * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [控制评论按钮显示](module/mail/mail_message/uilogic/comment_icon_show) * [消息(MAIL_MESSAGE)](module/mail/mail_message) : [控制评论按钮隐藏](module/mail/mail_message/uilogic/comment_icon_hidden) + * [单据关注者(MAIL_FOLLOWERS)](module/mail/mail_followers) : [关注人员更新(嵌入)](module/mail/mail_followers/uilogic/attention_personnel_update_emb) ### 关联视图 * [安排活动(mail_activity_schedule_quick_create_view)](app/view/mail_activity_schedule_quick_create_view) diff --git a/doc/odoo/app/view/ps_core_prd_func_installed_grid_view.md b/doc/odoo/app/view/ps_core_prd_func_installed_grid_view.md index 245412706e48e37f10c668cce8f42a5a8a594a3a..a49d14e3ce2b6e4f5e3d0a2d71a65e378315f469 100644 --- a/doc/odoo/app/view/ps_core_prd_func_installed_grid_view.md +++ b/doc/odoo/app/view/ps_core_prd_func_installed_grid_view.md @@ -18,17 +18,17 @@ ### 关联界面行为 - * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [表格界面_数据导入栏](module/extension/PSCorePrdFunc#界面行为) - * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [表格界面_搜索栏](module/extension/PSCorePrdFunc#界面行为) * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [表格界面_拷贝操作](module/extension/PSCorePrdFunc#界面行为) - * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [表格界面_新建操作](module/extension/PSCorePrdFunc#界面行为) - * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [表格界面_编辑操作](module/extension/PSCorePrdFunc#界面行为) - * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [表格界面_删除操作](module/extension/PSCorePrdFunc#界面行为) - * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [禁用](module/extension/PSCorePrdFunc#界面行为) * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [表格界面_导出操作(Excel)](module/extension/PSCorePrdFunc#界面行为) + * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [禁用](module/extension/PSCorePrdFunc#界面行为) + * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [表格界面_删除操作](module/extension/PSCorePrdFunc#界面行为) * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [表格界面_导出数据模型](module/extension/PSCorePrdFunc#界面行为) - * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [表格界面_帮助操作](module/extension/PSCorePrdFunc#界面行为) + * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [表格界面_数据导入栏](module/extension/PSCorePrdFunc#界面行为) * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [打开卡片详情页面_界面逻辑](module/extension/PSCorePrdFunc#界面行为) + * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [表格界面_新建操作](module/extension/PSCorePrdFunc#界面行为) + * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [表格界面_编辑操作](module/extension/PSCorePrdFunc#界面行为) + * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [表格界面_搜索栏](module/extension/PSCorePrdFunc#界面行为) + * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [表格界面_帮助操作](module/extension/PSCorePrdFunc#界面行为) ### 关联视图 * [核心产品功能(ps_core_prd_func_info_view)](app/view/ps_core_prd_func_info_view) diff --git a/doc/odoo/app/view/ps_core_prd_func_market_application_view.md b/doc/odoo/app/view/ps_core_prd_func_market_application_view.md index bea2cc34249aa421ea173d4de7cec1b2c9e3b085..4630a36fac73e2e69aa2f06a685da74d1efbe07a 100644 --- a/doc/odoo/app/view/ps_core_prd_func_market_application_view.md +++ b/doc/odoo/app/view/ps_core_prd_func_market_application_view.md @@ -18,9 +18,9 @@ ### 关联界面行为 + * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [跳转插件设置页面](module/extension/PSCorePrdFunc#界面行为) * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [启用](module/extension/PSCorePrdFunc#界面行为) * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [打开卡片详情页面](module/extension/PSCorePrdFunc#界面行为) - * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [跳转插件设置页面](module/extension/PSCorePrdFunc#界面行为) ### 关联界面逻辑 * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [跳转应用详情页面](module/extension/PSCorePrdFunc/uilogic/open_app_info) diff --git a/doc/odoo/app/view/ps_core_prd_func_setting_edit_view.md b/doc/odoo/app/view/ps_core_prd_func_setting_edit_view.md index 174b0ebac2834d3da5001740695d73a5561b5055..f8e666bd1a9d73380feb9b3ae3e71ba4914882cf 100644 --- a/doc/odoo/app/view/ps_core_prd_func_setting_edit_view.md +++ b/doc/odoo/app/view/ps_core_prd_func_setting_edit_view.md @@ -17,12 +17,12 @@ ### 关联界面行为 - * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [编辑界面_刷新操作](module/extension/PSCorePrdFunc#界面行为) * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [编辑界面_保存并退出操作](module/extension/PSCorePrdFunc#界面行为) + * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [编辑界面_刷新操作](module/extension/PSCorePrdFunc#界面行为) ### 关联界面逻辑 - * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [初始化插件信息](module/extension/PSCorePrdFunc/uilogic/init_plugin_info) * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [更新插件设置](module/extension/PSCorePrdFunc/uilogic/update_plugin_setting) + * [核心产品功能(PSCOREPRDFUNC)](module/extension/PSCorePrdFunc) : [初始化插件信息](module/extension/PSCorePrdFunc/uilogic/init_plugin_info) diff --git a/frontend/src/publish/pages/index.ts b/frontend/src/publish/pages/index.ts index b36b5d4bff2de0cb0984d9a474b171181cf063ee..54786ce4516fcba2f586d7fe99e262bd533d8ef0 100644 --- a/frontend/src/publish/pages/index.ts +++ b/frontend/src/publish/pages/index.ts @@ -300,6 +300,13 @@ export async function getAppViewComponent( return defineAsyncComponent( () => import('./ir-cron/ir-cron-pickup-view/ir-cron-pickup-view.vue'), ); + case 'mail_message_pickup_grid_view': + return defineAsyncComponent( + () => + import( + './mail-message/mail-message-pickup-grid-view/mail-message-pickup-grid-view.vue' + ), + ); case 'resource_resource_main_view': return defineAsyncComponent( () => @@ -389,6 +396,13 @@ export async function getAppViewComponent( './res-currency/res-currency-pickup-grid-view/res-currency-pickup-grid-view.vue' ), ); + case 'discuss_channel_main_pop_view': + return defineAsyncComponent( + () => + import( + './discuss-channel/discuss-channel-main-pop-view/discuss-channel-main-pop-view.vue' + ), + ); case 'res_groups_pickup_view': return defineAsyncComponent( () => @@ -452,6 +466,13 @@ export async function getAppViewComponent( './res-groups-users-rel/res-groups-users-rel-edit-view/res-groups-users-rel-edit-view.vue' ), ); + case 'mail_template_pickup_view': + return defineAsyncComponent( + () => + import( + './mail-template/mail-template-pickup-view/mail-template-pickup-view.vue' + ), + ); case 'res_company_pickup_grid_view': return defineAsyncComponent( () => @@ -459,6 +480,20 @@ export async function getAppViewComponent( './res-company/res-company-pickup-grid-view/res-company-pickup-grid-view.vue' ), ); + case 'mail_followers_main_view': + return defineAsyncComponent( + () => + import( + './mail-followers/mail-followers-main-view/mail-followers-main-view.vue' + ), + ); + case 'mail_notification_main_view': + return defineAsyncComponent( + () => + import( + './mail-notification/mail-notification-main-view/mail-notification-main-view.vue' + ), + ); case 'mail_thread_component_view': return defineAsyncComponent( () => @@ -568,6 +603,13 @@ export async function getAppViewComponent( './res-country/res-country-pickup-view/res-country-pickup-view.vue' ), ); + case 'mail_followers_multi_data_view': + return defineAsyncComponent( + () => + import( + './mail-followers/mail-followers-multi-data-view/mail-followers-multi-data-view.vue' + ), + ); case 'crm_lead_main_view': return defineAsyncComponent( () => import('./crm-lead/crm-lead-main-view/crm-lead-main-view.vue'), @@ -586,6 +628,13 @@ export async function getAppViewComponent( './discuss-channel-member/discuss-channel-member-grid-view/discuss-channel-member-grid-view.vue' ), ); + case 'mail_notification_multi_data_view': + return defineAsyncComponent( + () => + import( + './mail-notification/mail-notification-multi-data-view/mail-notification-multi-data-view.vue' + ), + ); case 'crm_lead_multi_data_view': return defineAsyncComponent( () => @@ -746,6 +795,13 @@ export async function getAppViewComponent( './resource-calendar/resource-calendar-main-view/resource-calendar-main-view.vue' ), ); + case 'mail_message_edit_view': + return defineAsyncComponent( + () => + import( + './mail-message/mail-message-edit-view/mail-message-edit-view.vue' + ), + ); case 'ir_model_access_grid_view': return defineAsyncComponent( () => @@ -810,6 +866,13 @@ export async function getAppViewComponent( './res-groups-users-rel/res-groups-users-rel-grid-view/res-groups-users-rel-grid-view.vue' ), ); + case 'mail_template_pickup_grid_view': + return defineAsyncComponent( + () => + import( + './mail-template/mail-template-pickup-grid-view/mail-template-pickup-grid-view.vue' + ), + ); case 'ir_cron_multi_data_view': return defineAsyncComponent( () => @@ -859,6 +922,13 @@ export async function getAppViewComponent( './hr-resume-line-type/hr-resume-line-type-edit-view/hr-resume-line-type-edit-view.vue' ), ); + case 'mail_message_multi_data_view': + return defineAsyncComponent( + () => + import( + './mail-message/mail-message-multi-data-view/mail-message-multi-data-view.vue' + ), + ); case 'ir_rule_pickup_view': return defineAsyncComponent( () => import('./ir-rule/ir-rule-pickup-view/ir-rule-pickup-view.vue'), @@ -915,6 +985,13 @@ export async function getAppViewComponent( './discuss-channel-member/discuss-channel-member-edit-view/discuss-channel-member-edit-view.vue' ), ); + case 'mail_message_main_view': + return defineAsyncComponent( + () => + import( + './mail-message/mail-message-main-view/mail-message-main-view.vue' + ), + ); case 'hr_job_pickup_grid_view': return defineAsyncComponent( () => @@ -1134,6 +1211,13 @@ export async function getAppViewComponent( './mail-activity-type/mail-activity-type-pickup-view/mail-activity-type-pickup-view.vue' ), ); + case 'mail_message_redirect_view': + return defineAsyncComponent( + () => + import( + './mail-message/mail-message-redirect-view/mail-message-redirect-view.vue' + ), + ); case 'resource_calendar_leaves_main_view': return defineAsyncComponent( () => @@ -1141,6 +1225,13 @@ export async function getAppViewComponent( './resource-calendar-leaves/resource-calendar-leaves-main-view/resource-calendar-leaves-main-view.vue' ), ); + case 'mail_message_pickup_view': + return defineAsyncComponent( + () => + import( + './mail-message/mail-message-pickup-view/mail-message-pickup-view.vue' + ), + ); case 'hr_leave_pickup_view': return defineAsyncComponent( () => diff --git a/frontend/src/publish/pages/mail-followers/mail-followers-main-view/mail-followers-main-view.vue b/frontend/src/publish/pages/mail-followers/mail-followers-main-view/mail-followers-main-view.vue new file mode 100644 index 0000000000000000000000000000000000000000..932836cc35488066bf80c7fa08406d0f25865de4 --- /dev/null +++ b/frontend/src/publish/pages/mail-followers/mail-followers-main-view/mail-followers-main-view.vue @@ -0,0 +1,21 @@ + + diff --git a/frontend/src/publish/pages/mail-followers/mail-followers-multi-data-view/mail-followers-multi-data-view.vue b/frontend/src/publish/pages/mail-followers/mail-followers-multi-data-view/mail-followers-multi-data-view.vue new file mode 100644 index 0000000000000000000000000000000000000000..932836cc35488066bf80c7fa08406d0f25865de4 --- /dev/null +++ b/frontend/src/publish/pages/mail-followers/mail-followers-multi-data-view/mail-followers-multi-data-view.vue @@ -0,0 +1,21 @@ + + diff --git a/frontend/src/publish/pages/mail-message/mail-message-edit-view/mail-message-edit-view.vue b/frontend/src/publish/pages/mail-message/mail-message-edit-view/mail-message-edit-view.vue new file mode 100644 index 0000000000000000000000000000000000000000..3aca47f53789dda5d961a831357590ff1107b3ec --- /dev/null +++ b/frontend/src/publish/pages/mail-message/mail-message-edit-view/mail-message-edit-view.vue @@ -0,0 +1,24 @@ + + diff --git a/frontend/src/publish/pages/mail-message/mail-message-main-view/mail-message-main-view.vue b/frontend/src/publish/pages/mail-message/mail-message-main-view/mail-message-main-view.vue new file mode 100644 index 0000000000000000000000000000000000000000..932836cc35488066bf80c7fa08406d0f25865de4 --- /dev/null +++ b/frontend/src/publish/pages/mail-message/mail-message-main-view/mail-message-main-view.vue @@ -0,0 +1,21 @@ + + diff --git a/frontend/src/publish/pages/mail-message/mail-message-multi-data-view/mail-message-multi-data-view.vue b/frontend/src/publish/pages/mail-message/mail-message-multi-data-view/mail-message-multi-data-view.vue new file mode 100644 index 0000000000000000000000000000000000000000..932836cc35488066bf80c7fa08406d0f25865de4 --- /dev/null +++ b/frontend/src/publish/pages/mail-message/mail-message-multi-data-view/mail-message-multi-data-view.vue @@ -0,0 +1,21 @@ + + diff --git a/frontend/src/publish/pages/mail-message/mail-message-pickup-grid-view/mail-message-pickup-grid-view.vue b/frontend/src/publish/pages/mail-message/mail-message-pickup-grid-view/mail-message-pickup-grid-view.vue new file mode 100644 index 0000000000000000000000000000000000000000..17588157abf070e023cd259f4e2d8a8f1fcb482f --- /dev/null +++ b/frontend/src/publish/pages/mail-message/mail-message-pickup-grid-view/mail-message-pickup-grid-view.vue @@ -0,0 +1,27 @@ + + diff --git a/frontend/src/publish/pages/mail-message/mail-message-pickup-view/mail-message-pickup-view.vue b/frontend/src/publish/pages/mail-message/mail-message-pickup-view/mail-message-pickup-view.vue new file mode 100644 index 0000000000000000000000000000000000000000..affdc5257b03213c96aeb111580f9497f28d3850 --- /dev/null +++ b/frontend/src/publish/pages/mail-message/mail-message-pickup-view/mail-message-pickup-view.vue @@ -0,0 +1,24 @@ + + diff --git a/frontend/src/publish/pages/mail-message/mail-message-redirect-view/mail-message-redirect-view.vue b/frontend/src/publish/pages/mail-message/mail-message-redirect-view/mail-message-redirect-view.vue new file mode 100644 index 0000000000000000000000000000000000000000..4ad5def6abcc1362ba27fe4429f7097d915b8fb3 --- /dev/null +++ b/frontend/src/publish/pages/mail-message/mail-message-redirect-view/mail-message-redirect-view.vue @@ -0,0 +1,21 @@ + + diff --git a/frontend/src/publish/pages/mail-notification/mail-notification-main-view/mail-notification-main-view.vue b/frontend/src/publish/pages/mail-notification/mail-notification-main-view/mail-notification-main-view.vue new file mode 100644 index 0000000000000000000000000000000000000000..932836cc35488066bf80c7fa08406d0f25865de4 --- /dev/null +++ b/frontend/src/publish/pages/mail-notification/mail-notification-main-view/mail-notification-main-view.vue @@ -0,0 +1,21 @@ + + diff --git a/frontend/src/publish/pages/mail-notification/mail-notification-multi-data-view/mail-notification-multi-data-view.vue b/frontend/src/publish/pages/mail-notification/mail-notification-multi-data-view/mail-notification-multi-data-view.vue new file mode 100644 index 0000000000000000000000000000000000000000..932836cc35488066bf80c7fa08406d0f25865de4 --- /dev/null +++ b/frontend/src/publish/pages/mail-notification/mail-notification-multi-data-view/mail-notification-multi-data-view.vue @@ -0,0 +1,21 @@ + + diff --git a/frontend/src/publish/pages/mail-template/mail-template-pickup-grid-view/mail-template-pickup-grid-view.vue b/frontend/src/publish/pages/mail-template/mail-template-pickup-grid-view/mail-template-pickup-grid-view.vue new file mode 100644 index 0000000000000000000000000000000000000000..17588157abf070e023cd259f4e2d8a8f1fcb482f --- /dev/null +++ b/frontend/src/publish/pages/mail-template/mail-template-pickup-grid-view/mail-template-pickup-grid-view.vue @@ -0,0 +1,27 @@ + + diff --git a/frontend/src/publish/pages/mail-template/mail-template-pickup-view/mail-template-pickup-view.vue b/frontend/src/publish/pages/mail-template/mail-template-pickup-view/mail-template-pickup-view.vue new file mode 100644 index 0000000000000000000000000000000000000000..affdc5257b03213c96aeb111580f9497f28d3850 --- /dev/null +++ b/frontend/src/publish/pages/mail-template/mail-template-pickup-view/mail-template-pickup-view.vue @@ -0,0 +1,24 @@ + + diff --git a/frontend/src/publish/sys.css b/frontend/src/publish/sys.css index caab60e34a91e3f430fcdc8ff13dbfb0a6d69de6..d442a46d6632335c4f2e53a00486b9088463927b 100644 --- a/frontend/src/publish/sys.css +++ b/frontend/src/publish/sys.css @@ -632,11 +632,13 @@ font-size: 24px; width: 232px; } .channel-message{ - background-color:#E2F3F6FF;border-color:#BBE3EAFF;border-style:solid;border-width:1px 1px 1px 1px + border-style:solid;border-width:1px 1px 1px 1px } .channel-message{ border-bottom-right-radius: 0.375rem !important; border-bottom-left-radius: 0.375rem !important; - border-top-right-radius: 0.375rem + border-top-right-radius: 0.375rem; + background-color: var(--el-bg-color); + border-color: var(--ibiz-color-border); } /*** END:系统样式表 ***/ \ No newline at end of file