new_stock_service.go 35KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843
  1. package service
  2. import (
  3. "XT_New/models"
  4. "github.com/jinzhu/gorm"
  5. )
  6. func GetGoodStockCount(user_org_id int64, storehouse_id int64, good_id int64) (*models.XtGoodStockCount, error) {
  7. goodStock := models.XtGoodStockCount{}
  8. var err error
  9. err = XTReadDB().Where("user_org_id = ? and storehouse_id = ? and good_id = ?", user_org_id, storehouse_id, good_id).Find(&goodStock).Error
  10. if err == gorm.ErrRecordNotFound {
  11. return nil, err
  12. }
  13. if err != nil {
  14. return nil, err
  15. }
  16. return &goodStock, nil
  17. }
  18. func GetNewGoodStockCount(user_org_id int64, storehouse_id int64, good_id int64, tx *gorm.DB) (*models.XtGoodStockCount, error) {
  19. goodStock := models.XtGoodStockCount{}
  20. err := tx.Where("user_org_id = ? and storehouse_id = ? and good_id = ?", user_org_id, storehouse_id, good_id).Find(&goodStock).Error
  21. if err != gorm.ErrRecordNotFound {
  22. if err != nil {
  23. tx.Rollback()
  24. return nil, err
  25. }
  26. }
  27. return &goodStock, nil
  28. }
  29. func CreateGoodCount(good models.XtGoodStockCount) error {
  30. db := writeDb.Begin()
  31. err := db.Create(&good).Error
  32. if err != nil {
  33. db.Rollback()
  34. return err
  35. }
  36. db.Commit()
  37. return err
  38. }
  39. func CreateNewGoodCount(good models.XtGoodStockCount, tx *gorm.DB) error {
  40. err := tx.Create(&good).Error
  41. if err != nil {
  42. tx.Rollback()
  43. return err
  44. }
  45. return err
  46. }
  47. func UpdateGoodStockCount(user_org_id int64, storehouse_id int64, good_id int64, count int64, flush_count int64) error {
  48. db := writeDb.Begin()
  49. err = db.Model(&models.XtGoodStockCount{}).Where("user_org_id = ? and storehouse_id = ? and good_id = ? and status = 1", user_org_id, storehouse_id, good_id).UpdateColumn("stock_in_count", gorm.Expr("stock_in_count + ?", count)).Error
  50. if err != nil {
  51. db.Rollback()
  52. return err
  53. }
  54. err = db.Model(&models.XtGoodStockCount{}).Where("user_org_id = ? and storehouse_id = ? and good_id = ? and status = 1", user_org_id, storehouse_id, good_id).Update(map[string]interface{}{"flush_count": flush_count}).Error
  55. if err != nil {
  56. db.Rollback()
  57. return err
  58. }
  59. db.Commit()
  60. return err
  61. }
  62. func UpdateNewGoodStockCount(user_org_id int64, storehouse_id int64, good_id int64, count int64, flush_count int64, tx *gorm.DB) error {
  63. err = tx.Model(&models.XtGoodStockCount{}).Where("user_org_id = ? and storehouse_id = ? and good_id = ? and status = 1", user_org_id, storehouse_id, good_id).UpdateColumn("stock_in_count", gorm.Expr("stock_in_count + ?", count)).Error
  64. if err != nil {
  65. tx.Rollback()
  66. return err
  67. }
  68. err = tx.Model(&models.XtGoodStockCount{}).Where("user_org_id = ? and storehouse_id = ? and good_id = ? and status = 1", user_org_id, storehouse_id, good_id).Update(map[string]interface{}{"flush_count": flush_count}).Error
  69. if err != nil {
  70. tx.Rollback()
  71. return err
  72. }
  73. return err
  74. }
  75. func UpdateGoodInCount(count int64, user_org_id int64, good_id int64, storehouse_id int64, flush_count int64) error {
  76. db := writeDb.Begin()
  77. err := db.Model(&models.XtGoodStockCount{}).Where("user_org_id = ? and good_id = ? and storehouse_id = ? and status = 1", user_org_id, good_id, storehouse_id).UpdateColumn("stock_in_count", gorm.Expr("stock_in_count - ?", count)).Error
  78. if err != nil {
  79. db.Rollback()
  80. return err
  81. }
  82. err = db.Model(&models.XtGoodStockCount{}).Where("user_org_id = ? and good_id = ? and storehouse_id = ? and status = 1", user_org_id, good_id, storehouse_id).Update(map[string]interface{}{"flush_count": flush_count}).Error
  83. if err != nil {
  84. db.Rollback()
  85. return err
  86. }
  87. db.Commit()
  88. return err
  89. }
  90. func CreateGoodErrcode(errcode models.XtGoodErrcode) error {
  91. err := writeDb.Create(&errcode).Error
  92. return err
  93. }
  94. func GetGoodStockList(orgId int64, storehouse_id int64, good_type int64, keyword string, page int64, limit int64, ids []int64, good_type_id int64) (good []*models.GoodInformation, total int64, err error) {
  95. offset := (page - 1) * limit
  96. likeKey := "%" + keyword + "%"
  97. db := XTReadDB().Table("xt_good_information as x").Where("x.status = 1 and x.org_id =? and find_in_set('停用',x.good_status) = 0", orgId)
  98. if good_type_id > 0 {
  99. db = db.Where("x.good_type_id = ?", good_type_id)
  100. }
  101. if good_type == 2 {
  102. db = db.Where(" x.sum_count<=x.stock_warn_count")
  103. }
  104. if good_type == 3 {
  105. db = db.Where("x.sum_count = 0")
  106. }
  107. if good_type == 4 {
  108. db = db.Where("x.sum_count > 0")
  109. }
  110. if len(keyword) > 0 {
  111. db = db.Where("good_name like ? or manufacturer in(?)", likeKey, ids)
  112. }
  113. db = db.Preload("XtGoodStockCount", func(db *gorm.DB) *gorm.DB {
  114. if storehouse_id > 0 {
  115. db = db.Where("storehouse_id = ?", storehouse_id)
  116. }
  117. return db.Where("status = 1 and user_org_id = ?", orgId)
  118. })
  119. db = db.Preload("GoodStockCount", func(db *gorm.DB) *gorm.DB {
  120. if storehouse_id > 0 {
  121. db = db.Where("storehouse_id = ?", storehouse_id)
  122. }
  123. return db.Where("status = 1 and user_org_id = ?", orgId).Group("good_id,storehouse_id")
  124. })
  125. db = db.Preload("WarehousingInfo", func(db *gorm.DB) *gorm.DB {
  126. if storehouse_id > 0 {
  127. db = db.Where("storehouse_id = ?", storehouse_id)
  128. }
  129. return db.Where("status = 1 and org_id = ? and is_check = 1", orgId)
  130. })
  131. if orgId == 10489 {
  132. err = db.Count(&total).Offset(offset).Limit(limit).Order("x.sum_count desc").Find(&good).Error
  133. } else {
  134. err = db.Count(&total).Offset(offset).Limit(limit).Order("x.ctime desc").Find(&good).Error
  135. }
  136. return good, total, err
  137. }
  138. func GetSumGoodList(orgid int64, storehouse_id int64, good_id int64) (info []*models.WarehousingInfo, err error) {
  139. err = XTReadDB().Where("org_id = ? and storehouse_id = ? and good_id = ? and status =1 and is_check = 1", orgid, storehouse_id, good_id).Find(&info).Error
  140. return info, err
  141. }
  142. func GetNewSumGoodList(orgid int64, storehouse_id int64, good_id int64, tx *gorm.DB) (info []*models.WarehousingInfo, err error) {
  143. err = tx.Where("org_id = ? and storehouse_id = ? and good_id = ? and status =1 and is_check = 1", orgid, storehouse_id, good_id).Find(&info).Error
  144. if err != gorm.ErrRecordNotFound {
  145. if err != nil {
  146. tx.Rollback()
  147. return info, err
  148. }
  149. }
  150. return info, err
  151. }
  152. func UpdateSumGood(orgid int64, storehouse_id int64, good_id int64, flush_count int64) error {
  153. db := writeDb.Begin()
  154. err := db.Model(&models.XtGoodStockCount{}).Where("user_org_id = ? and storehouse_id = ? and good_id = ? and status = 1", orgid, storehouse_id, good_id).Updates(map[string]interface{}{"flush_count": flush_count}).Error
  155. if err != nil {
  156. db.Rollback()
  157. return err
  158. }
  159. db.Commit()
  160. return err
  161. }
  162. func UpdateNewSumGood(orgid int64, storehouse_id int64, good_id int64, flush_count int64, tx *gorm.DB) error {
  163. err := tx.Model(&models.XtGoodStockCount{}).Where("user_org_id = ? and storehouse_id = ? and good_id = ? and status = 1", orgid, storehouse_id, good_id).Updates(map[string]interface{}{"flush_count": flush_count}).Error
  164. if err != nil {
  165. tx.Rollback()
  166. return err
  167. }
  168. return err
  169. }
  170. func ReduceSumOutCount(good_id int64, total_count int64, storehouse_id int64, user_org_id int64) error {
  171. ut := XTWriteDB().Begin()
  172. err = ut.Model(&models.XtGoodStockCount{}).Where("storehouse_id = ? and status = 1 and user_org_id = ? and good_id =?", storehouse_id, user_org_id, good_id).UpdateColumn("stock_out_count", gorm.Expr("stock_out_count - ?", total_count)).Error
  173. err = ut.Model(&models.XtGoodStockCount{}).Where("storehouse_id = ? and status = 1 and user_org_id = ? and good_id =?", storehouse_id, user_org_id, good_id).UpdateColumn("stock_act_out_count", gorm.Expr("stock_act_out_count - ?", total_count)).Error
  174. if err != nil {
  175. ut.Rollback()
  176. return err
  177. }
  178. ut.Commit()
  179. return err
  180. }
  181. func ReduceSumInCount(good_id int64, total_count int64, storehouse_id int64, user_org_id int64) error {
  182. ut := XTWriteDB().Begin()
  183. err = ut.Model(&models.XtGoodStockCount{}).Where("storehouse_id = ? and status = 1 and user_org_id = ? and good_id =?", storehouse_id, user_org_id, good_id).UpdateColumn("stock_out_count", gorm.Expr("stock_out_count + ?", total_count)).Error
  184. err = ut.Model(&models.XtGoodStockCount{}).Where("storehouse_id = ? and status = 1 and user_org_id = ? and good_id =?", storehouse_id, user_org_id, good_id).UpdateColumn("stock_act_out_count", gorm.Expr("stock_act_out_count + ?", total_count)).Error
  185. if err != nil {
  186. ut.Rollback()
  187. return err
  188. }
  189. ut.Commit()
  190. return err
  191. }
  192. func UpdateSumCount(user_org_id int64, storehouse_id int64, good_id int64, count int64) error {
  193. ut := XTWriteDB().Begin()
  194. err = ut.Model(&models.XtGoodStockCount{}).Where("storehouse_id = ? and status = 1 and user_org_id = ? and good_id =?", storehouse_id, user_org_id, good_id).UpdateColumn("stock_out_count", gorm.Expr("stock_out_count - ?", count)).Error
  195. if err != nil {
  196. ut.Rollback()
  197. return err
  198. }
  199. ut.Commit()
  200. return err
  201. }
  202. func UpdateActSumCount(user_org_id int64, storehouse_id int64, good_id int64, count int64) error {
  203. ut := XTWriteDB().Begin()
  204. err = ut.Model(&models.XtGoodStockCount{}).Where("storehouse_id = ? and status = 1 and user_org_id = ? and good_id =?", storehouse_id, user_org_id, good_id).UpdateColumn("stock_act_out_count", gorm.Expr("stock_act_out_count - ?", count)).Error
  205. if err != nil {
  206. ut.Rollback()
  207. return err
  208. }
  209. ut.Commit()
  210. return err
  211. }
  212. func GetHisPrescriptionList(orgid int64) (project []*models.HisPrescriptionProject, err error) {
  213. err = XTReadDB().Where("user_org_id = ? and status= 1 and record_date =1690819200", orgid).Find(&project).Error
  214. return project, err
  215. }
  216. func UpdateGoodFlow(project_id int64, price float64) error {
  217. flow := models.VmStockFlow{}
  218. err := XTWriteDB().Model(&flow).Where("warehousing_id = ? and user_org_id =10265", project_id).Updates(map[string]interface{}{"price": price}).Error
  219. err = XTWriteDB().Model(models.WarehouseOutInfo{}).Where("warehouse_info_id = ? and org_id =10265", project_id).Updates(map[string]interface{}{"price": price}).Error
  220. return err
  221. }
  222. func GetSendGoodInformation(org_id int64) (info []*models.WarehousingInfo, err error) {
  223. err = XTReadDB().Where("org_id = ? and is_check = 1 and status = 1", org_id).Find(&info).Error
  224. return info, err
  225. }
  226. func GetStockFlush(storehouse_id int64, good_id int64, orgid int64) (*models.XtGoodStockCount, error) {
  227. stockCount := models.XtGoodStockCount{}
  228. var err error
  229. err = XTReadDB().Where("storehouse_id =? and good_id = ? and user_org_id = ?", storehouse_id, good_id, orgid).Find(&stockCount).Error
  230. if err == gorm.ErrRecordNotFound {
  231. return nil, err
  232. }
  233. if err != nil {
  234. return nil, err
  235. }
  236. return &stockCount, nil
  237. }
  238. func CreateGoodCountSix(good models.XtGoodStockCount) error {
  239. err := XTWriteDB().Create(&good).Error
  240. return err
  241. }
  242. func UpdateGoodCount(warehousingCount int64, stock_count int64, out_count int64, storehouse_id int64, good_id int64, orgid int64, cancel_count int64, act_count int64) error {
  243. err := XTWriteDB().Model(&models.XtGoodStockCount{}).Where("storehouse_id = ? and good_id = ? and status =1 and user_org_id = ?", storehouse_id, good_id, orgid).UpdateColumn("stock_in_count", gorm.Expr("stock_in_count+?", warehousingCount)).Error
  244. err = XTWriteDB().Model(&models.XtGoodStockCount{}).Where("storehouse_id = ? and good_id = ? and status =1 and user_org_id = ?", storehouse_id, good_id, orgid).Update(map[string]interface{}{"stock_out_count": out_count}).Error
  245. err = XTWriteDB().Model(&models.XtGoodStockCount{}).Where("storehouse_id = ? and good_id = ? and status =1 and user_org_id = ?", storehouse_id, good_id, orgid).UpdateColumn("flush_count", gorm.Expr("flush_count + ?", stock_count)).Error
  246. err = XTWriteDB().Model(&models.XtGoodStockCount{}).Where("storehouse_id = ? and good_id = ? and status =1 and user_org_id = ?", storehouse_id, good_id, orgid).Update(map[string]interface{}{"stock_cancel_count": cancel_count}).Error
  247. err = XTWriteDB().Model(&models.XtGoodStockCount{}).Where("storehouse_id = ? and good_id = ? and status =1 and user_org_id = ?", storehouse_id, good_id, orgid).Update(map[string]interface{}{"stock_act_out_count": act_count}).Error
  248. return err
  249. }
  250. func UpdateGoodCountSend(warehousingCount int64, stock_count int64, out_count int64, storehouse_id int64, good_id int64, orgid int64, cancel_count int64, act_count int64) error {
  251. err := XTWriteDB().Model(&models.XtGoodStockCount{}).Where("storehouse_id = ? and good_id = ? and status =1 and user_org_id = ?", storehouse_id, good_id, orgid).Updates(map[string]interface{}{"stock_in_count": warehousingCount}).Error
  252. err = XTWriteDB().Model(&models.XtGoodStockCount{}).Where("storehouse_id = ? and good_id = ? and status =1 and user_org_id = ?", storehouse_id, good_id, orgid).Update(map[string]interface{}{"stock_out_count": out_count}).Error
  253. err = XTWriteDB().Model(&models.XtGoodStockCount{}).Where("storehouse_id = ? and good_id = ? and status =1 and user_org_id = ?", storehouse_id, good_id, orgid).Update(map[string]interface{}{"flush_count": stock_count}).Error
  254. err = XTWriteDB().Model(&models.XtGoodStockCount{}).Where("storehouse_id = ? and good_id = ? and status =1 and user_org_id = ?", storehouse_id, good_id, orgid).Update(map[string]interface{}{"stock_cancel_count": cancel_count}).Error
  255. err = XTWriteDB().Model(&models.XtGoodStockCount{}).Where("storehouse_id = ? and good_id = ? and status =1 and user_org_id = ?", storehouse_id, good_id, orgid).Update(map[string]interface{}{"stock_act_out_count": act_count}).Error
  256. return err
  257. }
  258. func GetAllCancelCount(storehouse_id int64, good_id int64, org_id int64) (flow []*models.VmStockFlow, err error) {
  259. err = XTReadDB().Where("storehouse_id = ? and good_id = ? and user_org_id = ? and (consumable_type = 4 or consumable_type= 7) and status = 1", storehouse_id, good_id, org_id).Find(&flow).Error
  260. return flow, err
  261. }
  262. func GetAllStockOutCount(storehouse_id int64, good_id int64, org_id int64) (flow []*models.VmStockFlow, err error) {
  263. err = XTReadDB().Where("storehouse_id = ? and good_id = ? and user_org_id = ? and (consumable_type = 2 or consumable_type= 3)", storehouse_id, good_id, org_id).Find(&flow).Error
  264. return flow, err
  265. }
  266. func GetActStockOutCount(storehouse_id int64, good_id int64, org_id int64) (flow []*models.VmStockFlow, err error) {
  267. err = XTReadDB().Where("storehouse_id = ? and good_id = ? and user_org_id = ? and (consumable_type = 2 or consumable_type= 3) and status = 1", storehouse_id, good_id, org_id).Find(&flow).Error
  268. return flow, err
  269. }
  270. func GetDrugStockCount(storehouse_id int64, drug_id int64, org_id int64) (*models.XtDrugStockCount, error) {
  271. drugStockCount := models.XtDrugStockCount{}
  272. var err error
  273. err = XTReadDB().Where("storehouse_id = ? and drug_id = ? and user_org_id = ? and status = 1", storehouse_id, drug_id, org_id).Find(&drugStockCount).Error
  274. if err == gorm.ErrRecordNotFound {
  275. return nil, err
  276. }
  277. if err != nil {
  278. return nil, err
  279. }
  280. return &drugStockCount, nil
  281. }
  282. func GetNewDrugStockCount(storehouse_id int64, drug_id int64, org_id int64, tx *gorm.DB) (*models.XtDrugStockCount, error) {
  283. drugStockCount := models.XtDrugStockCount{}
  284. var err error
  285. err = tx.Where("storehouse_id = ? and drug_id = ? and user_org_id = ? and status = 1", storehouse_id, drug_id, org_id).Find(&drugStockCount).Error
  286. if err != gorm.ErrRecordNotFound {
  287. if err != nil {
  288. tx.Rollback()
  289. return nil, err
  290. }
  291. }
  292. return &drugStockCount, nil
  293. }
  294. func GetDrugStockCountSix(storehouse_id int64, drug_id int64, org_id int64) (models.XtDrugStockCount, error) {
  295. drugStockCount := models.XtDrugStockCount{}
  296. err = XTReadDB().Where("storehouse_id = ? and drug_id = ? and user_org_id = ? and status = 1", storehouse_id, drug_id, org_id).Find(&drugStockCount).Error
  297. return drugStockCount, err
  298. }
  299. func CreateDrugStockSum(drug models.XtDrugStockCount) error {
  300. ut := XTWriteDB().Begin()
  301. err := ut.Create(&drug).Error
  302. if err != nil {
  303. ut.Rollback()
  304. return err
  305. }
  306. ut.Commit()
  307. return err
  308. }
  309. func CreateNewDrugStockSum(drug models.XtDrugStockCount, tx *gorm.DB) error {
  310. err := tx.Create(&drug).Error
  311. if err != nil {
  312. tx.Rollback()
  313. return err
  314. }
  315. return err
  316. }
  317. func AddDrugStockSum(storehouse_id int64, drug_id int64, user_org_id int64, waresing_count int64, over_count int64) error {
  318. db := writeDb.Begin()
  319. err = db.Model(&models.XtDrugStockCount{}).Where("user_org_id = ? and storehouse_id = ? and drug_id = ? and status = 1", user_org_id, storehouse_id, drug_id).UpdateColumn("sum_in_count", gorm.Expr("sum_in_count + ?", waresing_count)).Error
  320. if err != nil {
  321. db.Rollback()
  322. return err
  323. }
  324. err = db.Model(&models.XtDrugStockCount{}).Where("user_org_id = ? and storehouse_id = ? and drug_id = ? and status = 1", user_org_id, storehouse_id, drug_id).Update(map[string]interface{}{"flush_count": over_count}).Error
  325. if err != nil {
  326. db.Rollback()
  327. return err
  328. }
  329. db.Commit()
  330. return err
  331. }
  332. func UpdateDrugStockSum(storehouse_id int64, drug_id int64, user_org_id int64, waresing_count int64, over_count int64) error {
  333. db := writeDb.Begin()
  334. err = db.Model(&models.XtDrugStockCount{}).Where("user_org_id = ? and storehouse_id = ? and drug_id = ? and status = 1", user_org_id, storehouse_id, drug_id).Update(map[string]interface{}{"sum_in_count": waresing_count}).Error
  335. if err != nil {
  336. db.Rollback()
  337. return err
  338. }
  339. err = db.Model(&models.XtDrugStockCount{}).Where("user_org_id = ? and storehouse_id = ? and drug_id = ? and status = 1", user_org_id, storehouse_id, drug_id).Update(map[string]interface{}{"flush_count": over_count}).Error
  340. if err != nil {
  341. db.Rollback()
  342. return err
  343. }
  344. db.Commit()
  345. return err
  346. }
  347. func UpdateNewDrugStockSum(storehouse_id int64, drug_id int64, user_org_id int64, waresing_count int64, over_count int64, tx *gorm.DB) error {
  348. err = tx.Model(&models.XtDrugStockCount{}).Where("user_org_id = ? and storehouse_id = ? and drug_id = ? and status = 1", user_org_id, storehouse_id, drug_id).Update(map[string]interface{}{"sum_in_count": waresing_count}).Error
  349. if err != nil {
  350. tx.Rollback()
  351. return err
  352. }
  353. err = tx.Model(&models.XtDrugStockCount{}).Where("user_org_id = ? and storehouse_id = ? and drug_id = ? and status = 1", user_org_id, storehouse_id, drug_id).Update(map[string]interface{}{"flush_count": over_count}).Error
  354. if err != nil {
  355. tx.Rollback()
  356. return err
  357. }
  358. return err
  359. }
  360. func ReduceDrugStockCount(storehouse_id int64, drug_id int64, user_org_id int64, waresing_count int64, over_count int64) error {
  361. db := writeDb.Begin()
  362. err = db.Model(&models.XtDrugStockCount{}).Where("user_org_id = ? and storehouse_id = ? and drug_id = ? and status = 1", user_org_id, storehouse_id, drug_id).UpdateColumn("sum_in_count", gorm.Expr("sum_in_count - ?", waresing_count)).Error
  363. if err != nil {
  364. db.Rollback()
  365. return err
  366. }
  367. err = db.Model(&models.XtDrugStockCount{}).Where("user_org_id = ? and storehouse_id = ? and drug_id = ? and status = 1", user_org_id, storehouse_id, drug_id).Update(map[string]interface{}{"flush_count": over_count}).Error
  368. if err != nil {
  369. db.Rollback()
  370. return err
  371. }
  372. db.Commit()
  373. return err
  374. }
  375. func ReduceNewDrugStockCount(storehouse_id int64, drug_id int64, user_org_id int64, waresing_count int64, over_count int64, tx *gorm.DB) error {
  376. err = tx.Model(&models.XtDrugStockCount{}).Where("user_org_id = ? and storehouse_id = ? and drug_id = ? and status = 1", user_org_id, storehouse_id, drug_id).UpdateColumn("sum_in_count", gorm.Expr("sum_in_count - ?", waresing_count)).Error
  377. if err != nil {
  378. tx.Rollback()
  379. return err
  380. }
  381. err = tx.Model(&models.XtDrugStockCount{}).Where("user_org_id = ? and storehouse_id = ? and drug_id = ? and status = 1", user_org_id, storehouse_id, drug_id).Update(map[string]interface{}{"flush_count": over_count}).Error
  382. if err != nil {
  383. tx.Rollback()
  384. return err
  385. }
  386. return err
  387. }
  388. func AddCancelSumCount(storehouse_id int64, drug_id int64, user_org_id int64, cancel_count int64, over_count int64) error {
  389. db := writeDb.Begin()
  390. err = db.Model(&models.XtDrugStockCount{}).Where("user_org_id = ? and storehouse_id = ? and drug_id = ? and status = 1", user_org_id, storehouse_id, drug_id).UpdateColumn("sum_cancel_count", gorm.Expr("sum_cancel_count + ?", cancel_count)).Error
  391. if err != nil {
  392. db.Rollback()
  393. return err
  394. }
  395. err = db.Model(&models.XtDrugStockCount{}).Where("user_org_id = ? and storehouse_id = ? and drug_id = ? and status = 1", user_org_id, storehouse_id, drug_id).Update(map[string]interface{}{"flush_count": over_count}).Error
  396. if err != nil {
  397. db.Rollback()
  398. return err
  399. }
  400. db.Commit()
  401. return err
  402. }
  403. func AddCancelSumCountOne(storehouse_id int64, drug_id int64, user_org_id int64, cancel_count int64) error {
  404. db := writeDb.Begin()
  405. err = db.Model(&models.XtDrugStockCount{}).Where("user_org_id = ? and storehouse_id = ? and drug_id = ? and status = 1", user_org_id, storehouse_id, drug_id).UpdateColumn("sum_cancel_count", gorm.Expr("sum_cancel_count + ?", cancel_count)).Error
  406. if err != nil {
  407. db.Rollback()
  408. return err
  409. }
  410. db.Commit()
  411. return err
  412. }
  413. func AddSelfCancelSumCountOne(patient_id int64, drug_id int64, user_org_id int64, cancel_count int64) error {
  414. db := writeDb.Begin()
  415. err = db.Model(&models.XtSelfDrugStockCount{}).Where("user_org_id = ? and patient_id = ? and drug_id = ? and status = 1", user_org_id, patient_id, drug_id).UpdateColumn("sum_cancel_count", gorm.Expr("sum_cancel_count + ?", cancel_count)).Error
  416. if err != nil {
  417. db.Rollback()
  418. return err
  419. }
  420. db.Commit()
  421. return err
  422. }
  423. func AddNewCancelSumCountOne(storehouse_id int64, drug_id int64, user_org_id int64, cancel_count int64, tx *gorm.DB) error {
  424. err = tx.Model(&models.XtDrugStockCount{}).Where("user_org_id = ? and storehouse_id = ? and drug_id = ? and status = 1", user_org_id, storehouse_id, drug_id).UpdateColumn("sum_cancel_count", gorm.Expr("sum_cancel_count + ?", cancel_count)).Error
  425. if err != nil {
  426. tx.Rollback()
  427. return err
  428. }
  429. return err
  430. }
  431. func ReduceCancelSumCount(storehouse_id int64, drug_id int64, user_org_id int64, cancel_count int64, over_count int64) error {
  432. db := writeDb.Begin()
  433. err = db.Model(&models.XtDrugStockCount{}).Where("user_org_id = ? and storehouse_id = ? and drug_id = ? and status = 1", user_org_id, storehouse_id, drug_id).UpdateColumn("sum_cancel_count", gorm.Expr("sum_cancel_count - ?", cancel_count)).Error
  434. if err != nil {
  435. db.Rollback()
  436. return err
  437. }
  438. err = db.Model(&models.XtDrugStockCount{}).Where("user_org_id = ? and storehouse_id = ? and drug_id = ? and status = 1", user_org_id, storehouse_id, drug_id).Update(map[string]interface{}{"flush_count": over_count}).Error
  439. if err != nil {
  440. db.Rollback()
  441. return err
  442. }
  443. db.Commit()
  444. return err
  445. }
  446. func UpdateSumDrug(orgid int64, storehouse_id int64, drug_id int64, flush_count int64) error {
  447. db := writeDb.Begin()
  448. err := db.Model(&models.XtDrugStockCount{}).Where("user_org_id = ? and storehouse_id = ? and drug_id = ? and status = 1", orgid, storehouse_id, drug_id).Update(map[string]interface{}{"flush_count": flush_count}).Error
  449. if err != nil {
  450. db.Rollback()
  451. return err
  452. }
  453. db.Commit()
  454. return err
  455. }
  456. func UpdateSumDrugTwo(orgid int64, patient_id int64, drug_id int64, flush_count int64) error {
  457. db := writeDb.Begin()
  458. err := db.Model(&models.XtSelfDrugStockCount{}).Where("user_org_id = ? and patient_id = ? and drug_id = ? and status = 1", orgid, patient_id, drug_id).Update(map[string]interface{}{"flush_count": flush_count}).Error
  459. if err != nil {
  460. db.Rollback()
  461. return err
  462. }
  463. db.Commit()
  464. return err
  465. }
  466. func UpdateSumOutDrug(orgid int64, storehouse_id int64, drug_id int64, sum_out_count int64) error {
  467. db := writeDb.Begin()
  468. err := db.Model(&models.XtDrugStockCount{}).Where("user_org_id = ? and storehouse_id = ? and drug_id = ? and status = 1", orgid, storehouse_id, drug_id).UpdateColumn("sum_out_count", gorm.Expr("sum_out_count - ?", sum_out_count)).Error
  469. if err != nil {
  470. db.Rollback()
  471. return err
  472. }
  473. db.Commit()
  474. return err
  475. }
  476. func UpdateSelfSumOutDrug(orgid int64, patient_id int64, drug_id int64, sum_out_count int64) error {
  477. db := writeDb.Begin()
  478. err := db.Model(&models.XtSelfDrugStockCount{}).Where("user_org_id = ? and patient_id = ? and drug_id = ? and status = 1", orgid, patient_id, drug_id).UpdateColumn("sum_out_count", gorm.Expr("sum_out_count - ?", sum_out_count)).Error
  479. if err != nil {
  480. db.Rollback()
  481. return err
  482. }
  483. db.Commit()
  484. return err
  485. }
  486. func GetAutoGoodLastCount(goodid int64, count int64, record_time int64, patient_id int64) (models.AutomaticReduceDetail, error) {
  487. detail := models.AutomaticReduceDetail{}
  488. err := XTReadDB().Where("good_id = ? and count = ? and record_time = ? and patient_id = ?", goodid, count, record_time, patient_id).Last(&detail).Error
  489. return detail, err
  490. }
  491. func UpdateLastAutoCount(id int64, count int64) error {
  492. detail := models.AutomaticReduceDetail{}
  493. err := XTWriteDB().Model(&detail).Where("id = ?", id).Update(map[string]interface{}{"count": count, "status": 1}).Error
  494. return err
  495. }
  496. func GetWareOutInfo(good_id int64, record_date int64, user_org_id int64, patient_id int64, order_id int64) (outinfo []*models.WarehouseOutInfo, err error) {
  497. err = XTReadDB().Where("good_id = ? and sys_record_time = ? and org_id = ? and status = 1 and patient_id = ? and order_id = ?", good_id, record_date, user_org_id, patient_id, order_id).Find(&outinfo).Error
  498. return outinfo, err
  499. }
  500. func AddGoodStockCount(storehouse_id int64, good_id int64, user_org_id int64, count int64) error {
  501. db := writeDb.Begin()
  502. err = db.Model(&models.XtGoodStockCount{}).Where("user_org_id = ? and storehouse_id = ? and good_id = ? and status = 1", user_org_id, storehouse_id, good_id).UpdateColumn("stock_in_count", gorm.Expr("stock_in_count + ?", count)).Error
  503. if err != nil {
  504. db.Rollback()
  505. return err
  506. }
  507. err = db.Model(&models.XtGoodStockCount{}).Where("user_org_id = ? and storehouse_id = ? and good_id = ? and status = 1", user_org_id, storehouse_id, good_id).UpdateColumn("flush_count", gorm.Expr("flush_count + ?", count)).Error
  508. if err != nil {
  509. db.Rollback()
  510. return err
  511. }
  512. db.Commit()
  513. return err
  514. }
  515. func AddDrugStockCount(storehouse_id int64, drug_id int64, user_org_id int64, count int64) error {
  516. db := writeDb.Begin()
  517. err = db.Model(&models.XtDrugStockCount{}).Where("user_org_id = ? and storehouse_id = ? and drug_id = ? and status = 1", user_org_id, storehouse_id, drug_id).UpdateColumn("sum_in_count", gorm.Expr("sum_in_count + ?", count)).Error
  518. if err != nil {
  519. db.Rollback()
  520. return err
  521. }
  522. err = db.Model(&models.XtDrugStockCount{}).Where("user_org_id = ? and storehouse_id = ? and drug_id = ? and status = 1", user_org_id, storehouse_id, drug_id).UpdateColumn("flush_count", gorm.Expr("flush_count + ?", count)).Error
  523. if err != nil {
  524. db.Rollback()
  525. return err
  526. }
  527. db.Commit()
  528. return err
  529. }
  530. func ReduceStockCount(storehouse_id int64, good_id int64, user_org_id int64, count int64) error {
  531. db := writeDb.Begin()
  532. //err = db.Model(&models.XtGoodStockCount{}).Where("user_org_id = ? and storehouse_id = ? and good_id = ? and status = 1", user_org_id, storehouse_id, good_id).UpdateColumn("stock_in_count", gorm.Expr("stock_in_count - ?", count)).Error
  533. //if err != nil {
  534. // db.Rollback()
  535. // return err
  536. //}
  537. err = db.Model(&models.XtGoodStockCount{}).Where("user_org_id = ? and storehouse_id = ? and good_id = ? and status = 1", user_org_id, storehouse_id, good_id).UpdateColumn("stock_out_count", gorm.Expr("stock_out_count + ?", count)).Error
  538. if err != nil {
  539. db.Rollback()
  540. return err
  541. }
  542. err = db.Model(&models.XtGoodStockCount{}).Where("user_org_id = ? and storehouse_id = ? and good_id = ? and status = 1", user_org_id, storehouse_id, good_id).UpdateColumn("stock_act_out_count", gorm.Expr("stock_act_out_count + ?", count)).Error
  543. if err != nil {
  544. db.Rollback()
  545. return err
  546. }
  547. err = db.Model(&models.XtGoodStockCount{}).Where("user_org_id = ? and storehouse_id = ? and good_id = ? and status = 1", user_org_id, storehouse_id, good_id).UpdateColumn("flush_count", gorm.Expr("flush_count - ?", count)).Error
  548. if err != nil {
  549. db.Rollback()
  550. return err
  551. }
  552. db.Commit()
  553. return err
  554. }
  555. func ReduceStockCountTwo(storehouse_id int64, good_id int64, user_org_id int64, count int64) error {
  556. db := writeDb.Begin()
  557. err = db.Model(&models.XtGoodStockCount{}).Where("user_org_id = ? and storehouse_id = ? and good_id = ? and status = 1", user_org_id, storehouse_id, good_id).UpdateColumn("stock_out_count", gorm.Expr("stock_out_count + ?", count)).Error
  558. if err != nil {
  559. db.Rollback()
  560. return err
  561. }
  562. err = db.Model(&models.XtGoodStockCount{}).Where("user_org_id = ? and storehouse_id = ? and good_id = ? and status = 1", user_org_id, storehouse_id, good_id).UpdateColumn("stock_act_out_count", gorm.Expr("stock_act_out_count + ?", count)).Error
  563. if err != nil {
  564. db.Rollback()
  565. return err
  566. }
  567. err = db.Model(&models.XtGoodStockCount{}).Where("user_org_id = ? and storehouse_id = ? and good_id = ? and status = 1", user_org_id, storehouse_id, good_id).UpdateColumn("flush_count", gorm.Expr("flush_count - ?", count)).Error
  568. if err != nil {
  569. db.Rollback()
  570. return err
  571. }
  572. db.Commit()
  573. return err
  574. }
  575. func ReduceDrugStockCountSix(storehouse_id int64, drug_id int64, user_org_id int64, count int64) error {
  576. db := writeDb.Begin()
  577. //err = db.Model(&models.XtDrugStockCount{}).Where("user_org_id = ? and storehouse_id = ? and drug_id = ? and status = 1", user_org_id, storehouse_id, drug_id).UpdateColumn("sum_in_count", gorm.Expr("sum_in_count - ?", count)).Error
  578. //if err != nil {
  579. // db.Rollback()
  580. // return err
  581. //}
  582. err = db.Model(&models.XtDrugStockCount{}).Where("user_org_id = ? and storehouse_id = ? and drug_id = ? and status = 1", user_org_id, storehouse_id, drug_id).UpdateColumn("sum_out_count", gorm.Expr("sum_out_count + ?", count)).Error
  583. if err != nil {
  584. db.Rollback()
  585. return err
  586. }
  587. err = db.Model(&models.XtDrugStockCount{}).Where("user_org_id = ? and storehouse_id = ? and drug_id = ? and status = 1", user_org_id, storehouse_id, drug_id).UpdateColumn("sum_act_out_count", gorm.Expr("sum_act_out_count + ?", count)).Error
  588. if err != nil {
  589. db.Rollback()
  590. return err
  591. }
  592. err = db.Model(&models.XtDrugStockCount{}).Where("user_org_id = ? and storehouse_id = ? and drug_id = ? and status = 1", user_org_id, storehouse_id, drug_id).UpdateColumn("flush_count", gorm.Expr("flush_count - ?", count)).Error
  593. if err != nil {
  594. db.Rollback()
  595. return err
  596. }
  597. db.Commit()
  598. return err
  599. }
  600. func ReduceDrugStockCountSeven(storehouse_id int64, drug_id int64, user_org_id int64, count int64) error {
  601. db := writeDb.Begin()
  602. err = db.Model(&models.XtDrugStockCount{}).Where("user_org_id = ? and storehouse_id = ? and drug_id = ? and status = 1", user_org_id, storehouse_id, drug_id).UpdateColumn("sum_out_count", gorm.Expr("sum_out_count + ?", count)).Error
  603. if err != nil {
  604. db.Rollback()
  605. return err
  606. }
  607. err = db.Model(&models.XtDrugStockCount{}).Where("user_org_id = ? and storehouse_id = ? and drug_id = ? and status = 1", user_org_id, storehouse_id, drug_id).UpdateColumn("sum_act_out_count", gorm.Expr("sum_act_out_count + ?", count)).Error
  608. if err != nil {
  609. db.Rollback()
  610. return err
  611. }
  612. err = db.Model(&models.XtDrugStockCount{}).Where("user_org_id = ? and storehouse_id = ? and drug_id = ? and status = 1", user_org_id, storehouse_id, drug_id).UpdateColumn("flush_count", gorm.Expr("flush_count - ?", count)).Error
  613. if err != nil {
  614. db.Rollback()
  615. return err
  616. }
  617. db.Commit()
  618. return err
  619. }
  620. func GetWarehouseOutInfoByProjectIdList(project_id int64, org_id int64, storehouse_id int64, good_id int64, patient_id int64, sys_record_time int64) (info []*models.WarehouseOutInfoNight, err error) {
  621. err = XTReadDB().Where("project_id = ? and org_id = ? and storehouse_id = ? and good_id = ? and patient_id = ? and sys_record_time = ? and status = 1", project_id, org_id, storehouse_id, good_id, patient_id, sys_record_time).Find(&info).Error
  622. return info, err
  623. }
  624. func GetWarehouseStockFlow(warehouse_info_id int64, good_id int64, user_org_id int64, patient_id int64, system_time int64) (models.VmStockFlow, error) {
  625. stockFlow := models.VmStockFlow{}
  626. err := XTReadDB().Where("warehousing_detail_id = ? and good_id = ? and user_org_id = ? and patient_id = ? AND consumable_type = 7 and system_time = ?", warehouse_info_id, good_id, user_org_id, patient_id, system_time).Find(&stockFlow).Error
  627. return stockFlow, err
  628. }
  629. func AddCountFlowOne(warehouse_info_id int64, good_id int64, user_org_id int64, patient_id int64, count int64, system_time int64, over_count int64) error {
  630. stockFlow := models.VmStockFlow{}
  631. err := XTWriteDB().Model(&stockFlow).Where("warehousing_detail_id = ? and good_id = ? and user_org_id = ? and patient_id = ? AND consumable_type = 7 and system_time = ?", warehouse_info_id, good_id, user_org_id, patient_id, system_time).UpdateColumn("count", gorm.Expr("count + ?", count)).Error
  632. err = XTWriteDB().Model(&stockFlow).Where("warehousing_detail_id = ? and good_id = ? and user_org_id = ? and patient_id = ? AND consumable_type = 7 and system_time = ?").Update(map[string]interface{}{"over_count": over_count}).Error
  633. return err
  634. }
  635. func GetWarehouseOutInfo(user_org_id int64) (info []*models.WarehouseOut, err error) {
  636. err = XTReadDB().Where("org_id = ? and status =1", 10485).Find(&info).Error
  637. return info, err
  638. }
  639. func UpdateWarehosueOutInfo(id int64, sys_record_time int64) (models.WarehouseOutInfo, error) {
  640. info := models.WarehouseOutInfo{}
  641. err := XTWriteDB().Model(&info).Where("warehouse_out_id = ? and org_id = ? ", id, 10485).Updates(map[string]interface{}{"sys_record_time": sys_record_time, "ctime": sys_record_time}).Error
  642. return info, err
  643. }
  644. func AddGoodNewCancelSumCountOne(storehouse_id int64, good_id int64, user_org_id int64, cancel_count int64, tx *gorm.DB) error {
  645. err = tx.Model(&models.XtGoodStockCount{}).Where("user_org_id = ? and storehouse_id = ? and good_id = ? and status = 1", user_org_id, storehouse_id, good_id).UpdateColumn("stock_cancel_count", gorm.Expr("stock_cancel_count + ?", cancel_count)).Error
  646. if err != nil {
  647. tx.Rollback()
  648. return err
  649. }
  650. return err
  651. }
  652. func GetDrugNewInventoryList(org_id int64, keyword string) (drug []*models.BaseDrugLibTwentyOne, err error) {
  653. likeKey := "%" + keyword + "%"
  654. db := XTReadDB().Where("status=1")
  655. if org_id > 0 {
  656. db = db.Where("org_id = ?", org_id)
  657. }
  658. if len(keyword) > 0 {
  659. db = db.Where("drug_name like ?", likeKey)
  660. }
  661. err = db.Order("id desc").Find(&drug).Error
  662. return drug, err
  663. }
  664. func GetSelfDrugStockCount(patient_id int64, drug_id int64, org_id int64, tx *gorm.DB) (*models.XtSelfDrugStockCount, error) {
  665. drugStockCount := models.XtSelfDrugStockCount{}
  666. var err error
  667. err = tx.Where("patient_id = ? and drug_id = ? and user_org_id = ? and status = 1", patient_id, drug_id, org_id).Find(&drugStockCount).Error
  668. if err != gorm.ErrRecordNotFound {
  669. if err != nil {
  670. tx.Rollback()
  671. return nil, err
  672. }
  673. }
  674. return &drugStockCount, nil
  675. }
  676. func UpdateSelfDrugStockSum(patient_id int64, drug_id int64, user_org_id int64, waresing_count int64, over_count int64, tx *gorm.DB) error {
  677. err = tx.Model(&models.XtSelfDrugStockCount{}).Where("user_org_id = ? and patient_id = ? and drug_id = ? and status = 1", user_org_id, patient_id, drug_id).Update(map[string]interface{}{"sum_in_count": waresing_count}).Error
  678. if err != nil {
  679. tx.Rollback()
  680. return err
  681. }
  682. err = tx.Model(&models.XtSelfDrugStockCount{}).Where("user_org_id = ? and patient_id = ? and drug_id = ? and status = 1", user_org_id, patient_id, drug_id).Update(map[string]interface{}{"flush_count": over_count}).Error
  683. if err != nil {
  684. tx.Rollback()
  685. return err
  686. }
  687. return err
  688. }
  689. func GetSelfDrugBatchNumber(drug_id int64, org_id int64) (info []*models.XtSelfDrugWarehouseInfo, err error) {
  690. err = XTReadDB().Model(&info).Where("drug_id = ? and org_id = ? and status=1 and batch_number <>''", drug_id, org_id).Find(&info).Error
  691. return info, err
  692. }