spillage.go 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799
  1. package api
  2. import (
  3. "encoding/json"
  4. "errors"
  5. "fmt"
  6. "io/ioutil"
  7. "log"
  8. "net/http"
  9. "sort"
  10. "strconv"
  11. "strings"
  12. "sync"
  13. "time"
  14. "../../pkg/app"
  15. "../../pkg/e"
  16. "../../pkg/logging"
  17. "../../pkg/setting"
  18. "../../routers/restful"
  19. "github.com/Anderson-Lu/gofasion/gofasion"
  20. "github.com/gin-gonic/gin"
  21. "github.com/xormplus/xorm"
  22. )
  23. type feedtemplet struct {
  24. Id int64 `xorm:"id"`
  25. Ccname string `xorm:"ccname"`
  26. Cname string `xorm:"tname"`
  27. }
  28. type tmrStruct struct {
  29. Id int64 `xorm:"id"`
  30. Tname string `xorm:"tname"`
  31. Maxstirfeed float64 `xorm:"maxstirfeed"`
  32. }
  33. type lpplanStruct struct {
  34. Id int64 `xorm:"id"`
  35. Tmrname string `xorm:"tmrname"`
  36. Tmrid int64 `xorm:"tmrid"`
  37. Sort int64 `xorm:"sort"`
  38. Sel int64 `xorm:"sel"`
  39. Times int64 `xorm:"times"`
  40. Ftname string `xorm:"ftname"`
  41. Ftid int64 `xorm:"ftid"`
  42. Maxweight float64 `xorm:"maxweight"`
  43. Sumweight float64 `xorm:"sumweight"`
  44. Sumcowcount int64 `xorm:"sumcowcount"`
  45. Pastureid string `xorm:"pastureid"`
  46. Display string `xorm:"display"`
  47. Issplit int64 `xorm:"issplit"`
  48. BeginTime string `xorm:"begintime"`
  49. }
  50. type sysopt struct {
  51. Inforvalue int `xorm:"inforvalue"`
  52. }
  53. type lpplanQueryInfo struct {
  54. Pastureid int64 `xorm:"pastureid"`
  55. Lppid int64 `xorm:"id"`
  56. Maxweight float64 `xorm:"maxweight"`
  57. Lweight float64 `xorm:"lweight"`
  58. Lweighthis float64 `xorm:"lweighthis"`
  59. Barid int64 `xorm:"barid"`
  60. Barname string `xorm:"barname"`
  61. Sort int64 `xorm:"sort"`
  62. Tmrid int64 `xorm:"tmrid"`
  63. Tmrname string `xorm:"tmrname"`
  64. Cowcount int64 `xorm:"cowcount"`
  65. Ccountradio float64 `xorm:"ccountradio"`
  66. Background string `xorm:"background"`
  67. Times int64 `xorm:"times"`
  68. Ftid int64 `xorm:"ftid"`
  69. }
  70. type fpdetailQueryInfo struct {
  71. Fpdid int64 `xorm:"fpdid"`
  72. Ptsrate float64 `xorm:"ptsrate"`
  73. Ptsuse float64 `xorm:"ptsuse"`
  74. Ptuse float64 `xorm:"ptuse"`
  75. Weight float64 `xorm:"weight"`
  76. Barid int64 `xorm:"barid"`
  77. Barname string `xorm:"barname"`
  78. Cowcount int64 `xorm:"cowcount"`
  79. Ccountradio float64 `xorm:"ccountradio"`
  80. Fttypeid int64 `xorm:"fttypeid"`
  81. Times int64 `xorm:"times"`
  82. Ptid int64 `xorm:"ptid"`
  83. Background string `xorm:"background"`
  84. }
  85. type lpplandtl1 struct {
  86. Id int64 `xorm:"id"`
  87. Pastureid int64 `xorm:"pastureid"`
  88. Lppid int64 `xorm:"lppid"`
  89. Barid int64 `xorm:"barid"`
  90. Barname string `xorm:"barname"`
  91. Fpdid int64 `xorm:"fpdid"`
  92. Fttype int64 `xorm:"fttype"`
  93. Lweight float64 `xorm:"lweight"`
  94. Sort int64 `xorm:"sort"`
  95. Tmrid int64 `xorm:"tmrid"`
  96. Tmrname string `xorm:"tmrname"`
  97. Cowcount int64 `xorm:"cowcount"`
  98. Ccountradio float64 `xorm:"ccountradio"`
  99. Background string `xorm:"background"`
  100. Lweighthis float64 `xorm:"lweighthis"`
  101. }
  102. //撒料计划 自动生成
  103. func Autogeneration(c *gin.Context) {
  104. appG := app.Gin{C: c}
  105. dataByte, _ := ioutil.ReadAll(c.Request.Body)
  106. fsion := gofasion.NewFasion(string(dataByte))
  107. pastureid := fsion.Get("pastureid").ValueStr()
  108. typeIN := fsion.Get("type").ValueInt64()
  109. log.Println(time.Now())
  110. tx := restful.Engine.NewSession()
  111. defer tx.Close()
  112. var times int
  113. var wg sync.WaitGroup
  114. var tmrlist *[]*tmrStruct
  115. var feedtempletlist *[]*feedtemplet
  116. var err error
  117. var lpplanlist *[]*lpplanList
  118. var fpdetailWeightList *[]*fpdetailWeight
  119. wg.Add(1)
  120. go func() {
  121. defer wg.Done()
  122. feedtempletlist, err = getfeedtemplet(pastureid, tx)
  123. if err != nil {
  124. appG.Response(http.StatusOK, e.ERROR, false)
  125. return
  126. }
  127. }()
  128. wg.Wait()
  129. wg.Add(1)
  130. go func() {
  131. defer wg.Done()
  132. tmrlist, err = gettmr(pastureid, tx)
  133. if err != nil {
  134. appG.Response(http.StatusOK, e.ERROR, false)
  135. return
  136. }
  137. }()
  138. wg.Wait()
  139. wg.Add(1)
  140. go func() {
  141. defer wg.Done()
  142. times, err = gettimes(pastureid, tx)
  143. if err != nil {
  144. appG.Response(http.StatusOK, e.ERROR, false)
  145. return
  146. }
  147. }()
  148. wg.Wait()
  149. wg.Add(1)
  150. go func() {
  151. defer wg.Done()
  152. lpplanlist, err = getLpplanlist(pastureid, tx)
  153. if err != nil {
  154. appG.Response(http.StatusOK, e.ERROR, false)
  155. return
  156. }
  157. }()
  158. wg.Wait()
  159. wg.Add(1)
  160. go func() {
  161. defer wg.Done()
  162. fpdetailWeightList, err = getFpdetail(pastureid, tx)
  163. if err != nil {
  164. appG.Response(http.StatusOK, e.ERROR, false)
  165. return
  166. }
  167. for _, fpd := range *fpdetailWeightList {
  168. for _, lpp := range *lpplanlist {
  169. if (lpp.Ftid == fpd.Ptid || lpp.Ftid == fpd.Ptsid) && lpp.Times == fpd.Times {
  170. fpd.Weight = fpd.Weight - (lpp.Maxweight - lpp.Lweight)
  171. }
  172. }
  173. }
  174. }()
  175. wg.Wait()
  176. // 避免车次数量为0造成死循环
  177. max := false
  178. for _, tmr := range *tmrlist {
  179. if tmr.Maxstirfeed > 0 {
  180. max = true
  181. break
  182. }
  183. }
  184. for i := 1; i <= times; i++ {
  185. count, err := getLpplanCount(tx, i, pastureid)
  186. if err != nil {
  187. appG.Response(http.StatusOK, e.ERROR, false)
  188. return
  189. }
  190. for _, tem := range *feedtempletlist {
  191. for _, fpd := range *fpdetailWeightList {
  192. if tem.Id == fpd.Temid && i == int(fpd.Times) {
  193. var ftid int64
  194. if fpd.Ptid != 0 {
  195. ftid = fpd.Ptid
  196. } else {
  197. ftid = fpd.Ptsid
  198. }
  199. for fpd.Weight > 0 && max {
  200. for _, tmr := range *tmrlist {
  201. if tmr.Maxstirfeed > 0 {
  202. count++
  203. ids, err := setting.SnowIds.NextId()
  204. if err != nil {
  205. ids = time.Now().UnixNano()
  206. logging.Info("create SnowIds err", err)
  207. }
  208. display := tem.Cname
  209. if i == 1 {
  210. display += "第一班"
  211. } else if i == 2 {
  212. display += "第二班"
  213. } else if i == 3 {
  214. display += "第三班"
  215. } else if i == 4 {
  216. display += "第四班"
  217. }
  218. lpplan := &lpplanStruct{
  219. Id: ids,
  220. Tmrname: tmr.Tname,
  221. Tmrid: tmr.Id,
  222. Sort: count,
  223. Sel: 1,
  224. Times: int64(i),
  225. Ftname: tem.Cname,
  226. Ftid: ftid,
  227. Maxweight: tmr.Maxstirfeed,
  228. Sumweight: 0,
  229. Sumcowcount: 0,
  230. Pastureid: pastureid,
  231. Display: display,
  232. }
  233. err = addLpplan(lpplan, tx)
  234. if err != nil {
  235. appG.Response(http.StatusOK, e.ERROR, false)
  236. return
  237. }
  238. fpd.Weight = fpd.Weight - tmr.Maxstirfeed
  239. }
  240. if fpd.Weight < 0 {
  241. break
  242. }
  243. }
  244. }
  245. }
  246. }
  247. }
  248. }
  249. // wg.Wait()
  250. err = autogeneration(typeIN, pastureid, tx)
  251. if err != nil {
  252. appG.Response(http.StatusOK, e.ERROR, false)
  253. return
  254. }
  255. appG.Response(http.StatusOK, e.SUCCESS, true)
  256. }
  257. //查看配方模板
  258. func getfeedtemplet(pastureid string, tx *xorm.Session) (*[]*feedtemplet, error) {
  259. data := make([]*feedtemplet, 0)
  260. err := tx.Table("feedtemplet").Select("id,ccname,tname").Where("pastureid = ? ", pastureid).Find(&data)
  261. if err != nil {
  262. log.Println("getfeedtemplet-error", err)
  263. return nil, err
  264. }
  265. return &data, nil
  266. }
  267. //查看tmr设备
  268. func gettmr(pastureid string, tx *xorm.Session) (*[]*tmrStruct, error) {
  269. data := make([]*tmrStruct, 0)
  270. session := tx.Table("tmr")
  271. session.Select("TRIM(id) id,tname,maxstirfeed")
  272. session.Where("pastureid = ? ", pastureid)
  273. session.Where("enable = 1")
  274. session.In("tclassid", "1,2,3")
  275. err := session.Find(&data)
  276. if err != nil {
  277. log.Println("gettmr-error", err)
  278. return nil, err
  279. }
  280. return &data, nil
  281. }
  282. //判断计划种是否有该车次
  283. func getLpplanExist(tmrid, ftid int64, times int, pastureid string, tx *xorm.Session) (bool, error) {
  284. session := tx.Table("lpplan")
  285. session.Where("pastureid = ? ", pastureid)
  286. session.Where("times = ? ", times)
  287. session.Where("tmrid = ? ", tmrid)
  288. session.Where("ftid = ? ", ftid)
  289. exist, err := session.Exist()
  290. if err != nil {
  291. log.Println("getLpplanExist-error", err)
  292. return false, err
  293. }
  294. return exist, nil
  295. }
  296. type fpdetailWeight struct {
  297. Times int64 `xorm:"times"`
  298. Weight float64 `xorm:"weight"`
  299. Pastureid int64 `xorm:"pastureid"`
  300. Ptid int64 `xorm:"ptid"`
  301. Ptsid int64 `xorm:"ptsid"`
  302. Cowcount int64 `xorm:"cowcount"`
  303. Temid int64 `xorm:"Temid"`
  304. }
  305. //获取料数量
  306. func getFpdetail(pastureid string, tx *xorm.Session) (*[]*fpdetailWeight, error) {
  307. fpdetaillist := make([]*fpdetailWeight, 0)
  308. err := tx.SQL(` select t1.temid,t1.times,ifnull(t2.weight,0)+sum(t1.weight) as weight ,TRIM(t1.pastureid) pastureid,TRIM(t1.ptid) ptid,TRIM(t1.ptsid ) ptsid ,t1.cowcount from (SELECT fpd.id,ft.id as temid,fpd.times, ROUND((1-fpd.ptsrate)*fpd.weight,2)-fpd.ptuse weight,TRIM(fpd.pastureid) pastureid,TRIM(fpd.ptid) ptid,TRIM(fpd.ptsid ) ptsid ,fpd.cowcount FROM fpdetail fpd
  309. join feedp fp on fp.ftid = fpd.ptid and fp.pastureid = fpd.pastureid
  310. inner join feedtemplet ft on ft.id = fp.ftid and ft.pastureid = fpd.pastureid
  311. WHERE fpd.pastureid = ? AND fpd.ptuse<ROUND((1-fpd.ptsrate)*fpd.weight,2) and fpd.ptid > 0
  312. group by fpd.id,fpd.times) t1
  313. left join ( select t1.id,t1.temid as temid, t1.times,sum(t1.weight) weight,TRIM(t1.pastureid) pastureid,TRIM(t1.ptid) ptid,TRIM(t1.ptsid ) ptsid ,
  314. t1.cowcount from (SELECT fpd.id,ft.id as temid, fpd.times,ROUND(fpd.ptsrate*fpd.weight,2)-fpd.ptsuse weight,TRIM(fpd.pastureid) pastureid,TRIM(fpd.ptid) ptid,TRIM(fpd.ptsid ) ptsid ,
  315. cowcount FROM fpdetail fpd
  316. join feedp fp on fp.ptsfid = fpd.ptsid and fp.pastureid = fpd.pastureid
  317. inner join feedtemplet ft on ft.id = fp.ftid and ft.pastureid = fpd.pastureid
  318. WHERE fpd.pastureid = ? AND fpd.ptsuse< ROUND(fpd.ptsrate*fpd.weight,2) and fpd.ptsid > 0
  319. group by fpd.id,fpd.times) t1
  320. group by t1.temid,t1.times) t2 on t2.temid = t1.temid and t2.times = t1.times
  321. group by t1.temid,t1.times
  322. `, pastureid, pastureid).Find(&fpdetaillist)
  323. if err != nil {
  324. log.Println("getFpdetail-error", err)
  325. tx.Rollback()
  326. return nil, err
  327. }
  328. return &fpdetaillist, nil
  329. }
  330. type lpplanList struct {
  331. Tmrid int64 `xorm:"tmrid"`
  332. Times int64 `xorm:"times"`
  333. Ftid int64 `xorm:"ftid"`
  334. Maxweight float64 `xorm:"maxweight"`
  335. Lweight float64 `xorm:"lweight"`
  336. }
  337. func getLpplanlist(patsureid string, tx *xorm.Session) (*[]*lpplanList, error) {
  338. session := tx.SQL(` select t1.times,t1.tmrid,t1.ftid,t1.maxweight ,ifnull(t2.lweight,0)as lweight from lpplan t1
  339. left join ( select ifnull(sum(lweight),0) as lweight,lppid from lpplandtl1 where pastureid =? GROUP BY lppid) t2 on t1.id = t2.lppid
  340. where t1.pastureid = ? `, patsureid, patsureid)
  341. data := make([]*lpplanList, 0)
  342. err := session.Find(&data)
  343. if err != nil {
  344. log.Println("getLpplanlist-error", err)
  345. return nil, err
  346. }
  347. return &data, nil
  348. }
  349. // 添加车次计划
  350. func addLpplan(lpplan *lpplanStruct, tx *xorm.Session) error {
  351. _, err := tx.Table("lpplan").Insert(lpplan)
  352. if err != nil {
  353. log.Println("addLpplan-error", err)
  354. return err
  355. }
  356. return nil
  357. }
  358. //获取车次数量
  359. func getLpplanCount(tx *xorm.Session, times int, pastureid string) (int64, error) {
  360. count, err := tx.Table("lpplan").Where("times = ?", times).And("pastureid = ?", pastureid).Count()
  361. if err != nil {
  362. log.Println("getLpplanCount-error", err)
  363. return 0, err
  364. }
  365. return count, err
  366. }
  367. //获取班次信息
  368. func gettimes(pastureid string, tx *xorm.Session) (int, error) {
  369. session := tx.Table("sysopt")
  370. session.Where("pastureid = ? ", pastureid)
  371. session.Where("inforname = 'times' ")
  372. data := new(sysopt)
  373. _, err := session.Get(data)
  374. if err != nil {
  375. log.Println("gettimes-error", err)
  376. return 0, err
  377. }
  378. return data.Inforvalue, nil
  379. }
  380. type upfpdetail struct {
  381. insertlweight float64
  382. fttypeid int64
  383. fpdid int64
  384. }
  385. func autogeneration(typeIN int64, pastureid string, tx *xorm.Session) error {
  386. tx.Begin()
  387. if typeIN == 1 {
  388. _, err := tx.SQL(`DELETE FROM lpplandtl1 WHERE pastureid = ?`, pastureid).Execute()
  389. if err != nil {
  390. log.Println("autogeneration-error-1", err)
  391. tx.Rollback()
  392. return err
  393. }
  394. _, err = tx.SQL(`update fpdetail
  395. set ptuse = 0,ptsuse=0
  396. WHERE pastureid = ?`, pastureid).Execute()
  397. if err != nil {
  398. log.Println("autogeneration-error-2", err)
  399. tx.Rollback()
  400. return err
  401. }
  402. }
  403. lpplansession := tx.SQL(`select
  404. t1.sort,t1.tmrid,t1.tmrname,t1.ftid,
  405. t1.pastureid,t1.id ,t1.maxweight,ifnull(t2.lweight,0) as lweight,t1.times from lpplan t1
  406. left join ( select ifnull(sum(lweight),0) as lweight,lppid from lpplandtl1 where pastureid =? GROUP BY lppid) t2 on t1.id = t2.lppid
  407. where t1.pastureid = ? and t1.maxweight > ifnull(t2.lweight,0) `, pastureid, pastureid)
  408. lpplanlist := make([]*lpplanQueryInfo, 0)
  409. err := lpplansession.Find(&lpplanlist)
  410. if err != nil {
  411. log.Println("autogeneration-error-3", err)
  412. tx.Rollback()
  413. return err
  414. }
  415. fpdetaillist := make([]*fpdetailQueryInfo, 0)
  416. err = tx.SQL(`SELECT ft.tcolor background,fpd.ptid,ft.fttypeid,fpd.cowcount,fpd.ccountradio,fpd.id as fpdid,times,tratio,ROUND((1-fpd.ptsrate)*fpd.weight,2)-fpd.ptuse weight,TRIM(fpd.barid) barid,TRIM(fpd.pastureid) pastureid,TRIM(fpd.ptid) ptid,TRIM(fpd.ptsid ) ptsid ,
  417. (select bname from bar where pastureid =fpd.pastureid and id = fpd.barid ) barname,cowcount,ccountradio,0 isfill FROM fpdetail fpd
  418. join feedp fp on fp.ftid = fpd.ptid and fp.pastureid = fpd.pastureid
  419. inner join feedtemplet ft on ft.id = fp.ftid and ft.pastureid = fpd.pastureid
  420. WHERE fpd.pastureid = ? AND ptuse<ROUND((1-fpd.ptsrate)*fpd.weight,2)
  421. group by fpd.id , fpd.times `, pastureid).Find(&fpdetaillist)
  422. if err != nil {
  423. log.Println("autogeneration-error-4", err)
  424. tx.Rollback()
  425. return err
  426. }
  427. log.Println(time.Now(), "333333333333")
  428. var wg sync.WaitGroup
  429. for _, lpplan := range lpplanlist {
  430. lpplandtl1List := make([]*lpplandtl1, 0)
  431. upfpdetailList := make([]*upfpdetail, 0)
  432. for _, fpdetail := range fpdetaillist {
  433. if fpdetail.Ptid == lpplan.Ftid && fpdetail.Times == lpplan.Times {
  434. var weight float64
  435. weight = fpdetail.Weight
  436. if lpplan.Maxweight <= lpplan.Lweight || weight <= 0 {
  437. continue
  438. }
  439. var insertlweight float64
  440. if lpplan.Maxweight-lpplan.Lweight > weight {
  441. insertlweight = weight
  442. } else {
  443. insertlweight = lpplan.Maxweight - lpplan.Lweight
  444. }
  445. lpplan.Lweight += insertlweight
  446. lpplan.Lweighthis = insertlweight
  447. exist := false
  448. for _, up := range upfpdetailList {
  449. if up.fpdid == fpdetail.Fpdid {
  450. up.insertlweight += insertlweight
  451. exist = true
  452. break
  453. }
  454. }
  455. if !exist {
  456. upfpdetailList = append(upfpdetailList, &upfpdetail{
  457. fpdid: fpdetail.Fpdid,
  458. insertlweight: insertlweight,
  459. fttypeid: fpdetail.Fttypeid,
  460. })
  461. }
  462. fpdetail.Weight = fpdetail.Weight - insertlweight
  463. exist = false
  464. for _, lpplandtl1 := range lpplandtl1List {
  465. if lpplandtl1.Lppid == lpplan.Lppid && lpplan.Pastureid == lpplandtl1.Pastureid && lpplandtl1.Fttype == fpdetail.Fttypeid && lpplandtl1.Fpdid == fpdetail.Fpdid {
  466. lpplandtl1.Lweight += insertlweight
  467. lpplandtl1.Lweighthis = insertlweight
  468. exist = true
  469. break
  470. }
  471. }
  472. if !exist {
  473. lpplandtl1List = append(lpplandtl1List, &lpplandtl1{
  474. Pastureid: lpplan.Pastureid,
  475. Lppid: lpplan.Lppid,
  476. Barid: fpdetail.Barid,
  477. Barname: fpdetail.Barname,
  478. Fpdid: fpdetail.Fpdid,
  479. Fttype: fpdetail.Fttypeid,
  480. Lweight: insertlweight,
  481. Sort: lpplan.Sort,
  482. Tmrid: lpplan.Tmrid,
  483. Tmrname: lpplan.Tmrname,
  484. Cowcount: lpplan.Cowcount,
  485. Ccountradio: lpplan.Ccountradio,
  486. Background: fpdetail.Background,
  487. Lweighthis: insertlweight,
  488. })
  489. }
  490. }
  491. }
  492. for _, lpplpplandtl1 := range lpplandtl1List {
  493. wg.Add(1)
  494. go func(lpplpplandtl1 *lpplandtl1) {
  495. defer wg.Done()
  496. _, err = tx.SQL(`insert into lpplandtl1(pastureid,lppid,barid,barname,fpdid,fttype,lweight,sort,tmrid,tmrname,
  497. cowcount,ccountradio,background,lweighthis)
  498. value(?,?,?,?,?,?,?,?,?,?,?,?,?,?)
  499. ON DUPLICATE KEY UPDATE lweight = lweight + lweight, lweighthis=lweighthis`, lpplpplandtl1.Pastureid,
  500. lpplpplandtl1.Lppid,
  501. lpplpplandtl1.Barid,
  502. lpplpplandtl1.Barname,
  503. lpplpplandtl1.Fpdid,
  504. lpplpplandtl1.Fttype,
  505. lpplpplandtl1.Lweight,
  506. lpplpplandtl1.Sort,
  507. lpplpplandtl1.Tmrid,
  508. lpplpplandtl1.Tmrname,
  509. lpplpplandtl1.Cowcount,
  510. lpplpplandtl1.Ccountradio,
  511. lpplpplandtl1.Background,
  512. lpplpplandtl1.Lweighthis).Execute()
  513. if err != nil {
  514. log.Println("autogeneration-error-6", err)
  515. tx.Rollback()
  516. return
  517. }
  518. }(lpplpplandtl1)
  519. }
  520. wg.Wait()
  521. for _, up := range upfpdetailList {
  522. wg.Add(1)
  523. go func(up *upfpdetail) {
  524. defer wg.Done()
  525. _, err = tx.SQL(` UPDATE fpdetail SET ptuse=IF(?=1,IF(ptuse+? <0,0,ptuse+?),ptuse),ptsuse=IF(?=0,IF(ptsuse+?<0,0,ptsuse+?),ptsuse)
  526. WHERE pastureid=? AND id=? `, up.fttypeid, up.insertlweight, up.insertlweight, up.fttypeid, up.insertlweight, up.insertlweight, pastureid, up.fpdid).Execute()
  527. if err != nil {
  528. log.Println("autogeneration-error-5", err)
  529. tx.Rollback()
  530. return
  531. }
  532. }(up)
  533. }
  534. wg.Wait()
  535. }
  536. if typeIN == 1 {
  537. _, err = tx.SQL("update lpplan set sel = 1 where pastureid = ?", pastureid).Execute()
  538. if err != nil {
  539. log.Println("autogeneration-error-10", err)
  540. return err
  541. }
  542. }
  543. supplement := tx.Table("fpdetail").Alias("fpd")
  544. supplement.Select("ft.tcolor background,fpd.id as fpdid,fpd.barid,ft.id as temid, fpd.times,ROUND(fpd.ptsrate*fpd.weight,2)-fpd.ptsuse weight,TRIM(fpd.pastureid) pastureid,TRIM(fpd.ptid) ptid,TRIM(fpd.ptsid ) ptsid ,cowcount")
  545. supplement.Join("inner", []string{"feedp", "fp"}, "fp.ptsfid = fpd.ptsid").And("fp.pastureid = fpd.pastureid")
  546. supplement.Join("inner", []string{"feedtemplet", "ft"}, "ft.id = fp.ftid").And("ft.pastureid = fpd.pastureid")
  547. supplement.Where("fpd.pastureid = ?", pastureid).And("fpd.ptsuse< ROUND(fpd.ptsrate*fpd.weight,2)").And("fpd.ptsid > 0")
  548. supplement.GroupBy("fpd.id,fpd.times")
  549. supplementList := make([]*fpdetailQueryInfo, 0)
  550. err = supplement.Find(&supplementList)
  551. if err != nil {
  552. log.Println("autogeneration-error-11", err)
  553. return err
  554. }
  555. if len(supplementList) > 0 {
  556. for _, lpplan := range lpplanlist {
  557. if lpplan.Maxweight <= lpplan.Lweight {
  558. continue
  559. }
  560. lppids := []string{strconv.FormatInt(lpplan.Lppid, 10)}
  561. for _, lpp := range lpplanlist {
  562. if lpp.Ftid == lpplan.Ftid && lpp.Times == lpplan.Times {
  563. lppids = append(lppids, strconv.FormatInt(lpp.Lppid, 10))
  564. }
  565. }
  566. lpplandtl1List := make([]*lpplandtl1, 0)
  567. upfpdetailList := make([]*upfpdetail, 0)
  568. lpplandtllist := make([]*lpplandtl1, 0)
  569. err = tx.Table("lpplandtl1").Select("barid").Where(fmt.Sprintf("lppid in (%s)", strings.Join(lppids, ","))).And("").Find(&lpplandtllist)
  570. if err != nil {
  571. log.Println("autogeneration-error-11", err)
  572. return err
  573. }
  574. for _, fpdetail := range supplementList {
  575. if lpplan.Times != fpdetail.Times {
  576. continue
  577. }
  578. exist := false
  579. for _, bar := range lpplandtllist {
  580. if bar.Barid == fpdetail.Barid {
  581. exist = true
  582. break
  583. }
  584. }
  585. if !exist {
  586. continue
  587. }
  588. var weight float64
  589. weight = fpdetail.Weight
  590. if weight <= 0 {
  591. continue
  592. }
  593. var insertlweight float64
  594. if lpplan.Maxweight-lpplan.Lweight > weight {
  595. insertlweight = weight
  596. } else {
  597. insertlweight = lpplan.Maxweight - lpplan.Lweight
  598. }
  599. lpplan.Lweight += insertlweight
  600. lpplan.Lweighthis = insertlweight
  601. exist = false
  602. for _, up := range upfpdetailList {
  603. if up.fpdid == fpdetail.Fpdid {
  604. up.insertlweight += insertlweight
  605. exist = true
  606. break
  607. }
  608. }
  609. if !exist {
  610. upfpdetailList = append(upfpdetailList, &upfpdetail{
  611. fpdid: fpdetail.Fpdid,
  612. insertlweight: insertlweight,
  613. fttypeid: 0,
  614. })
  615. }
  616. fpdetail.Weight = fpdetail.Weight - insertlweight
  617. exist = false
  618. for _, lpplandtl1 := range lpplandtl1List {
  619. if lpplandtl1.Lppid == lpplan.Lppid && lpplan.Pastureid == lpplandtl1.Pastureid && lpplandtl1.Fttype == fpdetail.Fttypeid && lpplandtl1.Fpdid == fpdetail.Fpdid {
  620. lpplandtl1.Lweight += insertlweight
  621. lpplandtl1.Lweighthis = insertlweight
  622. exist = true
  623. break
  624. }
  625. }
  626. if !exist {
  627. lpplandtl1List = append(lpplandtl1List, &lpplandtl1{
  628. Pastureid: lpplan.Pastureid,
  629. Lppid: lpplan.Lppid,
  630. Barid: fpdetail.Barid,
  631. Barname: fpdetail.Barname,
  632. Fpdid: fpdetail.Fpdid,
  633. Fttype: 0,
  634. Lweight: insertlweight,
  635. Sort: lpplan.Sort,
  636. Tmrid: lpplan.Tmrid,
  637. Tmrname: lpplan.Tmrname,
  638. Cowcount: lpplan.Cowcount,
  639. Ccountradio: lpplan.Ccountradio,
  640. Background: fpdetail.Background,
  641. Lweighthis: insertlweight,
  642. })
  643. }
  644. }
  645. for _, lpplpplandtl1 := range lpplandtl1List {
  646. wg.Add(1)
  647. go func(lpplpplandtl1 *lpplandtl1) {
  648. defer wg.Done()
  649. _, err = tx.SQL(`insert into lpplandtl1(pastureid,lppid,barid,barname,fpdid,fttype,lweight,sort,tmrid,tmrname,
  650. cowcount,ccountradio,background,lweighthis)
  651. value(?,?,?,?,?,?,?,?,?,?,?,?,?,?)
  652. ON DUPLICATE KEY UPDATE lweight = lweight + lweight, lweighthis=lweighthis`, lpplpplandtl1.Pastureid,
  653. lpplpplandtl1.Lppid,
  654. lpplpplandtl1.Barid,
  655. lpplpplandtl1.Barname,
  656. lpplpplandtl1.Fpdid,
  657. lpplpplandtl1.Fttype,
  658. lpplpplandtl1.Lweight,
  659. lpplpplandtl1.Sort,
  660. lpplpplandtl1.Tmrid,
  661. lpplpplandtl1.Tmrname,
  662. lpplpplandtl1.Cowcount,
  663. lpplpplandtl1.Ccountradio,
  664. lpplpplandtl1.Background,
  665. lpplpplandtl1.Lweighthis).Execute()
  666. if err != nil {
  667. log.Println("autogeneration-error-6", err)
  668. tx.Rollback()
  669. return
  670. }
  671. }(lpplpplandtl1)
  672. }
  673. wg.Wait()
  674. for _, up := range upfpdetailList {
  675. wg.Add(1)
  676. go func(up *upfpdetail) {
  677. defer wg.Done()
  678. _, err = tx.SQL(` UPDATE fpdetail SET ptuse=IF(?=1,IF(ptuse+? <0,0,ptuse+?),ptuse),ptsuse=IF(?=0,IF(ptsuse+?<0,0,ptsuse+?),ptsuse)
  679. WHERE pastureid=? AND id=? `, up.fttypeid, up.insertlweight, up.insertlweight, up.fttypeid, up.insertlweight, up.insertlweight, pastureid, up.fpdid).Execute()
  680. if err != nil {
  681. log.Println("autogeneration-error-5", err)
  682. tx.Rollback()
  683. // return err
  684. return
  685. }
  686. }(up)
  687. }
  688. wg.Wait()
  689. }
  690. }
  691. err = tx.Commit()
  692. if err != nil {
  693. log.Println("autogeneration-error-11", err)
  694. return err
  695. }
  696. return nil
  697. }
  698. func GetSpillage(c *gin.Context) {
  699. appG := app.Gin{C: c}
  700. dataByte, _ := ioutil.ReadAll(c.Request.Body)
  701. fsion := gofasion.NewFasion(string(dataByte))
  702. parammaps := fsion.Get("parammaps")
  703. pastureid := parammaps.Get("pastureid").ValueInt64()
  704. times := parammaps.Get("times").ValueInt64()
  705. ftid := parammaps.Get("ftid").ValueDefaultInt64(0)
  706. // refresh 0 全部 , 1 车次信息, 2 班次
  707. refresh := parammaps.Get("refresh").ValueInt64()
  708. tx := restful.Engine.NewSession()
  709. defer tx.Close()
  710. data := make(map[string]interface{})
  711. if refresh == 0 || refresh == 2 {
  712. sqlStr := `SELECT trim(feedp.pastureid) pastureid,barname,trim(barid) barid,trim(ftid) arrid,1 as type,? as times,ft.tname ftname,ft.tcolor background,0 isfill FROM feedp
  713. inner join feedtemplet ft
  714. on ft.id = feedp.ftid and ft.pastureid=?
  715. WHERE feedp.pastureid = ? %s
  716. GROUP BY feedp.ftid
  717. UNION
  718. SELECT trim(feedp.pastureid) pastureid,barname,barid,trim(ptsfid) arrid,0 as type,? as times,ft.tname ptsfname ,ft.tcolor background,1 isfill FROM feedp
  719. inner join feedtemplet ft
  720. on ft.id = feedp.ptsfid and ft.pastureid=?
  721. WHERE feedp.pastureid = ? %s and (SELECT inforvalue FROM sysopt WHERE sysopt.pastureid=feedp.pastureid AND sysopt.inforname= 'isEnableSupplyFeed') = 1
  722. GROUP BY feedp.ptsfid`
  723. // SELECT TRIM(id) id,times,tratio,ROUND(ptsrate*weight,2)-ptsuse weight,TRIM(barid) barid,TRIM(pastureid) pastureid,TRIM(ptid) ptid,TRIM(ptsid ) ptsid ,
  724. // (select bname from bar where pastureid =fpdetail.pastureid and id = fpdetail.barid ) barname,
  725. // ? AS background,? AS fttype,cowcount,ccountradio, 1 isfill FROM fpdetaildate fpdetail
  726. // WHERE fpdetail.pastureid = ? AND ( fpdetail.`ptsid`=?) AND times=? AND ptsuse< ROUND(ptsrate*weight,2) and fpdetail.date = ?
  727. // UNION
  728. // SELECT TRIM(id) id,times,tratio,ROUND((1-ptsrate)*weight,2)-ptuse weight,TRIM(barid) barid,TRIM(pastureid) pastureid,TRIM(ptid) ptid,TRIM(ptsid ) ptsid ,
  729. // (select bname from bar where pastureid =fpdetail.pastureid and id = fpdetail.barid ) barname,
  730. // ? AS background,? AS fttype,cowcount,ccountradio, 0 isfill FROM fpdetaildate fpdetail
  731. // WHERE fpdetail.pastureid = ? AND (fpdetail.`ptid`=? ) AND times=? AND ptuse<ROUND((1-ptsrate)*weight,2) and fpdetail.date = ?
  732. // ORDER BY barid
  733. if ftid != 0 {
  734. sqlStr = fmt.Sprintf(sqlStr, fmt.Sprintf(" and ft.id = %d ", ftid), fmt.Sprintf(" and ft.id = %d ", ftid))
  735. } else {
  736. sqlStr = fmt.Sprintf(sqlStr, "", "")
  737. }
  738. ftList, err := tx.SQL(sqlStr, times, pastureid, pastureid, times, pastureid, pastureid).Query().List()
  739. if err != nil {
  740. log.Println("GetSpillage-error-1: ", err)
  741. appG.Response(http.StatusOK, e.ERROR, nil)
  742. return
  743. }
  744. ftDetailList, err := tx.SQL(`SELECT TRIM(id) id,times,tratio,ROUND(ptsrate*weight,2)-ptsuse weight,TRIM(barid) barid,TRIM(pastureid) pastureid,TRIM(ptid) ptid,TRIM(ptsid ) ptsid ,
  745. (select bname from bar where pastureid =fpdetail.pastureid and id = fpdetail.barid ) barname,0 AS fttype,cowcount,ccountradio,1 isfill FROM fpdetail
  746. WHERE fpdetail.pastureid = ? AND times=? AND ptsuse< ROUND(ptsrate*weight,2)
  747. UNION
  748. SELECT TRIM(id) id,times,tratio,ROUND((1-ptsrate)*weight,2)-ptuse weight,TRIM(barid) barid,TRIM(pastureid) pastureid,TRIM(ptid) ptid,TRIM(ptsid ) ptsid ,
  749. (select bname from bar where pastureid =fpdetail.pastureid and id = fpdetail.barid ) barname,1 AS fttype,cowcount,ccountradio,0 isfill FROM fpdetail
  750. WHERE fpdetail.pastureid = ? AND times=? AND ptuse<ROUND((1-ptsrate)*weight,2)
  751. ORDER BY barid`, pastureid, times, pastureid, times).Query().List()
  752. if err != nil {
  753. log.Println("GetSpillage-error-2: ", err)
  754. appG.Response(http.StatusOK, e.ERROR, nil)
  755. return
  756. }
  757. for _, ft := range ftList {
  758. arrList := make([]map[string]interface{}, 0)
  759. arrid := ft["arrid"].(string)
  760. for _, detail := range ftDetailList {
  761. if _, ok := detail["ptid"]; ok {
  762. if arrid == detail["ptid"].(string) && ft["isfill"].(int64) == detail["isfill"].(int64) {
  763. detail["background"] = ft["background"]
  764. arrList = append(arrList, detail)
  765. }
  766. } else if _, ok := detail["ptsid"]; ok {
  767. if arrid == detail["ptsid"].(string) && ft["isfill"].(int64) == detail["isfill"].(int64) {
  768. detail["background"] = ft["background"]
  769. arrList = append(arrList, detail)
  770. }
  771. }
  772. }
  773. if len(arrList) > 0 {
  774. ft["arrList"] = arrList
  775. }
  776. }
  777. data["ftlist"] = ftList
  778. }
  779. if refresh == 0 || refresh == 1 {
  780. sqlstr := `SELECT
  781. ifnull((select eqcode from tmr where pastureid =lpplan.pastureid and id = lpplan.tmrid ),lpplan.tmrname) tmrname,trim(tmrid) tmrid,sort,sel,
  782. CASE times
  783. WHEN 1 THEN
  784. '第一班'
  785. WHEN 2 THEN
  786. '第二班'
  787. WHEN 3 THEN
  788. '第三班'
  789. WHEN 4 THEN
  790. '第四班'
  791. END timesstr,issplit,
  792. times,display,begintime,
  793. (select tname from feedtemplet where pastureid =lpplan.pastureid and id = lpplan.ftid ) ftname,sumcowcount,
  794. IFNULL(round((SELECT SUM(lpplandtl1.lweight) FROM lpplandtl1
  795. inner join fpdetail
  796. on lpplandtl1.fpdid= fpdetail.id and lpplandtl1.pastureid = fpdetail.pastureid
  797. WHERE lpplandtl1.lppid=lpplan.id and lpplandtl1.pastureid =lpplan.pastureid ),2),0) sumweight ,
  798. ifnull((select maxstirfeed from tmr where pastureid =lpplan.pastureid and id = lpplan.tmrid ),100000) maxweight,
  799. TRIM(ftid) ftid,
  800. TRIM(id) id,
  801. TRIM(id) lppid,
  802. TRIM(pastureid) pastureid
  803. FROM
  804. lpplan
  805. WHERE pastureid = ? and times <= (SELECT sysopt.inforvalue FROM sysopt
  806. WHERE sysopt.pastureid= lpplan.pastureid AND sysopt.inforname='times')
  807. `
  808. arrsql := `SELECT
  809. trim(lpplandtl1.lppid) lppid,lweight,
  810. lpplandtl1.lweight weight,lpplandtl1.sort,
  811. (select bname from bar where pastureid =lpplandtl1.pastureid and id = lpplandtl1.barid ) barname,
  812. TRIM(lpplandtl1.fpdid) fpdid,
  813. TRIM(lpplandtl1.barid) barid,
  814. TRIM(lpplandtl1.id) id,
  815. TRIM(lpplandtl1.pastureid) pastureid,
  816. (SELECT tcolor FROM feedtemplet WHERE pastureid =lpplandtl1.pastureid AND id = IF(lpplandtl1.fttype=1,fpdetail.ptid,fpdetail.ptsid) ) background,
  817. lpplandtl1.fttype,
  818. trim(lpplandtl1.tmrid) tmrid,
  819. ifnull((select eqcode from tmr where pastureid =lpplandtl1.pastureid and id = lpplandtl1.tmrid ),lpplandtl1.tmrname) tmrname,
  820. ifnull((select tcolor from tmr where pastureid =lpplandtl1.pastureid and id = lpplandtl1.tmrid ),'#ccc') tbackground,
  821. fpdetail.ptid,
  822. fpdetail.ptsid,
  823. fpdetail.times,
  824. fpdetail.cowcount,
  825. fpdetail.ccountradio
  826. FROM
  827. lpplandtl1
  828. inner join fpdetail
  829. on lpplandtl1.fpdid= fpdetail.id and lpplandtl1.pastureid = fpdetail.pastureid
  830. WHERE lpplandtl1.pastureid = ? and lpplandtl1.lweight>0
  831. `
  832. var args []interface{}
  833. args = append(args, pastureid)
  834. if times != 0 {
  835. sqlstr += " and times = ? "
  836. arrsql += " and times = ? "
  837. args = append(args, times)
  838. }
  839. sqlstr += "ORDER BY times,lpplan.sort"
  840. session := tx.SQL(sqlstr, args...)
  841. lppList, err := session.Query().List()
  842. if err != nil {
  843. log.Println("GetSpillage-error-3: ", err)
  844. appG.Response(http.StatusOK, e.ERROR, nil)
  845. return
  846. }
  847. arrsql += " ORDER BY lpplandtl1.sort"
  848. arrList, err := tx.SQL(arrsql, args...).QueryString() //获取
  849. if err != nil {
  850. log.Println("GetSpillage-error-4: ", err)
  851. appG.Response(http.StatusOK, e.ERROR, nil)
  852. return
  853. }
  854. for _, query := range lppList {
  855. list := make([]map[string]string, 0)
  856. for _, arr := range arrList {
  857. if query["lppid"].(string) == arr["lppid"] {
  858. list = append(list, arr)
  859. }
  860. }
  861. query["arrList"] = list
  862. }
  863. data["list"] = lppList
  864. data["total"] = len(lppList)
  865. }
  866. appG.Response(http.StatusOK, e.SUCCESS, data)
  867. }
  868. type lpplanTrains struct {
  869. Id string `xorm:"id"`
  870. Sort int64 `xorm:"sort"`
  871. Pastureid string `xorm:"pastureid"`
  872. }
  873. //修改车次顺序
  874. func UpdateTrains(c *gin.Context) {
  875. appG := app.Gin{C: c}
  876. dataByte, _ := ioutil.ReadAll(c.Request.Body)
  877. lppList := make([]*lpplanTrains, 0)
  878. err := json.Unmarshal(dataByte, &lppList)
  879. if err != nil {
  880. log.Println("UpdateTrains-error-1: ", err)
  881. appG.Response(http.StatusBadRequest, e.INVALID_PARAMS, err)
  882. return
  883. }
  884. tx := restful.Engine.NewSession()
  885. defer tx.Close()
  886. tx.Begin()
  887. for _, item := range lppList {
  888. _, err = tx.Table("lpplan").Where("id = ?", item.Id).And("pastureid = ? ", item.Pastureid).Update(item)
  889. if err != nil {
  890. log.Println("UpdateTrains-error-2: ", err)
  891. appG.Response(http.StatusInternalServerError, e.ERROR, err)
  892. tx.Rollback()
  893. return
  894. }
  895. }
  896. err = tx.Commit()
  897. if err != nil {
  898. log.Println("UpdateTrains-error-2: ", err)
  899. appG.Response(http.StatusInternalServerError, e.ERROR, err)
  900. tx.Rollback()
  901. return
  902. }
  903. appG.Response(http.StatusOK, e.SUCCESS, true)
  904. }
  905. func UpdateTrainsDay(c *gin.Context) {
  906. appG := app.Gin{C: c}
  907. dataByte, _ := ioutil.ReadAll(c.Request.Body)
  908. lppList := make([]*lpplanTrains, 0)
  909. err := json.Unmarshal(dataByte, &lppList)
  910. if err != nil {
  911. log.Println("UpdateTrainsDay-error-1: ", err)
  912. appG.Response(http.StatusBadRequest, e.INVALID_PARAMS, err)
  913. return
  914. }
  915. tx := restful.Engine.NewSession()
  916. defer tx.Close()
  917. tx.Begin()
  918. for _, item := range lppList {
  919. _, err = tx.Table("lpplandate").Where("id = ?", item.Id).And("pastureid = ? ", item.Pastureid).Update(item)
  920. if err != nil {
  921. log.Println("UpdateTrainsDay-error-2: ", err)
  922. appG.Response(http.StatusInternalServerError, e.ERROR, err)
  923. tx.Rollback()
  924. return
  925. }
  926. }
  927. err = tx.Commit()
  928. if err != nil {
  929. log.Println("UpdateTrainsDay-error-3: ", err)
  930. appG.Response(http.StatusInternalServerError, e.ERROR, err)
  931. tx.Rollback()
  932. return
  933. }
  934. appG.Response(http.StatusOK, e.SUCCESS, true)
  935. }
  936. type ReqAddLpplan struct {
  937. Id string `xorm:"id"`
  938. Tmrid string `xorm:"tmrid"`
  939. TmrName string `xorm:"tmrname"`
  940. Sort int64 `xorm:"sort"`
  941. Sel int64 `xorm:"sel"`
  942. Times int64 `xorm:"times"`
  943. Ftname string `xorm:"ftname"`
  944. Ftid string `xorm:"ftid"`
  945. Maxweight float64 `xorm:"maxweight"`
  946. // Sumweight int64 `xorm:"sumweight"`
  947. Sumcowcount int64 `xorm:"sumcowcount"`
  948. Pastureid string `xorm:"pastureid"`
  949. Display string `xorm:"display"`
  950. Issplit int64 `xorm:"issplit"`
  951. BeginTime string `xorm:"begintime"`
  952. }
  953. //添加车次并返回添加的车次信息
  954. func AddLpplan(c *gin.Context) {
  955. appG := app.Gin{C: c}
  956. dataByte, _ := ioutil.ReadAll(c.Request.Body)
  957. fsion := gofasion.NewFasion(string(dataByte))
  958. parammaps := fsion.Get("parammaps")
  959. req := new(ReqAddLpplan)
  960. err := json.Unmarshal([]byte(parammaps.Json()), req)
  961. if err != nil {
  962. log.Println("AddLpplan-error-1: ", err)
  963. appG.Response(http.StatusInternalServerError, e.ERROR, err)
  964. return
  965. }
  966. if req.Times == 0 {
  967. log.Println("AddLpplan-error-1: ", err)
  968. appG.Response(http.StatusBadRequest, e.INVALID_PARAMS, errors.New(" 班次错误 times = 0 !!!"))
  969. return
  970. }
  971. tx := restful.Engine.NewSession()
  972. defer tx.Close()
  973. ids, err := setting.SnowIds.NextId()
  974. if err != nil {
  975. ids = time.Now().UnixNano()
  976. logging.Info("AddLpplan-error-1: ", err)
  977. }
  978. req.Id = strconv.FormatInt(ids, 10)
  979. datacount, err := tx.Table("lpplan").Select("max(sort) as sort").Where("pastureid = ?", req.Pastureid).And(" times = ?", req.Times).QueryString()
  980. if err != nil {
  981. log.Println("AddLpplan-error-2: ", err)
  982. appG.Response(http.StatusInternalServerError, e.ERROR, err)
  983. return
  984. }
  985. var count int64 = 0
  986. for _, d := range datacount {
  987. if _, ok := d["sort"]; ok {
  988. count, _ = strconv.ParseInt(d["sort"], 10, 64)
  989. }
  990. }
  991. req.Sort = count + 1
  992. _, err = tx.Table("lpplan").Insert(req)
  993. if err != nil {
  994. log.Println("AddLpplan-error-3: ", err)
  995. appG.Response(http.StatusInternalServerError, e.ERROR, err)
  996. return
  997. }
  998. appG.Response(http.StatusOK, e.SUCCESS, req)
  999. }
  1000. type ReqAddLpplanDay struct {
  1001. Id string `xorm:"id"`
  1002. Tmrid string `xorm:"tmrid"`
  1003. TmrName string `xorm:"tmrname"`
  1004. Sort int64 `xorm:"sort"`
  1005. Sel int64 `xorm:"sel"`
  1006. Times int64 `xorm:"times"`
  1007. Ftname string `xorm:"ftname"`
  1008. Ftid string `xorm:"ftid"`
  1009. Maxweight float64 `xorm:"maxweight"`
  1010. // Sumweight int64 `xorm:"sumweight"`
  1011. Sumcowcount int64 `xorm:"sumcowcount"`
  1012. Pastureid string `xorm:"pastureid"`
  1013. Display string `xorm:"display"`
  1014. Issplit int64 `xorm:"issplit"`
  1015. BeginTime string `xorm:"begintime"`
  1016. Date string `xorm:"date"`
  1017. }
  1018. func AddLpplanDay(c *gin.Context) {
  1019. appG := app.Gin{C: c}
  1020. dataByte, _ := ioutil.ReadAll(c.Request.Body)
  1021. fsion := gofasion.NewFasion(string(dataByte))
  1022. parammaps := fsion.Get("parammaps")
  1023. req := new(ReqAddLpplanDay)
  1024. err := json.Unmarshal([]byte(parammaps.Json()), req)
  1025. if err != nil {
  1026. log.Println("AddLpplanDay-error-1: ", err)
  1027. appG.Response(http.StatusInternalServerError, e.ERROR, err)
  1028. return
  1029. }
  1030. if req.Times == 0 {
  1031. log.Println("AddLpplanDay-error-1: ", err)
  1032. appG.Response(http.StatusBadRequest, e.INVALID_PARAMS, errors.New(" 班次错误 times = 0 !!!"))
  1033. return
  1034. }
  1035. tx := restful.Engine.NewSession()
  1036. defer tx.Close()
  1037. ids, err := setting.SnowIds.NextId()
  1038. if err != nil {
  1039. ids = time.Now().UnixNano()
  1040. logging.Info("AddLpplanDay-error-1: ", err)
  1041. }
  1042. req.Id = strconv.FormatInt(ids, 10)
  1043. count, err := tx.Table("lpplandate").Where("pastureid = ?", req.Pastureid).And(" date = ?", req.Date).And(" times = ?", req.Times).Count()
  1044. if err != nil {
  1045. log.Println("AddLpplanDay-error-2: ", err)
  1046. appG.Response(http.StatusInternalServerError, e.ERROR, err)
  1047. return
  1048. }
  1049. req.Sort = count + 1
  1050. _, err = tx.Table("lpplandate").Insert(req)
  1051. if err != nil {
  1052. log.Println("AddLpplanDay-error-3: ", err)
  1053. appG.Response(http.StatusInternalServerError, e.ERROR, err)
  1054. return
  1055. }
  1056. appG.Response(http.StatusOK, e.SUCCESS, req)
  1057. }
  1058. //修改车次信息,如果修改tmrid信息则删除栏舍信息
  1059. func UpdateLpplan(c *gin.Context) {
  1060. appG := app.Gin{C: c}
  1061. dataByte, _ := ioutil.ReadAll(c.Request.Body)
  1062. fsion := gofasion.NewFasion(string(dataByte))
  1063. parammaps := fsion.Get("parammaps")
  1064. lpplanid := parammaps.Get("id").ValueStr()
  1065. pastureid := parammaps.Get("pastureid").ValueStr()
  1066. tmrid := parammaps.Get("tmrid").ValueStr()
  1067. tmrname := parammaps.Get("tmrname").ValueStr()
  1068. begintime := parammaps.Get("begintime").ValueStr()
  1069. display := parammaps.Get("display").ValueStr()
  1070. times := parammaps.Get("times").ValueInt64()
  1071. ftid := parammaps.Get("ftid").ValueStr()
  1072. ftname := parammaps.Get("ftname").ValueStr()
  1073. sel := parammaps.Get("sel").ValueInt64()
  1074. issplit := parammaps.Get("issplit").ValueInt64()
  1075. lpplan := new(ReqAddLpplan)
  1076. lpplan.Tmrid = tmrid
  1077. lpplan.TmrName = tmrname
  1078. lpplan.BeginTime = begintime
  1079. lpplan.Sel = sel
  1080. lpplan.Issplit = issplit
  1081. lpplan.Times = times
  1082. lpplan.Ftid = ftid
  1083. lpplan.Ftname = ftname
  1084. lpplan.Display = display
  1085. tx := restful.Engine.NewSession()
  1086. defer tx.Close()
  1087. tx.Begin()
  1088. lpplanData := new(lpplanStruct)
  1089. _, err := tx.Table("lpplan").Select("tmrid").Where(" id = ? ", lpplanid).And(" pastureid = ? ", pastureid).Get(lpplanData)
  1090. if err != nil {
  1091. log.Println("UpdateLpplan-error-1: ", err)
  1092. appG.Response(http.StatusInternalServerError, e.ERROR, err)
  1093. tx.Rollback()
  1094. return
  1095. }
  1096. _, err = tx.Table("lpplan").Where(" id = ? ", lpplanid).And(" pastureid = ? ", pastureid).
  1097. MustCols("display,tmrid,tmrname,begintime,sel,issplit,times,ftid,ftname").Update(lpplan)
  1098. if err != nil {
  1099. log.Println("UpdateLpplan-error-1: ", err)
  1100. appG.Response(http.StatusInternalServerError, e.ERROR, err)
  1101. tx.Rollback()
  1102. return
  1103. }
  1104. err = tx.Commit()
  1105. if err != nil {
  1106. log.Println("UpdateLpplan-error-3: ", err)
  1107. appG.Response(http.StatusInternalServerError, e.ERROR, err)
  1108. tx.Rollback()
  1109. return
  1110. }
  1111. /*
  1112. dataList, err := tx.SQL(`select * from lpplandtl1 where lppid = ? and pastureid = ? `, lpplanid, pastureid).Query().List()
  1113. if err != nil {
  1114. log.Println("UpdateLpplan-error-4: ", err)
  1115. appG.Response(http.StatusInternalServerError, e.ERROR, err)
  1116. return
  1117. }
  1118. // var oldbar, bar []int64
  1119. oldList := fsion.Get("old").Array()
  1120. if len(dataList) >= len(oldList) {
  1121. for _, data := range dataList {
  1122. updateStatus := true
  1123. for _, old := range oldList {
  1124. if (old.Get("tmrid").ValueInt64() == data["tmrid"].(int64) || old.Get("lweight").ValueStr() == data["lweight"].(string)) && old.Get("barid").ValueInt64() == data["barid"].(int64) {
  1125. updateStatus = false
  1126. break
  1127. }
  1128. }
  1129. if updateStatus {
  1130. now := time.Now()
  1131. for _, data := range dataList {
  1132. _, err = tx.SQL(` insert into lpplandtl1history(pastureid,lppid,barid,barname,fpdid,fttype,lweight,sort,tmrid,tmrname,
  1133. background,cowcount,ccountradio,lweighthis,createdate)
  1134. values(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)`,
  1135. data["pastureid"], data["lppid"], data["barid"],
  1136. data["barname"], data["fpdid"], data["fttype"],
  1137. data["lweight"], data["sort"], data["tmrid"],
  1138. data["tmrname"], data["background"], data["cowcount"],
  1139. data["ccountradio"], data["lweighthis"], now).Execute()
  1140. if err != nil {
  1141. log.Println("UpdateLpplan-error-5: ", err)
  1142. appG.Response(http.StatusInternalServerError, e.ERROR, err)
  1143. return
  1144. }
  1145. }
  1146. break
  1147. }
  1148. }
  1149. } else {
  1150. for _, old := range oldList {
  1151. updateStatus := true
  1152. for _, data := range dataList {
  1153. if (old.Get("tmrid").ValueInt64() == data["tmrid"].(int64) || old.Get("lweight").ValueStr() == data["lweight"].(string)) && old.Get("barid").ValueInt64() == data["barid"].(int64) {
  1154. updateStatus = false
  1155. break
  1156. }
  1157. }
  1158. if updateStatus {
  1159. now := time.Now()
  1160. for _, old := range oldList {
  1161. exist := false
  1162. var lweight, tmrid, tmrname interface{}
  1163. for _, data := range dataList {
  1164. if old.Get("barid").ValueInt64() == data["barid"].(int64) {
  1165. lweight = data["lweight"]
  1166. tmrid = data["tmrid"]
  1167. tmrname = data["tmrname"]
  1168. exist = true
  1169. break
  1170. }
  1171. }
  1172. if !exist {
  1173. tmrid = old.Get("tmrid").ValueInt64()
  1174. tmrname = old.Get("tmrname").ValueStr()
  1175. lweight = 0
  1176. }
  1177. _, err = tx.SQL(` insert into lpplandtl1history(pastureid,lppid,barid,barname,fpdid,fttype,lweight,sort,tmrid,tmrname,
  1178. background,cowcount,ccountradio,lweighthis,createdate) values(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)`,
  1179. old.Get("pastureid").ValueStr(), old.Get("lppid").ValueStr(), old.Get("barid").ValueStr(),
  1180. old.Get("barname").ValueStr(), old.Get("fpdid").ValueStr(), old.Get("fttype").ValueStr(),
  1181. lweight, old.Get("sort").ValueStr(), tmrid,
  1182. tmrname, old.Get("background").ValueStr(), old.Get("cowcount").ValueStr(),
  1183. old.Get("ccountradio").ValueStr(), old.Get("lweighthis").ValueInt64(), now).Execute()
  1184. if err != nil {
  1185. log.Println("UpdateLpplan-error-6: ", err)
  1186. appG.Response(http.StatusInternalServerError, e.ERROR, err)
  1187. return
  1188. }
  1189. }
  1190. break
  1191. }
  1192. }
  1193. }
  1194. */
  1195. appG.Response(http.StatusOK, e.SUCCESS, true)
  1196. }
  1197. func GetSpillageDay(c *gin.Context) {
  1198. appG := app.Gin{C: c}
  1199. dataByte, _ := ioutil.ReadAll(c.Request.Body)
  1200. fsion := gofasion.NewFasion(string(dataByte))
  1201. parammaps := fsion.Get("parammaps")
  1202. pastureid := parammaps.Get("pastureid").ValueInt64()
  1203. times := parammaps.Get("times").ValueInt64()
  1204. ftid := parammaps.Get("ftid").ValueDefaultInt64(0)
  1205. // refresh 0 全部 , 1 车次信息, 2 班次
  1206. refresh := parammaps.Get("refresh").ValueInt64()
  1207. date := parammaps.Get("date").ValueStr()
  1208. tx := restful.Engine.NewSession()
  1209. defer tx.Close()
  1210. data := make(map[string]interface{})
  1211. if refresh == 0 || refresh == 2 {
  1212. // sqlStr := `SELECT trim(feedp.pastureid) pastureid,barname,trim(barid) barid,trim(ftid) arrid,1 as type,? as times,ft.tname ftname,ft.tcolor background,0 isfill FROM feedp
  1213. // inner join feedtemplet ft
  1214. // on ft.id = feedp.ftid and ft.pastureid=?
  1215. // WHERE feedp.pastureid = ? %s
  1216. // GROUP BY feedp.ftid
  1217. // UNION
  1218. // SELECT trim(feedp.pastureid) pastureid,barname,barid,trim(ptsfid) arrid,0 as type,? as times,ft.tname ptsfname ,ft.tcolor background,1 isfill FROM feedp
  1219. // inner join feedtemplet ft
  1220. // on ft.id = feedp.ptsfid and ft.pastureid=?
  1221. // WHERE feedp.pastureid = ? %s and (SELECT inforvalue FROM sysopt WHERE sysopt.pastureid=feedp.pastureid AND sysopt.inforname= 'isEnableSupplyFeed') = 1
  1222. // GROUP BY feedp.ptsfid`
  1223. sqlStr := ` SELECT TRIM(feedp.pastureid) pastureid,feedp.barname,TRIM(feedp.barid) barid,TRIM(ft.id) arrid,1 AS type,? AS times,ft.tname ftname,ft.tcolor background,feedp.date,0 isfill
  1224. FROM feedpdate feedp
  1225. INNER JOIN fpdetaildate fpd ON fpd.date = feedp.date AND fpd.barid = feedp.barid AND fpd.pastureid = feedp.pastureid
  1226. INNER JOIN feedtemplet ft
  1227. ON ft.id = fpd.ptid AND ft.pastureid= feedp.pastureid
  1228. WHERE feedp.pastureid = ? AND feedp.date=? %s
  1229. GROUP BY fpd.ptid
  1230. UNION
  1231. SELECT TRIM(feedp.pastureid) pastureid,feedp.barname,feedp.barid,TRIM(ft.id) arrid,0 AS type,? AS times,ft.tname ptsfname ,ft.tcolor background ,feedp.date ,1 isfill
  1232. FROM feedpdate feedp
  1233. INNER JOIN fpdetaildate fpd ON fpd.date = feedp.date AND fpd.barid = feedp.barid AND fpd.pastureid = feedp.pastureid
  1234. INNER JOIN feedtemplet ft
  1235. ON ft.id = fpd.ptsid AND ft.pastureid=feedp.pastureid
  1236. WHERE feedp.pastureid = ? AND feedp.date=? %s
  1237. AND (SELECT inforvalue FROM sysopt WHERE sysopt.pastureid=feedp.pastureid AND sysopt.inforname= 'isEnableSupplyFeed') = 1
  1238. GROUP BY fpd.ptsid`
  1239. if ftid != 0 {
  1240. sqlStr = fmt.Sprintf(sqlStr, fmt.Sprintf(" and ft.id = %d ", ftid), fmt.Sprintf(" and ft.id = %d ", ftid))
  1241. } else {
  1242. sqlStr = fmt.Sprintf(sqlStr, "", "")
  1243. }
  1244. ftList, err := tx.SQL(sqlStr, times, pastureid, date, times, pastureid, date).Query().List()
  1245. if err != nil {
  1246. log.Println("GetSpillage-error-1: ", err)
  1247. appG.Response(http.StatusOK, e.ERROR, nil)
  1248. return
  1249. }
  1250. // AND ( fpdetail.ptsid=?)
  1251. // AND (fpdetail.ptid=? )
  1252. ftDetailList, err := tx.SQL(`SELECT TRIM(id) id,times,tratio,ROUND(ptsrate*weight,2)-ptsuse weight,TRIM(barid) barid,TRIM(pastureid) pastureid,TRIM(ptid) ptid,TRIM(ptsid ) ptsid ,
  1253. (select bname from bar where pastureid =fpdetail.pastureid and id = fpdetail.barid ) barname,cowcount,ccountradio, 1 isfill FROM fpdetaildate fpdetail
  1254. WHERE fpdetail.pastureid = ? AND times=? AND ptsuse< ROUND(ptsrate*weight,2) and fpdetail.date = ?
  1255. UNION
  1256. SELECT TRIM(id) id,times,tratio,ROUND((1-ptsrate)*weight,2)-ptuse weight,TRIM(barid) barid,TRIM(pastureid) pastureid,TRIM(ptid) ptid,TRIM(ptsid ) ptsid ,
  1257. (select bname from bar where pastureid =fpdetail.pastureid and id = fpdetail.barid ) barname,cowcount,ccountradio, 0 isfill FROM fpdetaildate fpdetail
  1258. WHERE fpdetail.pastureid = ? AND times=? AND ptuse<ROUND((1-ptsrate)*weight,2) and fpdetail.date = ?
  1259. ORDER BY barid`, pastureid, times, date, pastureid, times, date).Query().List()
  1260. if err != nil {
  1261. log.Println("GetSpillage-error-2: ", err)
  1262. appG.Response(http.StatusOK, e.ERROR, nil)
  1263. return
  1264. }
  1265. for _, ft := range ftList {
  1266. arrList := make([]map[string]interface{}, 0)
  1267. arrid := ft["arrid"].(string)
  1268. for _, detail := range ftDetailList {
  1269. if _, ok := detail["ptid"]; ok {
  1270. if arrid == detail["ptid"].(string) && ft["isfill"].(int64) == detail["isfill"].(int64) {
  1271. detail["background"] = ft["background"]
  1272. detail["fttype"] = ft["type"].(int64)
  1273. arrList = append(arrList, detail)
  1274. }
  1275. } else if _, ok := detail["ptsid"]; ok {
  1276. if arrid == detail["ptsid"].(string) && ft["isfill"].(int64) == detail["isfill"].(int64) {
  1277. detail["background"] = ft["background"]
  1278. detail["fttype"] = ft["type"].(int64)
  1279. arrList = append(arrList, detail)
  1280. }
  1281. }
  1282. }
  1283. if len(arrList) > 0 {
  1284. ft["arrList"] = arrList
  1285. }
  1286. }
  1287. data["ftlist"] = ftList
  1288. }
  1289. if refresh == 0 || refresh == 1 {
  1290. sqlstr := `SELECT
  1291. lpplan.date,
  1292. -- ifnull((select eqcode from tmr where pastureid =lpplan.pastureid and id = lpplan.tmrid ),lpplan.tmrname)
  1293. lpplan.tmrname tmrname,trim(lpplan.tmrid) tmrid,lpplan.sort,lpplan.sel,
  1294. CASE lpplan.times
  1295. WHEN 1 THEN
  1296. '第一班'
  1297. WHEN 2 THEN
  1298. '第二班'
  1299. WHEN 3 THEN
  1300. '第三班'
  1301. WHEN 4 THEN
  1302. '第四班'
  1303. END timesstr,issplit,
  1304. lpplan.times,display,begintime,
  1305. (select tname from feedtemplet where pastureid =lpplan.pastureid and id = lpplan.ftid ) ftname,sumcowcount,
  1306. IFNULL(round((SELECT SUM(lpplandtl1.lweight) FROM lpplandtl1date lpplandtl1 WHERE lpplandtl1.lppid=lpplan.id and lpplandtl1.date= ?),2),0) sumweight ,
  1307. maxweight,
  1308. TRIM(ftid) ftid,
  1309. TRIM(lpplan.id) id,
  1310. TRIM(lpplan.id) lppid,
  1311. TRIM(lpplan.pastureid) pastureid,
  1312. ifnull(dpl.havebutton,0) as havebutton
  1313. FROM
  1314. lpplandate lpplan
  1315. left join downloadedplan dpl on dpl.pid = lpplan.id and DATE_FORMAT(dpl.mydate,'%Y-%m-%e') = lpplan.date
  1316. WHERE lpplan.pastureid = ? and lpplan.date = ? and lpplan.times <= (SELECT sysopt.inforvalue FROM sysopt
  1317. WHERE sysopt.pastureid= lpplan.pastureid AND sysopt.inforname='times')
  1318. `
  1319. arrsql := `SELECT
  1320. trim(lpplandtl1.lppid) lppid,lweight,
  1321. lpplandtl1.lweight weight,lpplandtl1.sort,
  1322. (select bname from bar where pastureid =lpplandtl1.pastureid and id = lpplandtl1.barid ) barname,
  1323. TRIM(lpplandtl1.fpdid) fpdid,
  1324. TRIM(lpplandtl1.barid) barid,
  1325. TRIM(lpplandtl1.id) id,
  1326. TRIM(lpplandtl1.pastureid) pastureid,
  1327. lpplandtl1.background,
  1328. lpplandtl1.fttype,
  1329. trim(lpplandtl1.tmrid) tmrid,
  1330. ifnull((select eqcode from tmr where pastureid =lpplandtl1.pastureid and id = lpplandtl1.tmrid ),lpplandtl1.tmrname) tmrname,
  1331. ifnull((select tcolor from tmr where pastureid =lpplandtl1.pastureid and id = lpplandtl1.tmrid ),'#ccc') tbackground,
  1332. fpdetail.ptid,
  1333. fpdetail.ptsid,
  1334. fpdetail.times,
  1335. fpdetail.cowcount,
  1336. fpdetail.ccountradio
  1337. FROM
  1338. lpplandtl1date lpplandtl1
  1339. inner join fpdetaildate fpdetail
  1340. on lpplandtl1.fpdid= fpdetail.id and lpplandtl1.pastureid = fpdetail.pastureid and lpplandtl1.date = fpdetail.date
  1341. WHERE lpplandtl1.pastureid = ? and lpplandtl1.date = ? and lpplandtl1.lweight>0 `
  1342. var args []interface{}
  1343. args = append(args, date, pastureid, date)
  1344. if times != 0 {
  1345. sqlstr += " and lpplan.times = ? "
  1346. // arrsql += " and times = ? "
  1347. args = append(args, times)
  1348. }
  1349. sqlstr += " group by lpplan.id ORDER BY times,lpplan.sort"
  1350. session := tx.SQL(sqlstr, args...)
  1351. lppList, err := session.Query().List()
  1352. if err != nil {
  1353. log.Println("GetSpillage-error-3: ", err)
  1354. appG.Response(http.StatusOK, e.ERROR, nil)
  1355. return
  1356. }
  1357. arrsql += " ORDER BY lpplandtl1.sort"
  1358. arrList, err := tx.SQL(arrsql, pastureid, date).QueryString() //获取
  1359. if err != nil {
  1360. log.Println("GetSpillage-error-4: ", err)
  1361. appG.Response(http.StatusOK, e.ERROR, nil)
  1362. return
  1363. }
  1364. for _, query := range lppList {
  1365. list := make([]map[string]string, 0)
  1366. for _, arr := range arrList {
  1367. if query["lppid"].(string) == arr["lppid"] {
  1368. list = append(list, arr)
  1369. }
  1370. }
  1371. query["arrList"] = list
  1372. }
  1373. data["list"] = lppList
  1374. data["total"] = len(lppList)
  1375. }
  1376. appG.Response(http.StatusOK, e.SUCCESS, data)
  1377. }
  1378. // func AddLpplandtl(c *gin.Context) {
  1379. // appG := app.Gin{C: c}
  1380. // dataByte, _ := ioutil.ReadAll(c.Request.Body)
  1381. // fsion := gofasion.NewFasion(string(dataByte))
  1382. // parammaps := fsion.Get("parammaps")
  1383. // tx := restful.Engine.NewSession()
  1384. // defer tx.Close()
  1385. // exist := false
  1386. // var err error
  1387. // lpplandList := make([]*lpplandtl1, 0)
  1388. // err = tx.Table("lpplandtl1").Select("id,pastureid,sort,barid,tmrid").Where("lppid = ? ", parammaps.Get("lppid").ValueStr()).And("pastureid = ?", parammaps.Get("pastureid").ValueStr()).
  1389. // OrderBy("sort").Find(&lpplandList)
  1390. // if err != nil {
  1391. // log.Println("AddLpplandtl-error-1: ", err)
  1392. // appG.Response(http.StatusOK, e.ERROR, err)
  1393. // return
  1394. // }
  1395. // if parammaps.Get("id").ValueStr() != "" || parammaps.Get("id").ValueStr() != "0" {
  1396. // for _, lppand := range lpplandList {
  1397. // if lppand.Id == parammaps.Get("id").ValueInt64() {
  1398. // if lppand.Tmrid == parammaps.Get("tmrid").ValueInt64() {
  1399. // appG.Response(http.StatusOK, e.SUCCESS, true)
  1400. // return
  1401. // }
  1402. // exist = true
  1403. // break
  1404. // }
  1405. // }
  1406. // }
  1407. // tmrid := parammaps.Get("tmrid").ValueInt64()
  1408. // var sort int64 = -1
  1409. // if !exist {
  1410. // for _, lppand := range lpplandList {
  1411. // if lppand.Barid == parammaps.Get("barid").ValueInt64() {
  1412. // _, err := tx.SQL(" update lpplandtl1 set lweight =lweight + ? where id = ? and pastureid = ? ", parammaps.Get("lweight").ValueStr(), lppand.Id, parammaps.Get("pastureid").ValueStr()).Execute()
  1413. // if err != nil {
  1414. // log.Println("AddLpplandtl-error-2: ", err)
  1415. // appG.Response(http.StatusOK, e.ERROR, err)
  1416. // return
  1417. // }
  1418. // appG.Response(http.StatusOK, e.SUCCESS, true)
  1419. // return
  1420. // }
  1421. // }
  1422. // for i, lppand := range lpplandList {
  1423. // lppand.Sort = int64(i) + 1
  1424. // }
  1425. // updateLpplandList := make([]*lpplandtl1, 0)
  1426. // for i, lppand := range lpplandList {
  1427. // n := i + 1
  1428. // if lppand.Tmrid == tmrid {
  1429. // sort = int64(n) + 1
  1430. // lppand.Sort = int64(n)
  1431. // updateLpplandList = append(updateLpplandList, lppand)
  1432. // } else if sort > 0 {
  1433. // lppand.Sort = int64(n) + 2
  1434. // updateLpplandList = append(updateLpplandList, lppand)
  1435. // }
  1436. // }
  1437. // tx.Begin()
  1438. // for _, lppand := range updateLpplandList {
  1439. // _, err := tx.SQL(" update lpplandtl1 set sort = ? where id = ? and pastureid = ? ", lppand.Sort, lppand.Id, lppand.Pastureid).Execute()
  1440. // if err != nil {
  1441. // tx.Rollback()
  1442. // log.Println("AddLpplandtl-error-2: ", err)
  1443. // appG.Response(http.StatusOK, e.ERROR, err)
  1444. // return
  1445. // }
  1446. // }
  1447. // if sort < 0 && len(lpplandList) > 0 {
  1448. // sort = int64(len(lpplandList) + 2)
  1449. // } else if len(lpplandList) == 0 {
  1450. // sort = 1
  1451. // }
  1452. // _, err = tx.SQL(`INSERT INTO lpplandtl1(pastureid,lppid,barid,barname,fpdid,lweight,sort,tmrid,tmrname,fttype,background,cowcount,ccountradio)
  1453. // VALUES (?,?,?,?,?,?,?,?,?,
  1454. // ?,?,IF(?='',0,?),IF(?='',0,?))`,
  1455. // parammaps.Get("pastureid").ValueStr(),
  1456. // parammaps.Get("lppid").ValueStr(),
  1457. // parammaps.Get("barid").ValueStr(),
  1458. // parammaps.Get("barname").ValueStr(),
  1459. // parammaps.Get("fpdid").ValueStr(),
  1460. // parammaps.Get("lweight").ValueStr(),
  1461. // sort,
  1462. // parammaps.Get("tmrid").ValueStr(),
  1463. // parammaps.Get("tmrname").ValueStr(),
  1464. // parammaps.Get("fttype").ValueStr(),
  1465. // parammaps.Get("background").ValueStr(),
  1466. // parammaps.Get("cowcount").ValueStr(),
  1467. // parammaps.Get("cowcount").ValueStr(),
  1468. // parammaps.Get("ccountradio").ValueStr(),
  1469. // parammaps.Get("ccountradio").ValueStr()).Execute()
  1470. // if err != nil {
  1471. // tx.Rollback()
  1472. // log.Println("AddLpplandtl-error-3: ", err)
  1473. // appG.Response(http.StatusOK, e.ERROR, err)
  1474. // return
  1475. // }
  1476. // err = tx.Commit()
  1477. // if err != nil {
  1478. // tx.Rollback()
  1479. // log.Println("AddLpplandtl-error-6: ", err)
  1480. // appG.Response(http.StatusOK, e.ERROR, err)
  1481. // return
  1482. // }
  1483. // } else {
  1484. // lpplandid := parammaps.Get("id").ValueInt64()
  1485. // updateLpplandList := make([]*lpplandtl1, 0)
  1486. // var oldsort int64
  1487. // for i, lppand := range lpplandList {
  1488. // lppand.Sort = int64(i) + 1
  1489. // }
  1490. // for _, lppand := range lpplandList {
  1491. // if lppand.Id == lpplandid {
  1492. // oldsort = lppand.Sort
  1493. // break
  1494. // }
  1495. // }
  1496. // for _, lppand := range lpplandList {
  1497. // if lppand.Tmrid == tmrid && lppand.Id != lpplandid && sort < 0 {
  1498. // sort = lppand.Sort
  1499. // break
  1500. // }
  1501. // }
  1502. // if sort == -1 {
  1503. // sort = 1
  1504. // }
  1505. // if oldsort < sort {
  1506. // for _, lppand := range lpplandList {
  1507. // if lppand.Id != lpplandid && lppand.Sort > oldsort && lppand.Sort < sort {
  1508. // lppand.Sort--
  1509. // updateLpplandList = append(updateLpplandList, lppand)
  1510. // } else if lppand.Sort > sort && lppand.Id != lpplandid {
  1511. // lppand.Sort++
  1512. // updateLpplandList = append(updateLpplandList, lppand)
  1513. // }
  1514. // }
  1515. // sort--
  1516. // } else {
  1517. // for _, lppand := range lpplandList {
  1518. // if lppand.Sort < oldsort && lppand.Sort >= sort && lppand.Id != lpplandid {
  1519. // lppand.Sort++
  1520. // updateLpplandList = append(updateLpplandList, lppand)
  1521. // }
  1522. // }
  1523. // }
  1524. // var tmrlpplandList []*lpplandtl1
  1525. // for _, lppand := range lpplandList {
  1526. // exist := false
  1527. // for _, lppand1 := range updateLpplandList {
  1528. // if lppand.Id == lppand1.Id {
  1529. // exist = true
  1530. // break
  1531. // }
  1532. // }
  1533. // if !exist {
  1534. // tmrlpplandList = append(tmrlpplandList, lppand)
  1535. // }
  1536. // }
  1537. // updateLpplandList = append(updateLpplandList, tmrlpplandList...)
  1538. // if len(updateLpplandList) > 0 {
  1539. // tx.Begin()
  1540. // for _, lppand := range updateLpplandList {
  1541. // _, err := tx.SQL(" update lpplandtl1 set sort = ? where id = ? and pastureid = ? ", lppand.Sort, lppand.Id, lppand.Pastureid).Execute()
  1542. // if err != nil {
  1543. // tx.Rollback()
  1544. // log.Println("AddLpplandtl-error-2: ", err)
  1545. // appG.Response(http.StatusOK, e.ERROR, err)
  1546. // return
  1547. // }
  1548. // }
  1549. // _, err := tx.SQL(" update lpplandtl1 set tmrid = ? , tmrname = ?,sort = ? where id = ? and pastureid = ? ", parammaps.Get("tmrid").ValueStr(), parammaps.Get("tmrname").ValueStr(), sort, lpplandid, parammaps.Get("pastureid").ValueStr()).Execute()
  1550. // if err != nil {
  1551. // tx.Rollback()
  1552. // log.Println("AddLpplandtl-error-2: ", err)
  1553. // appG.Response(http.StatusOK, e.ERROR, err)
  1554. // return
  1555. // }
  1556. // tx.Commit()
  1557. // }
  1558. // }
  1559. // appG.Response(http.StatusOK, e.SUCCESS, true)
  1560. // }
  1561. func AddLpplandtl(c *gin.Context) {
  1562. appG := app.Gin{C: c}
  1563. dataByte, _ := ioutil.ReadAll(c.Request.Body)
  1564. fsion := gofasion.NewFasion(string(dataByte))
  1565. parammaps := fsion.Get("parammaps")
  1566. tx := restful.Engine.NewSession()
  1567. defer tx.Close()
  1568. exist := false
  1569. var err error
  1570. lpplandList := make([]*lpplandtl1, 0)
  1571. err = tx.Table("lpplandtl1").Select("id,pastureid,sort,barid,tmrid,tmrname").Where("lppid = ? ", parammaps.Get("lppid").ValueStr()).And("pastureid = ?", parammaps.Get("pastureid").ValueStr()).
  1572. OrderBy("sort").Find(&lpplandList)
  1573. if err != nil {
  1574. log.Println("AddLpplandtl-error-1: ", err)
  1575. appG.Response(http.StatusOK, e.ERROR, err)
  1576. return
  1577. }
  1578. if parammaps.Get("id").ValueStr() != "" || parammaps.Get("id").ValueStr() != "0" {
  1579. for _, lppand := range lpplandList {
  1580. if lppand.Id == parammaps.Get("id").ValueInt64() {
  1581. if lppand.Tmrid == parammaps.Get("tmrid").ValueInt64() {
  1582. appG.Response(http.StatusOK, e.SUCCESS, true)
  1583. return
  1584. }
  1585. exist = true
  1586. break
  1587. }
  1588. }
  1589. }
  1590. tmrid := parammaps.Get("tmrid").ValueInt64()
  1591. if !exist {
  1592. var sort int64 = -1
  1593. for _, lppand := range lpplandList {
  1594. if lppand.Barid == parammaps.Get("barid").ValueInt64() {
  1595. _, err := tx.SQL(" update lpplandtl1 set lweight =lweight + ? where id = ? and pastureid = ? ", parammaps.Get("lweight").ValueStr(), lppand.Id, parammaps.Get("pastureid").ValueStr()).Execute()
  1596. if err != nil {
  1597. log.Println("AddLpplandtl-error-2: ", err)
  1598. appG.Response(http.StatusOK, e.ERROR, err)
  1599. return
  1600. }
  1601. appG.Response(http.StatusOK, e.SUCCESS, true)
  1602. return
  1603. }
  1604. }
  1605. for i, lppand := range lpplandList {
  1606. lppand.Sort = int64(i) + 1
  1607. }
  1608. updateLpplandList := make([]*lpplandtl1, 0)
  1609. for i, lppand := range lpplandList {
  1610. n := i + 1
  1611. if lppand.Tmrid == tmrid {
  1612. sort = int64(n) + 1
  1613. lppand.Sort = int64(n)
  1614. updateLpplandList = append(updateLpplandList, lppand)
  1615. } else if sort > 0 {
  1616. lppand.Sort = int64(n) + 2
  1617. updateLpplandList = append(updateLpplandList, lppand)
  1618. }
  1619. }
  1620. tx.Begin()
  1621. for _, lppand := range updateLpplandList {
  1622. _, err := tx.SQL(" update lpplandtl1 set sort = ? where id = ? and pastureid = ? ", lppand.Sort, lppand.Id, lppand.Pastureid).Execute()
  1623. if err != nil {
  1624. tx.Rollback()
  1625. log.Println("AddLpplandtl-error-2: ", err)
  1626. appG.Response(http.StatusOK, e.ERROR, err)
  1627. return
  1628. }
  1629. }
  1630. if sort < 0 && len(lpplandList) > 0 {
  1631. sort = int64(len(lpplandList) + 2)
  1632. } else if len(lpplandList) == 0 {
  1633. sort = 1
  1634. }
  1635. _, err = tx.SQL(`INSERT INTO lpplandtl1(pastureid,lppid,barid,barname,fpdid,lweight,sort,tmrid,tmrname,fttype,background,cowcount,ccountradio)
  1636. VALUES (?,?,?,?,?,?,?,?,?,
  1637. ?,?,IF(?='',0,?),IF(?='',0,?))`,
  1638. parammaps.Get("pastureid").ValueStr(),
  1639. parammaps.Get("lppid").ValueStr(),
  1640. parammaps.Get("barid").ValueStr(),
  1641. parammaps.Get("barname").ValueStr(),
  1642. parammaps.Get("fpdid").ValueStr(),
  1643. parammaps.Get("lweight").ValueStr(),
  1644. sort,
  1645. parammaps.Get("tmrid").ValueStr(),
  1646. parammaps.Get("tmrname").ValueStr(),
  1647. parammaps.Get("fttype").ValueStr(),
  1648. parammaps.Get("background").ValueStr(),
  1649. parammaps.Get("cowcount").ValueStr(),
  1650. parammaps.Get("cowcount").ValueStr(),
  1651. parammaps.Get("ccountradio").ValueStr(),
  1652. parammaps.Get("ccountradio").ValueStr()).Execute()
  1653. if err != nil {
  1654. tx.Rollback()
  1655. log.Println("AddLpplandtl-error-3: ", err)
  1656. appG.Response(http.StatusOK, e.ERROR, err)
  1657. return
  1658. }
  1659. err = tx.Commit()
  1660. if err != nil {
  1661. tx.Rollback()
  1662. log.Println("AddLpplandtl-error-6: ", err)
  1663. appG.Response(http.StatusOK, e.ERROR, err)
  1664. return
  1665. }
  1666. } else {
  1667. lpplandid := parammaps.Get("id").ValueInt64()
  1668. // updateLpplandList := make([]*lpplandtl1, 0)
  1669. var oldsort int64
  1670. for i, lppand := range lpplandList {
  1671. lppand.Sort = int64(i) + 1
  1672. }
  1673. noup := false
  1674. for i, lppand := range lpplandList {
  1675. if lppand.Id == lpplandid {
  1676. oldsort = lppand.Sort
  1677. b := false
  1678. for _, lppand := range lpplandList {
  1679. if lppand.Tmrid == tmrid {
  1680. noup = false
  1681. b = true
  1682. break
  1683. }
  1684. }
  1685. if !b {
  1686. if i == 0 || i == len(lpplandList)-1 {
  1687. noup = true
  1688. }
  1689. if i != 0 && i < len(lpplandList)-1 {
  1690. if lpplandList[i-1].Tmrid != lppand.Tmrid || lpplandList[i+1].Tmrid != lppand.Tmrid {
  1691. noup = true
  1692. }
  1693. }
  1694. // if lpplandList[i+1].Tmrid == tmrid {
  1695. // _, err := tx.SQL(" update lpplandtl1 set tmrid = ? , tmrname = ? where id = ? and pastureid = ? ", parammaps.Get("tmrid").ValueStr(), parammaps.Get("tmrname").ValueStr(), lpplandid, parammaps.Get("pastureid").ValueStr()).Execute()
  1696. // if err != nil {
  1697. // tx.Rollback()
  1698. // log.Println("AddLpplandtl-error-2: ", err)
  1699. // appG.Response(http.StatusOK, e.ERROR, err)
  1700. // return
  1701. // }
  1702. // tx.Commit()
  1703. // appG.Response(http.StatusOK, e.SUCCESS, true)
  1704. // return
  1705. // }
  1706. // }
  1707. // break
  1708. // }
  1709. // }
  1710. }
  1711. break
  1712. }
  1713. }
  1714. if noup {
  1715. _, err := tx.SQL(" update lpplandtl1 set tmrid = ? , tmrname = ? where id = ? and pastureid = ? ", parammaps.Get("tmrid").ValueStr(), parammaps.Get("tmrname").ValueStr(), lpplandid, parammaps.Get("pastureid").ValueStr()).Execute()
  1716. if err != nil {
  1717. tx.Rollback()
  1718. log.Println("AddLpplandtl-error-2: ", err)
  1719. appG.Response(http.StatusOK, e.ERROR, err)
  1720. return
  1721. }
  1722. } else {
  1723. for i, lppand := range lpplandList {
  1724. if lppand.Id == lpplandid {
  1725. if i != 0 {
  1726. if lpplandList[i-1].Tmrid == tmrid {
  1727. _, err := tx.SQL(" update lpplandtl1 set tmrid = ? , tmrname = ? where id = ? and pastureid = ? ", parammaps.Get("tmrid").ValueStr(), parammaps.Get("tmrname").ValueStr(), lpplandid, parammaps.Get("pastureid").ValueStr()).Execute()
  1728. if err != nil {
  1729. tx.Rollback()
  1730. log.Println("AddLpplandtl-error-2: ", err)
  1731. appG.Response(http.StatusOK, e.ERROR, err)
  1732. return
  1733. }
  1734. tx.Commit()
  1735. appG.Response(http.StatusOK, e.SUCCESS, true)
  1736. return
  1737. }
  1738. }
  1739. if i < len(lpplandList)-1 {
  1740. if lpplandList[i+1].Tmrid == tmrid {
  1741. _, err := tx.SQL(" update lpplandtl1 set tmrid = ? , tmrname = ? where id = ? and pastureid = ? ", parammaps.Get("tmrid").ValueStr(), parammaps.Get("tmrname").ValueStr(), lpplandid, parammaps.Get("pastureid").ValueStr()).Execute()
  1742. if err != nil {
  1743. tx.Rollback()
  1744. log.Println("AddLpplandtl-error-2: ", err)
  1745. appG.Response(http.StatusOK, e.ERROR, err)
  1746. return
  1747. }
  1748. tx.Commit()
  1749. appG.Response(http.StatusOK, e.SUCCESS, true)
  1750. return
  1751. }
  1752. }
  1753. break
  1754. }
  1755. }
  1756. exist := false
  1757. sort1 := 0
  1758. a := false
  1759. for _, lppand := range lpplandList {
  1760. if lppand.Tmrid == tmrid && lppand.Id != lpplandid {
  1761. sort1 = int(lppand.Sort)
  1762. if !a {
  1763. for _, lppand1 := range lpplandList {
  1764. if lppand1.Id == lpplandid {
  1765. lppand1.Tmrid = tmrid
  1766. lppand1.Tmrname = lppand.Tmrname
  1767. a = true
  1768. // lppand1.Sort = lppand.Sort
  1769. break
  1770. }
  1771. }
  1772. }
  1773. exist = true
  1774. }
  1775. }
  1776. if exist {
  1777. if oldsort > int64(sort1) {
  1778. for _, lppand := range lpplandList {
  1779. if lppand.Id == lpplandid {
  1780. lppand.Sort = int64(sort1) + 1
  1781. continue
  1782. }
  1783. if lppand.Sort >= int64(sort1)+1 {
  1784. lppand.Sort++
  1785. }
  1786. }
  1787. } else {
  1788. for _, lppand := range lpplandList {
  1789. if lppand.Id == lpplandid {
  1790. lppand.Sort = int64(sort1) + 1
  1791. continue
  1792. }
  1793. if lppand.Sort > oldsort && lppand.Sort < int64(sort1)+1 {
  1794. lppand.Sort--
  1795. } else if lppand.Sort <= int64(sort1)+1 {
  1796. lppand.Sort++
  1797. }
  1798. }
  1799. }
  1800. } else {
  1801. for _, lppand := range lpplandList {
  1802. if lppand.Id == lpplandid {
  1803. lppand.Sort = int64(len(lpplandList)) + 1
  1804. lppand.Tmrid = tmrid
  1805. lppand.Tmrname = parammaps.Get("tmrname").ValueStr()
  1806. break
  1807. }
  1808. }
  1809. }
  1810. sort.Slice(lpplandList, func(i, j int) bool {
  1811. return lpplandList[i].Sort < lpplandList[j].Sort // 升序
  1812. })
  1813. for i, lppand := range lpplandList {
  1814. lppand.Sort = int64(i) + 1
  1815. }
  1816. for _, lppand := range lpplandList {
  1817. _, err := tx.SQL(" update lpplandtl1 set tmrid = ? , tmrname = ?,sort = ? where id = ? and pastureid = ? ", lppand.Tmrid, lppand.Tmrname, lppand.Sort, lppand.Id, lppand.Pastureid).Execute()
  1818. if err != nil {
  1819. tx.Rollback()
  1820. log.Println("AddLpplandtl-error-2: ", err)
  1821. appG.Response(http.StatusOK, e.ERROR, err)
  1822. return
  1823. }
  1824. }
  1825. }
  1826. tx.Commit()
  1827. }
  1828. appG.Response(http.StatusOK, e.SUCCESS, true)
  1829. }
  1830. func UpdateLpplandtlSort(c *gin.Context) {
  1831. appG := app.Gin{C: c}
  1832. dataByte, _ := ioutil.ReadAll(c.Request.Body)
  1833. fsion := gofasion.NewFasion(string(dataByte))
  1834. parammaps := fsion.Get("parammaps")
  1835. tx := restful.Engine.NewSession()
  1836. defer tx.Close()
  1837. var err error
  1838. lpplandList := make([]*lpplandtl1, 0)
  1839. err = tx.Table("lpplandtl1").Select("id,pastureid,sort,tmrid").Where("lppid = ? ", parammaps.Get("lppid").ValueStr()).And("pastureid = ?", parammaps.Get("pastureid").ValueStr()).
  1840. OrderBy("sort").Find(&lpplandList)
  1841. if err != nil {
  1842. log.Println("UpdateLpplandtlSort-error-1: ", err)
  1843. appG.Response(http.StatusOK, e.ERROR, err)
  1844. return
  1845. }
  1846. var oldsort, lpplandtlsort int64
  1847. tmrid := parammaps.Get("tmrid").ValueInt64()
  1848. sort := parammaps.Get("sort").ValueInt64()
  1849. lpplandtlid := parammaps.Get("id").ValueInt64()
  1850. sort1 := parammaps.Get("sort").ValueInt64()
  1851. for i, lppland := range lpplandList {
  1852. lppland.Sort = int64(i) + 1
  1853. }
  1854. for _, lppland := range lpplandList {
  1855. if tmrid == lppland.Tmrid {
  1856. oldsort = lppland.Sort
  1857. break
  1858. }
  1859. }
  1860. for _, lppland := range lpplandList {
  1861. if lppland.Sort == sort {
  1862. for _, lppland1 := range lpplandList {
  1863. if lppland.Tmrid == lppland1.Tmrid {
  1864. sort = lppland1.Sort
  1865. if oldsort > sort {
  1866. break
  1867. }
  1868. }
  1869. }
  1870. break
  1871. }
  1872. }
  1873. if oldsort == sort {
  1874. appG.Response(http.StatusOK, e.SUCCESS, true)
  1875. return
  1876. }
  1877. tmrLpplandList := make([]*lpplandtl1, 0)
  1878. for _, lppland := range lpplandList {
  1879. if lppland.Tmrid == tmrid {
  1880. tmrLpplandList = append(tmrLpplandList, lppland)
  1881. if lppland.Id == lpplandtlid {
  1882. lpplandtlsort = lppland.Sort
  1883. }
  1884. }
  1885. }
  1886. exist := false
  1887. for _, tmrLppland := range tmrLpplandList {
  1888. if sort1 == tmrLppland.Sort {
  1889. exist = true
  1890. break
  1891. }
  1892. }
  1893. if exist {
  1894. for _, tmrLppland := range tmrLpplandList {
  1895. if sort1 <= tmrLppland.Sort && lpplandtlsort > tmrLppland.Sort {
  1896. tmrLppland.Sort++
  1897. } else if sort1 >= tmrLppland.Sort && lpplandtlsort <= tmrLppland.Sort {
  1898. tmrLppland.Sort--
  1899. }
  1900. }
  1901. for _, tmrLppland := range tmrLpplandList {
  1902. if tmrLppland.Id == lpplandtlid {
  1903. tmrLppland.Sort = sort1
  1904. break
  1905. }
  1906. }
  1907. } else {
  1908. if oldsort < sort && len(tmrLpplandList) > 1 {
  1909. for i, tmrLppland := range tmrLpplandList {
  1910. tmrLppland.Sort = sort + int64(i) - 1
  1911. }
  1912. } else {
  1913. for i, tmrLppland := range tmrLpplandList {
  1914. tmrLppland.Sort = sort + int64(i)
  1915. }
  1916. }
  1917. }
  1918. if oldsort > sort {
  1919. for _, lppland := range lpplandList {
  1920. if lppland.Sort == sort {
  1921. // uptmrid = lppland.Tmrid
  1922. sort = lppland.Sort
  1923. break
  1924. }
  1925. }
  1926. } else {
  1927. var uptmrid int64
  1928. for _, lppland := range lpplandList {
  1929. if lppland.Sort == sort && lppland.Tmrid != tmrid {
  1930. uptmrid = lppland.Tmrid
  1931. sort = lppland.Sort
  1932. } else if uptmrid != 0 && uptmrid == lppland.Tmrid {
  1933. sort = lppland.Sort
  1934. }
  1935. }
  1936. }
  1937. upcount := int64(len(tmrLpplandList))
  1938. if oldsort > sort {
  1939. for _, lppland := range lpplandList {
  1940. if lppland.Sort >= sort && lppland.Tmrid != tmrid {
  1941. lppland.Sort += upcount
  1942. tmrLpplandList = append(tmrLpplandList, lppland)
  1943. }
  1944. }
  1945. } else {
  1946. for _, lppland := range lpplandList {
  1947. if lppland.Sort <= sort && lppland.Sort >= oldsort && lppland.Tmrid != tmrid {
  1948. lppland.Sort -= upcount
  1949. tmrLpplandList = append(tmrLpplandList, lppland)
  1950. }
  1951. }
  1952. }
  1953. updateLpplandList := make([]*lpplandtl1, 0)
  1954. for _, lppland := range lpplandList {
  1955. exist := false
  1956. for _, tmrLppland := range tmrLpplandList {
  1957. if lppland.Id == tmrLppland.Id {
  1958. exist = true
  1959. break
  1960. }
  1961. }
  1962. if !exist {
  1963. updateLpplandList = append(updateLpplandList, lppland)
  1964. }
  1965. }
  1966. tmrLpplandList = append(tmrLpplandList, updateLpplandList...)
  1967. tx.Begin()
  1968. // _, err = tx.Table("lpplandtl1").Update(&tmrLpplandList)
  1969. var wg sync.WaitGroup
  1970. for _, lppland := range tmrLpplandList {
  1971. wg.Add(1)
  1972. go func(lppland *lpplandtl1) {
  1973. defer wg.Done()
  1974. _, err = tx.SQL(`update lpplandtl1 set sort = ? where id = ? and pastureid = ? `, lppland.Sort, lppland.Id, lppland.Pastureid).Execute()
  1975. if err != nil {
  1976. log.Println("UpdateLpplandtlSort-error-2: ", err)
  1977. tx.Rollback()
  1978. appG.Response(http.StatusOK, e.ERROR, err)
  1979. return
  1980. }
  1981. }(lppland)
  1982. }
  1983. wg.Wait()
  1984. err = tx.Commit()
  1985. if err != nil {
  1986. log.Println("UpdateLpplandtlSort-error-3: ", err)
  1987. tx.Rollback()
  1988. appG.Response(http.StatusOK, e.ERROR, err)
  1989. return
  1990. }
  1991. appG.Response(http.StatusOK, e.SUCCESS, true)
  1992. }
  1993. func AddLpplandtlDate(c *gin.Context) {
  1994. appG := app.Gin{C: c}
  1995. dataByte, _ := ioutil.ReadAll(c.Request.Body)
  1996. fsion := gofasion.NewFasion(string(dataByte))
  1997. parammaps := fsion.Get("parammaps")
  1998. tx := restful.Engine.NewSession()
  1999. defer tx.Close()
  2000. exist := false
  2001. var err error
  2002. lpplandList := make([]*lpplandtl1, 0)
  2003. err = tx.Table("lpplandtl1date").Select("id,pastureid,sort,barid,tmrid,tmrname").Where("lppid = ? ", parammaps.Get("lppid").ValueStr()).And("pastureid = ?", parammaps.Get("pastureid").ValueStr()).
  2004. And("date = ? ", parammaps.Get("date").ValueStr()).OrderBy("sort").Find(&lpplandList)
  2005. if err != nil {
  2006. log.Println("AddLpplandtl-error-1: ", err)
  2007. appG.Response(http.StatusOK, e.ERROR, err)
  2008. return
  2009. }
  2010. if parammaps.Get("id").ValueStr() != "" || parammaps.Get("id").ValueStr() != "0" {
  2011. for _, lppand := range lpplandList {
  2012. fmt.Println(parammaps.Get("id").ValueInt64())
  2013. if lppand.Id == parammaps.Get("id").ValueInt64() {
  2014. if lppand.Tmrid == parammaps.Get("tmrid").ValueInt64() {
  2015. appG.Response(http.StatusOK, e.SUCCESS, true)
  2016. return
  2017. }
  2018. exist = true
  2019. break
  2020. }
  2021. }
  2022. }
  2023. tmrid := parammaps.Get("tmrid").ValueInt64()
  2024. if !exist {
  2025. var sort int64 = -1
  2026. for _, lppand := range lpplandList {
  2027. if lppand.Barid == parammaps.Get("barid").ValueInt64() {
  2028. _, err := tx.SQL(" update lpplandtl1date set lweight =lweight + ? where id = ? and pastureid = ? ", parammaps.Get("lweight").ValueStr(), lppand.Id, parammaps.Get("pastureid").ValueStr()).Execute()
  2029. if err != nil {
  2030. log.Println("AddLpplandtl-error-2: ", err)
  2031. appG.Response(http.StatusOK, e.ERROR, err)
  2032. return
  2033. }
  2034. appG.Response(http.StatusOK, e.SUCCESS, true)
  2035. return
  2036. }
  2037. }
  2038. for i, lppand := range lpplandList {
  2039. lppand.Sort = int64(i) + 1
  2040. }
  2041. updateLpplandList := make([]*lpplandtl1, 0)
  2042. for i, lppand := range lpplandList {
  2043. n := i + 1
  2044. if lppand.Tmrid == tmrid {
  2045. sort = int64(n) + 1
  2046. lppand.Sort = int64(n)
  2047. updateLpplandList = append(updateLpplandList, lppand)
  2048. } else if sort > 0 {
  2049. lppand.Sort = int64(n) + 2
  2050. updateLpplandList = append(updateLpplandList, lppand)
  2051. }
  2052. }
  2053. tx.Begin()
  2054. for _, lppand := range updateLpplandList {
  2055. _, err := tx.SQL(" update lpplandtl1date set sort = ? where id = ? and pastureid = ? and date = ? ", lppand.Sort, lppand.Id, lppand.Pastureid, parammaps.Get("date").ValueStr()).Execute()
  2056. if err != nil {
  2057. tx.Rollback()
  2058. log.Println("AddLpplandtl-error-2: ", err)
  2059. appG.Response(http.StatusOK, e.ERROR, err)
  2060. return
  2061. }
  2062. }
  2063. if sort < 0 && len(lpplandList) > 0 {
  2064. sort = int64(len(lpplandList) + 1)
  2065. } else if len(lpplandList) == 0 {
  2066. sort = 1
  2067. }
  2068. _, err = tx.SQL(`INSERT INTO lpplandtl1date(pastureid,lppid,barid,barname,fpdid,lweight,sort,tmrid,tmrname,fttype,background,cowcount,ccountradio,date)
  2069. VALUES (?,?,?,?,?,?,?,?,?,
  2070. ?,?,IF(?='',0,?),IF(?='',0,?),?)`,
  2071. parammaps.Get("pastureid").ValueStr(),
  2072. parammaps.Get("lppid").ValueStr(),
  2073. parammaps.Get("barid").ValueStr(),
  2074. parammaps.Get("barname").ValueStr(),
  2075. parammaps.Get("fpdid").ValueStr(),
  2076. parammaps.Get("lweight").ValueStr(),
  2077. sort,
  2078. parammaps.Get("tmrid").ValueStr(),
  2079. parammaps.Get("tmrname").ValueStr(),
  2080. parammaps.Get("fttype").ValueStr(),
  2081. parammaps.Get("background").ValueStr(),
  2082. parammaps.Get("cowcount").ValueStr(),
  2083. parammaps.Get("cowcount").ValueStr(),
  2084. parammaps.Get("ccountradio").ValueStr(),
  2085. parammaps.Get("ccountradio").ValueStr(),
  2086. parammaps.Get("date").ValueStr()).Execute()
  2087. if err != nil {
  2088. tx.Rollback()
  2089. log.Println("AddLpplandtl-error-3: ", err)
  2090. appG.Response(http.StatusOK, e.ERROR, err)
  2091. return
  2092. }
  2093. err = tx.Commit()
  2094. if err != nil {
  2095. tx.Rollback()
  2096. log.Println("AddLpplandtl-error-6: ", err)
  2097. appG.Response(http.StatusOK, e.ERROR, err)
  2098. return
  2099. }
  2100. } else {
  2101. lpplandid := parammaps.Get("id").ValueInt64()
  2102. // updateLpplandList := make([]*lpplandtl1, 0)
  2103. var oldsort int64
  2104. for i, lppand := range lpplandList {
  2105. lppand.Sort = int64(i) + 1
  2106. }
  2107. noup := false
  2108. for i, lppand := range lpplandList {
  2109. if lppand.Id == lpplandid {
  2110. oldsort = lppand.Sort
  2111. b := false
  2112. for _, lppand := range lpplandList {
  2113. if lppand.Tmrid == tmrid {
  2114. noup = false
  2115. b = true
  2116. break
  2117. }
  2118. }
  2119. if !b {
  2120. if i == 0 || i == len(lpplandList)-1 {
  2121. noup = true
  2122. }
  2123. if i != 0 && i < len(lpplandList)-1 {
  2124. if lpplandList[i-1].Tmrid != lppand.Tmrid || lpplandList[i+1].Tmrid != lppand.Tmrid {
  2125. noup = true
  2126. }
  2127. }
  2128. }
  2129. break
  2130. }
  2131. }
  2132. if noup {
  2133. _, err := tx.SQL(" update lpplandtl1date set tmrid = ? , tmrname = ? where id = ? and pastureid = ? and date = ? ",
  2134. parammaps.Get("tmrid").ValueStr(), parammaps.Get("tmrname").ValueStr(), lpplandid, parammaps.Get("pastureid").ValueStr(), parammaps.Get("date").ValueStr()).Execute()
  2135. if err != nil {
  2136. tx.Rollback()
  2137. log.Println("AddLpplandtl-error-2: ", err)
  2138. appG.Response(http.StatusOK, e.ERROR, err)
  2139. return
  2140. }
  2141. } else {
  2142. for i, lppand := range lpplandList {
  2143. if lppand.Id == lpplandid {
  2144. if i != 0 {
  2145. if lpplandList[i-1].Tmrid == tmrid {
  2146. _, err := tx.SQL(" update lpplandtl1date set tmrid = ? , tmrname = ? where id = ? and pastureid = ? and date = ? ",
  2147. parammaps.Get("tmrid").ValueStr(), parammaps.Get("tmrname").ValueStr(), lpplandid, parammaps.Get("pastureid").ValueStr(), parammaps.Get("date").ValueStr()).Execute()
  2148. if err != nil {
  2149. tx.Rollback()
  2150. log.Println("AddLpplandtl-error-2: ", err)
  2151. appG.Response(http.StatusOK, e.ERROR, err)
  2152. return
  2153. }
  2154. tx.Commit()
  2155. appG.Response(http.StatusOK, e.SUCCESS, true)
  2156. return
  2157. }
  2158. }
  2159. if i < len(lpplandList)-1 {
  2160. if lpplandList[i+1].Tmrid == tmrid {
  2161. _, err := tx.SQL(" update lpplandtl1date set tmrid = ? , tmrname = ? where id = ? and pastureid = ? and date = ? ", parammaps.Get("tmrid").ValueStr(),
  2162. parammaps.Get("tmrname").ValueStr(), lpplandid, parammaps.Get("pastureid").ValueStr(), parammaps.Get("date").ValueStr()).Execute()
  2163. if err != nil {
  2164. tx.Rollback()
  2165. log.Println("AddLpplandtl-error-2: ", err)
  2166. appG.Response(http.StatusOK, e.ERROR, err)
  2167. return
  2168. }
  2169. tx.Commit()
  2170. appG.Response(http.StatusOK, e.SUCCESS, true)
  2171. return
  2172. }
  2173. }
  2174. break
  2175. }
  2176. }
  2177. exist := false
  2178. sort1 := 0
  2179. a := false
  2180. for _, lppand := range lpplandList {
  2181. if lppand.Tmrid == tmrid && lppand.Id != lpplandid {
  2182. sort1 = int(lppand.Sort)
  2183. if !a {
  2184. for _, lppand1 := range lpplandList {
  2185. if lppand1.Id == lpplandid {
  2186. lppand1.Tmrid = tmrid
  2187. lppand1.Tmrname = lppand.Tmrname
  2188. a = true
  2189. // lppand1.Sort = lppand.Sort
  2190. break
  2191. }
  2192. }
  2193. }
  2194. exist = true
  2195. }
  2196. }
  2197. if exist {
  2198. if oldsort > int64(sort1) {
  2199. for _, lppand := range lpplandList {
  2200. if lppand.Id == lpplandid {
  2201. lppand.Sort = int64(sort1) + 1
  2202. continue
  2203. }
  2204. if lppand.Sort >= int64(sort1)+1 {
  2205. lppand.Sort++
  2206. }
  2207. }
  2208. } else {
  2209. for _, lppand := range lpplandList {
  2210. if lppand.Id == lpplandid {
  2211. lppand.Sort = int64(sort1) + 1
  2212. continue
  2213. }
  2214. // if lppand.Sort > oldsort {
  2215. // lppand.Sort--
  2216. // }
  2217. if lppand.Sort > oldsort && lppand.Sort < int64(sort1)+1 {
  2218. lppand.Sort--
  2219. } else if lppand.Sort <= int64(sort1)+1 {
  2220. lppand.Sort++
  2221. }
  2222. }
  2223. }
  2224. } else {
  2225. for _, lppand := range lpplandList {
  2226. if lppand.Id == lpplandid {
  2227. lppand.Sort = int64(len(lpplandList)) + 1
  2228. lppand.Tmrid = tmrid
  2229. lppand.Tmrname = parammaps.Get("tmrname").ValueStr()
  2230. break
  2231. }
  2232. }
  2233. }
  2234. sort.Slice(lpplandList, func(i, j int) bool {
  2235. return lpplandList[i].Sort < lpplandList[j].Sort // 升序
  2236. })
  2237. for i, lppand := range lpplandList {
  2238. lppand.Sort = int64(i) + 1
  2239. }
  2240. for _, lppand := range lpplandList {
  2241. _, err := tx.SQL(" update lpplandtl1date set tmrid = ? , tmrname = ?,sort = ? where id = ? and pastureid = ? and date = ? ",
  2242. lppand.Tmrid, lppand.Tmrname, lppand.Sort, lppand.Id, lppand.Pastureid, parammaps.Get("date").ValueStr()).Execute()
  2243. if err != nil {
  2244. tx.Rollback()
  2245. log.Println("AddLpplandtl-error-2: ", err)
  2246. appG.Response(http.StatusOK, e.ERROR, err)
  2247. return
  2248. }
  2249. }
  2250. }
  2251. tx.Commit()
  2252. // lpplandid := parammaps.Get("id").ValueInt64()
  2253. // updateLpplandList := make([]*lpplandtl1, 0)
  2254. // var oldsort int64
  2255. // for i, lppand := range lpplandList {
  2256. // lppand.Sort = int64(i) + 1
  2257. // }
  2258. // for _, lppand := range lpplandList {
  2259. // if lppand.Id == lpplandid {
  2260. // oldsort = lppand.Sort
  2261. // break
  2262. // }
  2263. // }
  2264. // for _, lppand := range lpplandList {
  2265. // if lppand.Tmrid == tmrid && lppand.Id != lpplandid && sort < 0 {
  2266. // sort = lppand.Sort
  2267. // break
  2268. // }
  2269. // }
  2270. // if sort == -1 {
  2271. // sort = 1
  2272. // }
  2273. // if oldsort < sort {
  2274. // for _, lppand := range lpplandList {
  2275. // if lppand.Id != lpplandid && lppand.Sort > oldsort && lppand.Sort < sort {
  2276. // lppand.Sort--
  2277. // updateLpplandList = append(updateLpplandList, lppand)
  2278. // } else if lppand.Sort > sort && lppand.Id != lpplandid {
  2279. // lppand.Sort++
  2280. // updateLpplandList = append(updateLpplandList, lppand)
  2281. // }
  2282. // }
  2283. // sort--
  2284. // } else {
  2285. // for _, lppand := range lpplandList {
  2286. // if lppand.Sort < oldsort && lppand.Sort >= sort && lppand.Id != lpplandid {
  2287. // lppand.Sort++
  2288. // updateLpplandList = append(updateLpplandList, lppand)
  2289. // }
  2290. // }
  2291. // }
  2292. // var tmrlpplandList []*lpplandtl1
  2293. // for _, lppand := range lpplandList {
  2294. // exist := false
  2295. // for _, lppand1 := range updateLpplandList {
  2296. // if lppand.Id == lppand1.Id {
  2297. // exist = true
  2298. // break
  2299. // }
  2300. // }
  2301. // if !exist {
  2302. // tmrlpplandList = append(tmrlpplandList, lppand)
  2303. // }
  2304. // }
  2305. // updateLpplandList = append(updateLpplandList, tmrlpplandList...)
  2306. // if len(updateLpplandList) > 0 {
  2307. // tx.Begin()
  2308. // for _, lppand := range updateLpplandList {
  2309. // _, err := tx.SQL(" update lpplandtl1date set sort = ? where id = ? and pastureid = ? ", lppand.Sort, lppand.Id, lppand.Pastureid).Execute()
  2310. // if err != nil {
  2311. // tx.Rollback()
  2312. // log.Println("AddLpplandtl-error-2: ", err)
  2313. // appG.Response(http.StatusOK, e.ERROR, err)
  2314. // return
  2315. // }
  2316. // }
  2317. // _, err := tx.SQL(" update lpplandtl1date set tmrid = ? , tmrname = ?,sort = ? where id = ? and pastureid = ? ", parammaps.Get("tmrid").ValueStr(), parammaps.Get("tmrname").ValueStr(), sort, lpplandid, parammaps.Get("pastureid").ValueStr()).Execute()
  2318. // if err != nil {
  2319. // tx.Rollback()
  2320. // log.Println("AddLpplandtl-error-2: ", err)
  2321. // appG.Response(http.StatusOK, e.ERROR, err)
  2322. // return
  2323. // }
  2324. // tx.Commit()
  2325. // }
  2326. }
  2327. appG.Response(http.StatusOK, e.SUCCESS, true)
  2328. }
  2329. func UpdateLpplandtlDateSort(c *gin.Context) {
  2330. appG := app.Gin{C: c}
  2331. dataByte, _ := ioutil.ReadAll(c.Request.Body)
  2332. fsion := gofasion.NewFasion(string(dataByte))
  2333. parammaps := fsion.Get("parammaps")
  2334. date := parammaps.Get("date").ValueStr()
  2335. tx := restful.Engine.NewSession()
  2336. defer tx.Close()
  2337. var err error
  2338. lpplandList := make([]*lpplandtl1, 0)
  2339. err = tx.Table("lpplandtl1date").Select("id,pastureid,sort,tmrid").Where("lppid = ? ", parammaps.Get("lppid").ValueStr()).And("pastureid = ?", parammaps.Get("pastureid").ValueStr()).
  2340. And("date = ? ", date).OrderBy("sort").Find(&lpplandList)
  2341. if err != nil {
  2342. log.Println("UpdateLpplandtlSort-error-1: ", err)
  2343. appG.Response(http.StatusOK, e.ERROR, err)
  2344. return
  2345. }
  2346. var oldsort, lpplandtlsort int64
  2347. tmrid := parammaps.Get("tmrid").ValueInt64()
  2348. sort := parammaps.Get("sort").ValueInt64()
  2349. lpplandtlid := parammaps.Get("id").ValueInt64()
  2350. sort1 := parammaps.Get("sort").ValueInt64()
  2351. for i, lppland := range lpplandList {
  2352. lppland.Sort = int64(i) + 1
  2353. }
  2354. for _, lppland := range lpplandList {
  2355. if tmrid == lppland.Tmrid {
  2356. oldsort = lppland.Sort
  2357. break
  2358. }
  2359. }
  2360. for _, lppland := range lpplandList {
  2361. if lppland.Sort == sort {
  2362. for _, lppland1 := range lpplandList {
  2363. if lppland.Tmrid == lppland1.Tmrid {
  2364. sort = lppland1.Sort
  2365. if oldsort > sort {
  2366. break
  2367. }
  2368. }
  2369. }
  2370. break
  2371. }
  2372. }
  2373. if oldsort == sort {
  2374. appG.Response(http.StatusOK, e.SUCCESS, true)
  2375. return
  2376. }
  2377. tmrLpplandList := make([]*lpplandtl1, 0)
  2378. for _, lppland := range lpplandList {
  2379. if lppland.Tmrid == tmrid {
  2380. tmrLpplandList = append(tmrLpplandList, lppland)
  2381. if lppland.Id == lpplandtlid {
  2382. lpplandtlsort = lppland.Sort
  2383. }
  2384. }
  2385. }
  2386. exist := false
  2387. for _, tmrLppland := range tmrLpplandList {
  2388. if sort1 == tmrLppland.Sort {
  2389. exist = true
  2390. break
  2391. }
  2392. }
  2393. if exist {
  2394. for _, tmrLppland := range tmrLpplandList {
  2395. if sort1 <= tmrLppland.Sort && lpplandtlsort > tmrLppland.Sort {
  2396. tmrLppland.Sort++
  2397. } else if sort1 >= tmrLppland.Sort && lpplandtlsort <= tmrLppland.Sort {
  2398. tmrLppland.Sort--
  2399. }
  2400. }
  2401. for _, tmrLppland := range tmrLpplandList {
  2402. if tmrLppland.Id == lpplandtlid {
  2403. tmrLppland.Sort = sort1
  2404. break
  2405. }
  2406. }
  2407. } else {
  2408. if oldsort < sort && len(tmrLpplandList) > 1 {
  2409. for i, tmrLppland := range tmrLpplandList {
  2410. tmrLppland.Sort = sort + int64(i) - 1
  2411. }
  2412. } else {
  2413. for i, tmrLppland := range tmrLpplandList {
  2414. tmrLppland.Sort = sort + int64(i)
  2415. }
  2416. }
  2417. }
  2418. if oldsort > sort {
  2419. for _, lppland := range lpplandList {
  2420. if lppland.Sort == sort {
  2421. // uptmrid = lppland.Tmrid
  2422. sort = lppland.Sort
  2423. break
  2424. }
  2425. }
  2426. } else {
  2427. var uptmrid int64
  2428. for _, lppland := range lpplandList {
  2429. if lppland.Sort == sort && lppland.Tmrid != tmrid {
  2430. uptmrid = lppland.Tmrid
  2431. sort = lppland.Sort
  2432. } else if uptmrid != 0 && uptmrid == lppland.Tmrid {
  2433. sort = lppland.Sort
  2434. }
  2435. }
  2436. }
  2437. upcount := int64(len(tmrLpplandList))
  2438. if oldsort > sort {
  2439. for _, lppland := range lpplandList {
  2440. if lppland.Sort >= sort && lppland.Tmrid != tmrid {
  2441. lppland.Sort += upcount
  2442. tmrLpplandList = append(tmrLpplandList, lppland)
  2443. }
  2444. }
  2445. } else {
  2446. for _, lppland := range lpplandList {
  2447. if lppland.Sort <= sort && lppland.Sort >= oldsort && lppland.Tmrid != tmrid {
  2448. lppland.Sort -= upcount
  2449. tmrLpplandList = append(tmrLpplandList, lppland)
  2450. }
  2451. }
  2452. }
  2453. updateLpplandList := make([]*lpplandtl1, 0)
  2454. for _, lppland := range lpplandList {
  2455. exist := false
  2456. for _, tmrLppland := range tmrLpplandList {
  2457. if lppland.Id == tmrLppland.Id {
  2458. exist = true
  2459. break
  2460. }
  2461. }
  2462. if !exist {
  2463. updateLpplandList = append(updateLpplandList, lppland)
  2464. }
  2465. }
  2466. tmrLpplandList = append(tmrLpplandList, updateLpplandList...)
  2467. tx.Begin()
  2468. // _, err = tx.Table("lpplandtl1").Update(&tmrLpplandList)
  2469. var wg sync.WaitGroup
  2470. for _, lppland := range tmrLpplandList {
  2471. wg.Add(1)
  2472. go func(lppland *lpplandtl1) {
  2473. defer wg.Done()
  2474. _, err = tx.SQL(`update lpplandtl1date set sort = ? where id = ? and pastureid = ? and date = ? `, lppland.Sort, lppland.Id, lppland.Pastureid, date).Execute()
  2475. if err != nil {
  2476. log.Println("UpdateLpplandtlSort-error-2: ", err)
  2477. tx.Rollback()
  2478. appG.Response(http.StatusOK, e.ERROR, err)
  2479. return
  2480. }
  2481. }(lppland)
  2482. }
  2483. wg.Wait()
  2484. err = tx.Commit()
  2485. if err != nil {
  2486. log.Println("UpdateLpplandtlSort-error-3: ", err)
  2487. tx.Rollback()
  2488. appG.Response(http.StatusOK, e.ERROR, err)
  2489. return
  2490. }
  2491. appG.Response(http.StatusOK, e.SUCCESS, true)
  2492. }
  2493. func GetFeedpUndistributed(c *gin.Context) {
  2494. appG := app.Gin{C: c}
  2495. tx := restful.Engine.NewSession()
  2496. defer tx.Close()
  2497. dataByte, _ := ioutil.ReadAll(c.Request.Body)
  2498. fsion := gofasion.NewFasion(string(dataByte))
  2499. timesMax := fsion.Get("times").ValueInt()
  2500. pastureid := fsion.Get("pastureid").ValueStr()
  2501. data := make(map[string]interface{})
  2502. for times := 1; times <= timesMax; times++ {
  2503. sqlStr := `SELECT trim(feedp.pastureid) pastureid,barname,trim(barid) barid,trim(ftid) arrid,1 as type,? as times,ft.tname ftname,ft.tcolor background,0 isfill FROM feedp
  2504. inner join feedtemplet ft
  2505. on ft.id = feedp.ftid and ft.pastureid=?
  2506. WHERE feedp.pastureid = ?
  2507. GROUP BY feedp.ftid
  2508. UNION
  2509. SELECT trim(feedp.pastureid) pastureid,barname,barid,trim(ptsfid) arrid,0 as type,? as times,ft.tname ptsfname ,ft.tcolor background,1 isfill FROM feedp
  2510. inner join feedtemplet ft
  2511. on ft.id = feedp.ptsfid and ft.pastureid=?
  2512. WHERE feedp.pastureid = ? and (SELECT inforvalue FROM sysopt WHERE sysopt.pastureid=feedp.pastureid AND sysopt.inforname= 'isEnableSupplyFeed') = 1
  2513. GROUP BY feedp.ptsfid`
  2514. ftList, err := tx.SQL(sqlStr, times, pastureid, pastureid, times, pastureid, pastureid).Query().List()
  2515. if err != nil {
  2516. log.Println("GetFeedpUndistributed-error-1: ", err)
  2517. appG.Response(http.StatusOK, e.ERROR, nil)
  2518. return
  2519. }
  2520. ftDetailList, err := tx.SQL(`SELECT TRIM(id) id,times,tratio,ROUND(ptsrate*weight,2)-ptsuse weight,TRIM(barid) barid,TRIM(pastureid) pastureid,TRIM(ptid) ptid,TRIM(ptsid ) ptsid ,
  2521. (select bname from bar where pastureid =fpdetail.pastureid and id = fpdetail.barid ) barname,0 AS fttype,cowcount,ccountradio,1 isfill FROM fpdetail
  2522. WHERE fpdetail.pastureid = ? AND times=? AND ptsuse< ROUND(ptsrate*weight,2)
  2523. UNION
  2524. SELECT TRIM(id) id,times,tratio,ROUND((1-ptsrate)*weight,2)-ptuse weight,TRIM(barid) barid,TRIM(pastureid) pastureid,TRIM(ptid) ptid,TRIM(ptsid ) ptsid ,
  2525. (select bname from bar where pastureid =fpdetail.pastureid and id = fpdetail.barid ) barname,1 AS fttype,cowcount,ccountradio,0 isfill FROM fpdetail
  2526. WHERE fpdetail.pastureid = ? AND times=? AND ptuse<ROUND((1-ptsrate)*weight,2)
  2527. ORDER BY barid`, pastureid, times, pastureid, times).Query().List()
  2528. if err != nil {
  2529. log.Println("GetFeedpUndistributed-error-2: ", err)
  2530. appG.Response(http.StatusOK, e.ERROR, nil)
  2531. return
  2532. }
  2533. for _, ft := range ftList {
  2534. arrList := make([]map[string]interface{}, 0)
  2535. arrid := ft["arrid"].(string)
  2536. for _, detail := range ftDetailList {
  2537. if _, ok := detail["ptid"]; ok {
  2538. if arrid == detail["ptid"].(string) && ft["isfill"].(int64) == detail["isfill"].(int64) {
  2539. detail["background"] = ft["background"]
  2540. arrList = append(arrList, detail)
  2541. }
  2542. } else if _, ok := detail["ptsid"]; ok {
  2543. if arrid == detail["ptsid"].(string) && ft["isfill"].(int64) == detail["isfill"].(int64) {
  2544. detail["background"] = ft["background"]
  2545. arrList = append(arrList, detail)
  2546. }
  2547. }
  2548. }
  2549. if len(arrList) > 0 {
  2550. ft["arrList"] = arrList
  2551. }
  2552. }
  2553. var key string
  2554. if times == 1 {
  2555. key = "one"
  2556. } else if times == 2 {
  2557. key = "two"
  2558. } else if times == 3 {
  2559. key = "three"
  2560. } else if times == 4 {
  2561. key = "four"
  2562. } else if times == 5 {
  2563. key = "five"
  2564. } else {
  2565. key = "six"
  2566. }
  2567. data[key] = ftList
  2568. }
  2569. appG.Response(http.StatusOK, e.SUCCESS, data)
  2570. }