panel.go 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. package service
  2. import (
  3. "context"
  4. "go-common/app/admin/main/vip/model"
  5. "go-common/library/ecode"
  6. )
  7. // VipPriceConfigs get vip price configs.
  8. func (s *Service) VipPriceConfigs(c context.Context, arg *model.ArgVipPrice) (res []*model.VipPriceConfig, err error) {
  9. var (
  10. vpcs []*model.VipPriceConfig
  11. mvd map[int64]*model.VipDPriceConfig
  12. )
  13. if vpcs, err = s.dao.VipPriceConfigs(c); err != nil {
  14. return
  15. }
  16. if mvd, err = s.dao.VipPriceDiscountConfigs(c); err != nil {
  17. return
  18. }
  19. for _, item := range vpcs {
  20. if arg.Plat != -1 && item.Plat != arg.Plat {
  21. continue
  22. }
  23. if arg.Month != -1 && item.Month != arg.Month {
  24. continue
  25. }
  26. if arg.SubType != -1 && item.SubType != arg.SubType {
  27. continue
  28. }
  29. if arg.SuitType != -1 && item.SuitType != arg.SuitType {
  30. continue
  31. }
  32. if vdc, ok := mvd[item.ID]; ok {
  33. item.NPrice = vdc.DPrice
  34. item.PdID = vdc.PdID
  35. } else {
  36. item.NPrice = item.OPrice
  37. }
  38. res = append(res, item)
  39. }
  40. return
  41. }
  42. // VipPriceConfigID get vip price config by id.
  43. func (s *Service) VipPriceConfigID(c context.Context, arg *model.ArgVipPriceID) (res *model.VipPriceConfig, err error) {
  44. res, err = s.dao.VipPriceConfigID(c, arg)
  45. return
  46. }
  47. // AddVipPriceConfig add vip price config.
  48. func (s *Service) AddVipPriceConfig(c context.Context, arg *model.ArgAddOrUpVipPrice) (err error) {
  49. var count int64
  50. if len(arg.Superscript) > 18 {
  51. err = ecode.VipPanelSuperscriptTooLongErr
  52. return
  53. }
  54. // 平台校验
  55. platForm, err := s.dao.PlatformByID(c, int64(arg.Plat))
  56. if err != nil || platForm == nil {
  57. err = ecode.VipPanelPlatNotExitErr
  58. return
  59. }
  60. // 价格校验
  61. if arg.OPrice <= 0 {
  62. err = ecode.VipPanelValidOPriceErr
  63. return
  64. }
  65. // 面版冲突
  66. if count, err = s.dao.VipPriceConfigUQCheck(c, arg); err != nil {
  67. return
  68. }
  69. if count > 0 {
  70. err = ecode.VipPanelConfNotUQErr
  71. return
  72. }
  73. vpc := &model.VipPriceConfig{
  74. Plat: arg.Plat,
  75. PdName: arg.PdName,
  76. PdID: arg.PdID,
  77. SuitType: arg.SuitType,
  78. Month: arg.Month,
  79. SubType: arg.SubType,
  80. OPrice: arg.OPrice,
  81. Remark: arg.Remark,
  82. Status: model.VipPriceConfigStatusON,
  83. Operator: arg.Operator,
  84. OpID: arg.OpID,
  85. Superscript: arg.Superscript,
  86. Selected: arg.Selected,
  87. StartBuild: arg.StartBuild,
  88. EndBuild: arg.EndBuild,
  89. }
  90. err = s.dao.AddVipPriceConfig(c, vpc)
  91. return
  92. }
  93. // UpVipPriceConfig update vip price config.
  94. func (s *Service) UpVipPriceConfig(c context.Context, arg *model.ArgAddOrUpVipPrice) (err error) {
  95. var (
  96. count int64
  97. max float64
  98. ovpc *model.VipPriceConfig
  99. )
  100. if len(arg.Superscript) > 18 {
  101. err = ecode.VipPanelSuperscriptTooLongErr
  102. return
  103. }
  104. if ovpc, err = s.dao.VipPriceConfigID(c, &model.ArgVipPriceID{ID: arg.ID}); err != nil {
  105. return
  106. }
  107. if max, err = s.dao.VipMaxPriceDiscount(c, arg); err != nil {
  108. return
  109. }
  110. if ovpc == nil {
  111. err = ecode.VipPanelConfNotExistErr
  112. return
  113. }
  114. // 价格校验
  115. if arg.OPrice <= 0 {
  116. err = ecode.VipPanelValidOPriceErr
  117. return
  118. }
  119. if arg.OPrice < max {
  120. err = ecode.VipPanelValidDPriceErr
  121. return
  122. }
  123. if arg.Plat != ovpc.Plat || arg.Month != ovpc.Month || arg.SubType != ovpc.SubType || arg.SuitType != ovpc.SuitType ||
  124. arg.StartBuild != ovpc.StartBuild || arg.EndBuild != ovpc.EndBuild {
  125. // 面版冲突
  126. if count, err = s.dao.VipPriceConfigUQCheck(c, arg); err != nil {
  127. return
  128. }
  129. if count > 0 {
  130. err = ecode.VipPanelConfNotUQErr
  131. return
  132. }
  133. }
  134. vpc := &model.VipPriceConfig{
  135. ID: arg.ID,
  136. Plat: arg.Plat,
  137. PdName: arg.PdName,
  138. PdID: arg.PdID,
  139. SuitType: arg.SuitType,
  140. Month: arg.Month,
  141. SubType: arg.SubType,
  142. OPrice: arg.OPrice,
  143. Remark: arg.Remark,
  144. Status: model.VipPriceConfigStatusON,
  145. Operator: arg.Operator,
  146. OpID: arg.OpID,
  147. Superscript: arg.Superscript,
  148. Selected: arg.Selected,
  149. StartBuild: arg.StartBuild,
  150. EndBuild: arg.EndBuild,
  151. }
  152. err = s.dao.UpVipPriceConfig(c, vpc)
  153. return
  154. }
  155. // DelVipPriceConfig delete vip price config.
  156. func (s *Service) DelVipPriceConfig(c context.Context, arg *model.ArgVipPriceID) (err error) {
  157. err = s.dao.DelVipPriceConfig(c, arg)
  158. return
  159. }
  160. // VipDPriceConfigs get discount price config list.
  161. func (s *Service) VipDPriceConfigs(c context.Context, arg *model.ArgVipPriceID) (res []*model.VipDPriceConfig, err error) {
  162. res, err = s.dao.VipDPriceConfigs(c, arg)
  163. return
  164. }
  165. // VipDPriceConfigID get discount price config by id.
  166. func (s *Service) VipDPriceConfigID(c context.Context, arg *model.ArgVipDPriceID) (res *model.VipDPriceConfig, err error) {
  167. res, err = s.dao.VipDPriceConfigID(c, arg)
  168. return
  169. }
  170. // AddVipDPriceConfig add vip discount price config.
  171. func (s *Service) AddVipDPriceConfig(c context.Context, arg *model.ArgAddOrUpVipDPrice) (err error) {
  172. var (
  173. vpc *model.VipPriceConfig
  174. mvd map[int64]*model.VipDPriceConfig
  175. )
  176. if vpc, err = s.dao.VipPriceConfigID(c, &model.ArgVipPriceID{ID: arg.ID}); err != nil {
  177. return
  178. }
  179. if vpc == nil {
  180. err = ecode.VipPanelConfNotExistErr
  181. return
  182. }
  183. // if vpc.CheckProductID(arg) {
  184. // err = ecode.VipPanelProductIDNotNilErr
  185. // return
  186. // }
  187. if vpc.OPrice < arg.DPrice {
  188. err = ecode.VipPanelValidDPriceErr
  189. return
  190. }
  191. if vpc.SubType != model.AutoRenew && arg.FirstPrice > 0 {
  192. return ecode.VipPanelFirstPriceNotSupportErr
  193. }
  194. if arg.ETime != 0 && arg.STime >= arg.ETime {
  195. err = ecode.VipPanelSTGeqETErr
  196. return
  197. }
  198. // 面版冲突
  199. if mvd, err = s.dao.VipDPriceConfigUQTime(c, arg); err != nil {
  200. return
  201. }
  202. if len(mvd) > 0 {
  203. err = ecode.VipPanelValidTimeErr
  204. return
  205. }
  206. nvdc := &model.VipDPriceConfig{
  207. ID: arg.ID,
  208. PdID: arg.PdID,
  209. DPrice: arg.DPrice,
  210. STime: arg.STime,
  211. ETime: arg.ETime,
  212. Remark: arg.Remark,
  213. Operator: arg.Operator,
  214. OpID: arg.OpID,
  215. FirstPrice: arg.FirstPrice,
  216. }
  217. err = s.dao.AddVipDPriceConfig(c, nvdc)
  218. return
  219. }
  220. // UpVipDPriceConfig update vip discount price config.
  221. func (s *Service) UpVipDPriceConfig(c context.Context, arg *model.ArgAddOrUpVipDPrice) (err error) {
  222. var (
  223. ovpc *model.VipPriceConfig
  224. ovdc *model.VipDPriceConfig
  225. mvd map[int64]*model.VipDPriceConfig
  226. )
  227. if ovpc, err = s.dao.VipPriceConfigID(c, &model.ArgVipPriceID{ID: arg.ID}); err != nil {
  228. return
  229. }
  230. if ovpc == nil {
  231. err = ecode.VipPanelConfNotExistErr
  232. return
  233. }
  234. if ovdc, err = s.dao.VipDPriceConfigID(c, &model.ArgVipDPriceID{DisID: arg.DisID}); err != nil {
  235. return
  236. }
  237. // if ovpc.CheckProductID(arg) {
  238. // err = ecode.VipPanelProductIDNotNilErr
  239. // return
  240. // }
  241. if ovpc.SubType != model.AutoRenew && arg.FirstPrice > 0 {
  242. return ecode.VipPanelFirstPriceNotSupportErr
  243. }
  244. if ovpc.OPrice < arg.DPrice {
  245. err = ecode.VipPanelValidDPriceErr
  246. return
  247. }
  248. if arg.ETime != 0 && arg.STime >= arg.ETime {
  249. err = ecode.VipPanelSTGeqETErr
  250. return
  251. }
  252. if arg.STime != ovdc.STime || arg.ETime != ovdc.ETime {
  253. // 面版冲突
  254. if mvd, err = s.dao.VipDPriceConfigUQTime(c, arg); err != nil {
  255. return
  256. }
  257. if _, ok := mvd[arg.DisID]; ok {
  258. delete(mvd, arg.DisID)
  259. }
  260. if len(mvd) > 0 {
  261. err = ecode.VipPanelValidTimeErr
  262. return
  263. }
  264. }
  265. vdc := &model.VipDPriceConfig{
  266. DisID: arg.DisID,
  267. ID: arg.ID,
  268. PdID: arg.PdID,
  269. DPrice: arg.DPrice,
  270. STime: arg.STime,
  271. ETime: arg.ETime,
  272. Remark: arg.Remark,
  273. Operator: arg.Operator,
  274. OpID: arg.OpID,
  275. FirstPrice: arg.FirstPrice,
  276. }
  277. err = s.dao.UpVipDPriceConfig(c, vdc)
  278. return
  279. }
  280. // DelVipDPriceConfig delete vip discount price config.
  281. func (s *Service) DelVipDPriceConfig(c context.Context, arg *model.ArgVipDPriceID) (err error) {
  282. err = s.dao.DelVipDPriceConfig(c, arg)
  283. return
  284. }
  285. // PanelPlatFormTypes .
  286. func (s *Service) PanelPlatFormTypes(c context.Context) (res []*model.TypePlatform, err error) {
  287. if res, err = s.dao.PlatformTypes(c); err != nil {
  288. return
  289. }
  290. return
  291. }