update_cooperation_contract.go 3.9 KB
package command

import (
	"fmt"
	"reflect"
	"strings"

	"github.com/beego/beego/v2/core/validation"
)

type UpdateCooperationContractCommand struct {
	// 共创合约id
	CooperationContractId string `cname:"共创合约id" json:"cooperationContractId" valid:"Required"`
	// 共创合约描述
	CooperationContractDescription string `cname:"共创合约描述" json:"cooperationContractDescription,omitempty"`
	// 共创项目编号
	CooperationProjectNumber string `cname:"共创项目编号" json:"cooperationProjectNumber"`
	// 部门ID
	DepartmentId string `cname:"部门ID" json:"departmentId" valid:"Required"`
	// 共创合约承接对象,1员工,2共创用户,3公开
	CooperationContractUndertakerTypes []int32 `cname:"共创合约承接对象" json:"cooperationContractUndertakerTypes" valid:"Required"`
	// 共创合约名称
	CooperationContractName string `cname:"共创合约名称" json:"cooperationContractName" valid:"Required"`
	// 共创合约发起人uid
	SponsorUid string `cname:"共创合约发起人uid" json:"sponsorUid,omitempty"`
	// 业绩分红激励规则列表
	DividendsIncentivesRules []*CreateDividendsIncentivesRulesCommand `cname:"业绩分红激励规则列表" json:"dividendsIncentivesRules,omitempty"`
	// 金额激励规则列表
	MoneyIncentivesRules []*CreateMoneyIncentivesRulesCommand `cname:"金额激励规则列表" json:"moneyIncentivesRules,omitempty"`
	// 承接方列表
	Undertakers []*CreateUndertakersCommand `cname:"承接方列表" json:"undertakers"`
	// 相关人UID列表
	RelevantIds []string `cname:"相关人列表" json:"relevantIds,omitempty"`
	// 公司ID,通过集成REST上下文获取
	CompanyId int64 `cname:"公司ID" json:"companyId" valid:"Required"`
	// 组织机构ID
	OrgId int64 `cname:"组织机构ID" json:"orgId" valid:"Required"`
	// 用户ID,通过集成REST上下文获取,可翻译成发起人、承接人、推荐人、业务员
	UserId int64 `cname:"用户ID" json:"userId" valid:"Required"`
	// 用户基础数据id
	UserBaseId int64 `cname:"用户基础数据ID" json:"userBaseId" valid:"Required"`
}

func (updateCooperationContractCommand *UpdateCooperationContractCommand) Valid(validation *validation.Validation) {
	// 激励规则自定义校验
	if len(updateCooperationContractCommand.DividendsIncentivesRules) < 1 && len(updateCooperationContractCommand.MoneyIncentivesRules) < 1 {
		validation.Error("激励规则不能为空")
	} else {
		for i, _ := range updateCooperationContractCommand.DividendsIncentivesRules {
			if updateCooperationContractCommand.DividendsIncentivesRules[i].DividendsIncentivesRuleId == "" {
				updateCooperationContractCommand.DividendsIncentivesRules[i].DividendsIncentivesRuleId = "0"
			}
		}
		for j, _ := range updateCooperationContractCommand.MoneyIncentivesRules {
			if updateCooperationContractCommand.MoneyIncentivesRules[j].MoneyIncentivesRuleId == "" {
				updateCooperationContractCommand.MoneyIncentivesRules[j].MoneyIncentivesRuleId = "0"
			}
		}
	}
	// 承接人列表校验
	if len(updateCooperationContractCommand.Undertakers) < 1 {
		validation.Error("承接人不能为空")
	} else {
		for i, _ := range updateCooperationContractCommand.Undertakers {
			if updateCooperationContractCommand.Undertakers[i].UndertakerId == "" {
				updateCooperationContractCommand.Undertakers[i].UndertakerId = "0"
			}
		}
	}
}

func (updateCooperationContractCommand *UpdateCooperationContractCommand) ValidateCommand() error {
	valid := validation.Validation{}
	b, err := valid.Valid(updateCooperationContractCommand)
	if err != nil {
		return err
	}
	if !b {
		elem := reflect.TypeOf(updateCooperationContractCommand).Elem()
		for _, validErr := range valid.Errors {
			field, isExist := elem.FieldByName(validErr.Field)
			if isExist {
				return fmt.Errorf(strings.Replace(validErr.Message, validErr.Field, field.Tag.Get("cname"), -1))
			} else {
				return fmt.Errorf(validErr.Message)
			}
		}
	}
	return nil
}