|
|
|
@ -5,7 +5,7 @@ import (
|
|
|
|
|
"git.oa00.com/supply-chain/service/client"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type supply struct {
|
|
|
|
|
type Supply struct {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type ArgsSupplyApply struct {
|
|
|
|
@ -17,7 +17,7 @@ type ArgsSupplyApply struct {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Apply @Title 申请
|
|
|
|
|
func (s *supply) Apply(ctx context.Context, args ArgsSupplyApply) error {
|
|
|
|
|
func (s *Supply) Apply(ctx context.Context, args ArgsSupplyApply) error {
|
|
|
|
|
reply := 0
|
|
|
|
|
xClient, err := client.GetClient(s)
|
|
|
|
|
if err != nil {
|
|
|
|
@ -32,7 +32,7 @@ type ArgsSupplyAdopt struct {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Adopt @Title 审核通过
|
|
|
|
|
func (s *supply) Adopt(ctx context.Context, args ArgsSupplyAdopt) error {
|
|
|
|
|
func (s *Supply) Adopt(ctx context.Context, args ArgsSupplyAdopt) error {
|
|
|
|
|
reply := 0
|
|
|
|
|
xClient, err := client.GetClient(s)
|
|
|
|
|
if err != nil {
|
|
|
|
@ -48,7 +48,7 @@ type ArgsSupplyReject struct {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Reject @Title 驳回
|
|
|
|
|
func (s *supply) Reject(ctx context.Context, args ArgsSupplyReject) error {
|
|
|
|
|
func (s *Supply) Reject(ctx context.Context, args ArgsSupplyReject) error {
|
|
|
|
|
reply := 0
|
|
|
|
|
xClient, err := client.GetClient(s)
|
|
|
|
|
if err != nil {
|
|
|
|
@ -74,7 +74,7 @@ type ReplySupplyInfo struct {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Info @Title 详情
|
|
|
|
|
func (s *supply) Info(ctx context.Context, userServiceId uint) (reply ReplySupplyInfo, err error) {
|
|
|
|
|
func (s *Supply) Info(ctx context.Context, userServiceId uint) (reply ReplySupplyInfo, err error) {
|
|
|
|
|
xClient, err := client.GetClient(s)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return
|
|
|
|
|