123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245 |
- package controllers
- import (
- "ERP_storage/Nats/NatsServer"
- "ERP_storage/conf"
- "ERP_storage/logs"
- "ERP_storage/models/Account"
- "ERP_storage/models/Basic"
- "ERP_storage/models/Contract"
- "ERP_storage/models/Stock"
- "fmt"
- userlibs "git.baozhida.cn/ERP_libs/User"
- "git.baozhida.cn/ERP_libs/lib"
- "github.com/beego/beego/v2/adapter/orm"
- beego "github.com/beego/beego/v2/server/web"
- "github.com/robfig/cron/v3"
- "math"
- "strconv"
- "strings"
- "time"
- )
- type ContractController struct {
- beego.Controller
- User userlibs.User
- }
- func (c *ContractController) Prepare() {
- c.User = *Account.User_r
- }
- func (c *ContractController) Contract_GenT_number() {
- o := orm.NewOrm()
- ContractDao := Contract.NewContract(o)
- T_number := ""
- rand_x := 1
- for true {
- T_number = fmt.Sprintf("GZBZD-%s%03d", time.Now().Format("20060102"), rand_x)
- _, err := ContractDao.Read_Contract_ByT_number(T_number)
- if err != nil && err.Error() == orm.ErrNoRows.Error() {
- break
- }
- rand_x += 1
- }
- c.Data["json"] = lib.JSONS{Code: 200, Msg: "ok!", Data: T_number}
- c.ServeJSON()
- return
- }
- func (c *ContractController) Contract_List() {
- // 分页参数 初始化
- page, _ := c.GetInt("page")
- if page < 1 {
- page = 1
- }
- page_z, _ := c.GetInt("page_z")
- if page_z < 1 {
- page_z = conf.Page_size
- }
- // 查询
- T_name := c.GetString("T_name")
- T_state, _ := c.GetInt("T_state")
- userList, _ := NatsServer.Read_User_List_All()
- Account.Read_User_All_Map(userList)
- ContractDao := Contract.NewContract(orm.NewOrm())
- R_List, R_cnt := ContractDao.Read_Contract_List("", T_name, T_state, 0, page, page_z)
- var r_jsons lib.R_JSONS
- r_jsons.Num = R_cnt
- r_jsons.Data = R_List
- r_jsons.Page = page
- r_jsons.Page_size = int(math.Ceil(float64(R_cnt) / float64(page_z)))
- c.Data["json"] = lib.JSONS{Code: 200, Msg: "ok!", Data: r_jsons}
- c.ServeJSON()
- return
- }
- func (c *ContractController) Contract_User_List() {
- // 分页参数 初始化
- page, _ := c.GetInt("page")
- if page < 1 {
- page = 1
- }
- page_z, _ := c.GetInt("page_z")
- if page_z < 1 {
- page_z = conf.Page_size
- }
- // 查询
- T_name := c.GetString("T_name")
- T_state, _ := c.GetInt("T_state")
- userList, _ := NatsServer.Read_User_List_All()
- Account.Read_User_All_Map(userList)
- ContractDao := Contract.NewContract(orm.NewOrm())
- R_List, R_cnt := ContractDao.Read_Contract_List(c.User.T_uuid, T_name, T_state, 0, page, page_z)
- var r_jsons lib.R_JSONS
- r_jsons.Num = R_cnt
- r_jsons.Data = R_List
- r_jsons.Page = page
- r_jsons.Page_size = int(math.Ceil(float64(R_cnt) / float64(page_z)))
- c.Data["json"] = lib.JSONS{Code: 200, Msg: "ok!", Data: r_jsons}
- c.ServeJSON()
- return
- }
- func (c *ContractController) Contract_Get() {
- // 查询
- T_number := c.GetString("T_number")
- o := orm.NewOrm()
- ContractDao := Contract.NewContract(o)
- DeviceDao := Stock.NewDevice(o)
- ContractProductDao := Contract.NewContractProduct(o)
- contract, err := ContractDao.Read_Contract_ByT_number(T_number)
- if err != nil {
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "查询失败!"}
- c.ServeJSON()
- return
- }
- productList := ContractProductDao.Read_ContractProduct_List(contract.T_number)
- var pList []Contract.ContractProduct_R
- for _, v := range productList {
- p := Contract.ContractProductToContractProduct_R(v)
- p.T_device_list, _ = DeviceDao.Read_DeviceSn_List(T_number, v.T_product_id, "", "")
- pList = append(pList, p)
- }
- userList, _ := NatsServer.Read_User_List_All()
- Account.Read_User_All_Map(userList)
- c.Data["json"] = lib.JSONS{Code: 200, Msg: "ok!", Data: Contract.ContractToContract_Detail(contract, pList)}
- c.ServeJSON()
- return
- }
- func (c *ContractController) Contract_Add() {
- T_number := c.GetString("T_number")
- T_customer := c.GetString("T_customer")
- T_money, _ := c.GetFloat("T_money") // 总价
- T_discount, _ := c.GetFloat("T_discount") // 优惠价
- T_date := c.GetString("T_date")
- T_product := c.GetString("T_product")
- T_remark := c.GetString("T_remark")
- T_pdf := c.GetString("T_pdf")
- T_project := c.GetString("T_project")
- T_recoveries := c.GetString("T_recoveries")
- T_invoice := c.GetString("T_invoice")
- T_submit := c.GetString("T_submit")
- if len(T_submit) == 0 {
- T_submit = c.User.T_uuid
- }
- var_ := Contract.Contract{
- T_number: T_number,
- T_customer: T_customer,
- T_money: float32(T_money),
- T_discount: float32(T_discount),
- T_project: T_project,
- T_type: 1, //合同类型 1-销售合同 2-验证合同
- T_date: T_date,
- T_out: 1,
- T_State: 3,
- T_remark: T_remark,
- T_pdf: T_pdf,
- T_submit: T_submit,
- T_recoveries: T_recoveries,
- T_invoice: T_invoice,
- }
- _, var_.T_recoveries_money = Contract.ContractToContractFinance_R(T_recoveries)
- _, var_.T_invoice_money = Contract.ContractToContractFinance_R(T_invoice)
- o := orm.NewOrm()
- o.Begin()
- ContractDao := Contract.NewContract(o)
- ContractProductDao := Contract.NewContractProduct(o)
- _, err := ContractDao.Read_Contract_ByT_number(T_number)
- if err == nil {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "合同编号重复!"}
- c.ServeJSON()
- return
- }
- _, err = ContractDao.Add_Contract(var_)
- if err != nil {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 203, Msg: "添加失败"}
- c.ServeJSON()
- return
- }
- if len(T_product) == 0 {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "合同产品明细不能为空"}
- c.ServeJSON()
- return
- }
- productList := lib.SplitString(T_product, "|")
- for _, v := range productList {
- product_id, _ := strconv.Atoi(strings.Split(v, ",")[0])
- num, _ := strconv.Atoi(strings.Split(v, ",")[1])
- contractProduct := Contract.ContractProduct{
- T_contract_number: T_number,
- T_product_id: product_id,
- T_product_total: num,
- T_product_out: 0, // 已出库数量
- T_State: 1, // 1-未出库 2-已部分出库 3-已全部出库
- }
- _, err = ContractProductDao.Add_ContractProduct(contractProduct)
- if err != nil {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 203, Msg: "添加失败"}
- c.ServeJSON()
- return
- }
- }
- o.Commit()
- NatsServer.AddUserLogs(c.User.T_uuid, "合同", "添加", var_)
- c.Data["json"] = lib.JSONS{Code: 200, Msg: "ok!", Data: T_number}
- c.ServeJSON()
- return
- }
- func (c *ContractController) Contract_Approval() {
- T_number := c.GetString("T_number")
- T_state, _ := c.GetInt("T_state")
- o := orm.NewOrm()
- ContractDao := Contract.NewContract(o)
- contract, err := ContractDao.Read_Contract_ByT_number(T_number)
- if err != nil {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "修改失败!"}
- c.ServeJSON()
- return
- }
- // 1-已通过 2-未通过
- contract.T_State = T_state
- contract.T_approver = c.User.T_uuid
- err = ContractDao.Update_Contract(contract, "T_State", "T_approver")
- if err != nil {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 203, Msg: "添加失败"}
- c.ServeJSON()
- return
- }
- if T_state == 1 {
- NatsServer.AddNews(contract.T_submit, fmt.Sprintf("【合同审核】您提交的合同(%s)审核已通过", T_number), conf.ContractApprovalUrl)
- }
- if T_state == 2 {
- NatsServer.AddNews(contract.T_submit, fmt.Sprintf("【合同审核】您提交的合同(%s)审核未通过", T_number), conf.ContractApprovalUrl)
- }
- NatsServer.AddUserLogs(c.User.T_uuid, "合同", "审核", contract)
- c.Data["json"] = lib.JSONS{Code: 200, Msg: "ok!", Data: T_number}
- c.ServeJSON()
- return
- }
- func (c *ContractController) Contract_Edit() {
- T_number := c.GetString("T_number")
- T_customer := c.GetString("T_customer")
- T_money, _ := c.GetFloat("T_money")
- T_discount, _ := c.GetFloat("T_discount") // 优惠价
- T_date := c.GetString("T_date")
- T_product := c.GetString("T_product")
- T_remark := c.GetString("T_remark")
- T_pdf := c.GetString("T_pdf")
- T_project := c.GetString("T_project")
- T_recoveries := c.GetString("T_recoveries")
- T_invoice := c.GetString("T_invoice")
- T_submit := c.GetString("T_submit")
- o := orm.NewOrm()
- o.Begin()
- ContractDao := Contract.NewContract(o)
- ContractProductDao := Contract.NewContractProduct(o)
- contract, err := ContractDao.Read_Contract_ByT_number(T_number)
- if err != nil {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "T_number Err!"}
- c.ServeJSON()
- return
- }
- if len(T_customer) > 0 {
- contract.T_customer = T_customer
- }
- if T_money > 0 {
- contract.T_money = float32(T_money)
- }
- if T_discount > 0 {
- contract.T_discount = float32(T_discount)
- }
- if len(T_date) > 0 {
- contract.T_date = T_date
- }
- if len(T_remark) > 0 {
- contract.T_remark = T_remark
- }
- if len(T_pdf) > 0 {
- contract.T_pdf = T_pdf
- }
- if len(T_project) > 0 {
- contract.T_project = T_project
- }
- if len(T_recoveries) > 0 {
- contract.T_recoveries = T_recoveries
- _, contract.T_recoveries_money = Contract.ContractToContractFinance_R(T_recoveries)
- }
- if len(T_invoice) > 0 {
- contract.T_invoice = T_invoice
- _, contract.T_invoice_money = Contract.ContractToContractFinance_R(T_invoice)
- }
- if len(T_submit) > 0 {
- contract.T_submit = T_submit
- }
- //1-已通过 2-未通过 3-待审核 合同状态为未通过,修改之后将状态更改为待审核
- if contract.T_State == 2 {
- contract.T_State = 3
- }
- err = ContractDao.Update_Contract(contract, "T_customer", "T_money", "T_discount", "T_date", "T_remark", "T_pdf", "T_State",
- "T_project", "T_recoveries", "T_recoveries_money", "T_invoice", "T_invoice_money", "T_submit")
- if err != nil {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 203, Msg: "添加失败"}
- c.ServeJSON()
- return
- }
- if len(T_product) == 0 {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "合同产品明细不能为空"}
- c.ServeJSON()
- return
- }
- productList := lib.SplitString(T_product, "|")
- cpl, _ := ContractProductDao.Read_ContractProductList_ByT_number(T_number)
- needToDeleteList, allList := Check_NeedToDelete_Product_List(productList, cpl)
- // 检查编辑时需要修改的产品
- for k, v := range needToDeleteList {
- id, _ := strconv.Atoi(strings.Split(k, "-")[0])
- productId, _ := strconv.Atoi(strings.Split(k, "-")[1])
- if v > 0 {
- o.Rollback()
- product, _ := Basic.Read_Product_ById(productId)
- c.Data["json"] = lib.JSONS{Code: 202, Msg: fmt.Sprintf("%s已(部分)出库,禁止删除!", product.T_name)}
- c.ServeJSON()
- return
- }
- cp := Contract.ContractProduct{Id: id}
- err = ContractProductDao.Delete_ContractProduct(cp)
- if err != nil {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "修改失败!"}
- c.ServeJSON()
- return
- }
- }
- for _, v := range productList {
- product_id, _ := strconv.Atoi(strings.Split(v, ",")[0])
- num, _ := strconv.Atoi(strings.Split(v, ",")[1])
- oldContractProduct, ok := allList[product_id]
- if !ok {
- contractProduct := Contract.ContractProduct{
- T_contract_number: T_number,
- T_product_id: product_id,
- T_product_total: num,
- T_product_out: 0, // 已出库数量
- T_State: 1, // 1-未出库 2-已部分出库 3-已全部出库
- }
- _, err = ContractProductDao.Add_ContractProduct(contractProduct)
- if err != nil {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 203, Msg: "修改失败"}
- c.ServeJSON()
- return
- } else {
- continue
- }
- }
- // 修改产品总数量
- contractProductId, _ := strconv.Atoi(strings.Split(oldContractProduct, "-")[0])
- oldNum, _ := strconv.Atoi(strings.Split(oldContractProduct, "-")[1])
- if oldNum == num {
- continue
- }
- cp := Contract.ContractProduct{Id: contractProductId, T_product_total: num}
- err = ContractProductDao.Update_ContractProduct(cp, "T_product_total")
- if err != nil {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 203, Msg: "修改失败"}
- c.ServeJSON()
- return
- }
- }
- o.Commit()
- NatsServer.AddUserLogs(c.User.T_uuid, "合同", "修改", contract)
- c.Data["json"] = lib.JSONS{Code: 200, Msg: "ok!", Data: contract.Id}
- c.ServeJSON()
- return
- }
- func (c *ContractController) Contract_Del() {
- T_number := c.GetString("T_number")
- o := orm.NewOrm()
- o.Begin()
- ContractDao := Contract.NewContract(o)
- ContractProductDao := Contract.NewContractProduct(o)
- contract, err := ContractDao.Read_Contract_ByT_number(T_number)
- if err != nil {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "T_number Err!"}
- c.ServeJSON()
- return
- }
- //1-已通过 2-未通过 3-待审核 审核状态
- if contract.T_State == 1 {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "合同已审核通过,禁止删除!"}
- c.ServeJSON()
- return
- }
- err = ContractDao.Delete_Contract(contract)
- if err != nil {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "删除失败!"}
- c.ServeJSON()
- return
- }
- //合同类型 1-销售合同 2-验证合同
- cpList := ContractProductDao.Read_ContractProduct_List(T_number)
- for _, v := range cpList {
- err = ContractProductDao.Delete_ContractProduct(v)
- if err != nil {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "删除失败!"}
- c.ServeJSON()
- return
- }
- }
- o.Commit()
- NatsServer.AddUserLogs(c.User.T_uuid, "合同", "删除", T_number)
- c.Data["json"] = lib.JSONS{Code: 200, Msg: "ok!", Data: T_number}
- c.ServeJSON()
- return
- }
- func (c *ContractController) Contract_List_For_Out() {
- // 分页参数 初始化
- page, _ := c.GetInt("page")
- if page < 1 {
- page = 1
- }
- page_z, _ := c.GetInt("page_z")
- if page_z < 1 {
- page_z = conf.Page_size
- }
- // 查询
- T_name := c.GetString("T_name")
- userList, _ := NatsServer.Read_User_List_All()
- Account.Read_User_All_Map(userList)
- ContractDao := Contract.NewContract(orm.NewOrm())
- R_List, R_cnt := ContractDao.Read_Contract_List("", T_name, 1, 1, page, page_z)
- var r_jsons lib.R_JSONS
- r_jsons.Num = R_cnt
- r_jsons.Data = R_List
- r_jsons.Page = page
- r_jsons.Page_size = int(math.Ceil(float64(R_cnt) / float64(page_z)))
- c.Data["json"] = lib.JSONS{Code: 200, Msg: "ok!", Data: r_jsons}
- c.ServeJSON()
- return
- }
- // 合同下的产品列表 出库时使用
- func (c *ContractController) Contract_Product_List() {
- // 查询
- T_number := c.GetString("T_number")
- T_depot_id, _ := c.GetInt("T_depot_id")
- o := orm.NewOrm()
- ContractDao := Contract.NewContract(o)
- ContractProductDao := Contract.NewContractProduct(o)
- contract, err := ContractDao.Read_Contract_ByT_number(T_number)
- if err != nil {
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "查询失败!"}
- c.ServeJSON()
- return
- }
- productList := ContractProductDao.Read_ContractProduct_OutList(contract.T_number)
- Stock.Read_Stock_All_Map(T_depot_id)
- var pList []Contract.ContractProduct_Out
- for _, v := range productList {
- p := Contract.ContractProductToContractProduct_Out(v)
- p.T_stock_total = Stock.Read_Stock_Get(T_depot_id, p.T_product_id)
- pList = append(pList, p)
- }
- c.Data["json"] = lib.JSONS{Code: 200, Msg: "ok!", Data: pList}
- c.ServeJSON()
- return
- }
- // 检查需要删除的合同产品列表
- func Check_NeedToDelete_Product_List(list []string, newList []Contract.ContractProduct) (needToDelete map[string]int, all map[int]string) {
- var productMap = map[int]int{}
- needToDelete = make(map[string]int)
- all = make(map[int]string)
- for _, v := range list {
- product_id, _ := strconv.Atoi(strings.Split(v, ",")[0])
- num, _ := strconv.Atoi(strings.Split(v, ",")[1])
- productMap[product_id] = num
- }
- for _, product := range newList {
- all[product.T_product_id] = fmt.Sprintf("%d-%d", product.Id, product.T_product_total)
- _, ok := productMap[product.T_product_id]
- if !ok {
- id := fmt.Sprintf("%d-%d", product.Id, product.T_product_id)
- needToDelete[id] = product.T_product_out
- }
- }
- return
- }
- // 验证合同
- func (c *ContractController) VerifyContract_List() {
- // 分页参数 初始化
- page, _ := c.GetInt("page")
- if page < 1 {
- page = 1
- }
- page_z, _ := c.GetInt("page_z")
- if page_z < 1 {
- page_z = conf.Page_size
- }
- T_customer_id := c.GetString("T_customer_id")
- // 查询
- T_name := c.GetString("T_name")
- userList, _ := NatsServer.Read_User_List_All()
- Account.Read_User_All_Map(userList)
- ContractDao := Contract.NewContract(orm.NewOrm())
- R_List, R_cnt := ContractDao.Read_VerifyContract_List(T_name, T_customer_id, page, page_z)
- var r_jsons lib.R_JSONS
- r_jsons.Num = R_cnt
- r_jsons.Data = R_List
- r_jsons.Page = page
- r_jsons.Page_size = int(math.Ceil(float64(R_cnt) / float64(page_z)))
- c.Data["json"] = lib.JSONS{Code: 200, Msg: "ok!", Data: r_jsons}
- c.ServeJSON()
- return
- }
- // 验证合同呢添加
- func (c *ContractController) VerifyContract_Add() {
- T_number := c.GetString("T_number")
- T_customer_id := c.GetString("T_customer_id")
- T_money, _ := c.GetFloat("T_money")
- T_discount, _ := c.GetFloat("T_discount")
- T_date := c.GetString("T_date")
- T_product := c.GetString("T_product")
- T_submit := c.GetString("T_submit")
- T_remark := c.GetString("T_remark")
- T_pdf := c.GetString("T_pdf")
- T_project := c.GetString("T_project")
- T_recoveries := c.GetString("T_recoveries")
- T_invoice := c.GetString("T_invoice")
- T_start_date := c.GetString("T_start_date")
- T_end_date := c.GetString("T_end_date")
- var_ := Contract.Contract{
- T_number: T_number,
- T_customer_id: T_customer_id,
- T_money: float32(T_money),
- T_discount: float32(T_discount),
- T_project: T_project,
- T_type: 2, //合同类型 1-销售合同 2-验证合同
- T_date: T_date,
- T_State: 1,
- T_remark: T_remark,
- T_pdf: T_pdf,
- T_submit: T_submit,
- T_recoveries: T_recoveries,
- T_invoice: T_invoice,
- T_start_date: T_start_date,
- T_end_date: T_end_date,
- }
- _, var_.T_recoveries_money = Contract.ContractToContractFinance_R(T_recoveries)
- _, var_.T_invoice_money = Contract.ContractToContractFinance_R(T_invoice)
- o := orm.NewOrm()
- o.Begin()
- ContractDao := Contract.NewContract(o)
- ContractProductDao := Contract.NewContractProduct(o)
- _, err := ContractDao.Read_Contract_ByT_date(T_customer_id, T_start_date, T_end_date)
- if err == nil {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "合同签约时间重复!"}
- c.ServeJSON()
- return
- }
- _, err = ContractDao.Read_Contract_ByT_number(T_number)
- if err == nil {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "合同编号重复!"}
- c.ServeJSON()
- return
- }
- ContractID, err := ContractDao.Add_Contract(var_)
- if err != nil {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 203, Msg: "添加失败"}
- c.ServeJSON()
- return
- }
- if len(T_product) == 0 {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "验证合同明细不能为空"}
- c.ServeJSON()
- return
- }
- productList := lib.SplitString(T_product, "|")
- ContractOut := 0
- for _, v := range productList {
- product_id, _ := strconv.Atoi(strings.Split(v, ",")[0])
- num, _ := strconv.Atoi(strings.Split(v, ",")[1])
- price := lib.StringToFloat64TwoDecimal(strings.Split(v, ",")[2])
- product, _ := Basic.Read_Product_ById(product_id)
- contractProduct := Contract.ContractProduct{
- T_contract_number: T_number,
- T_product_id: product_id,
- T_product_total: num,
- T_product_out: 0, // 已出库数量
- T_price: float32(price), // 价格
- T_State: 1, // 1-未出库 2-已部分出库 3-已全部出库
- }
- if product.T_class < 0 {
- contractProduct.T_State = 3
- }
- if product.T_class == 0 {
- ContractOut = 1
- }
- _, err = ContractProductDao.Add_ContractProduct(contractProduct)
- if err != nil {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "添加失败"}
- c.ServeJSON()
- return
- }
- }
- o.Commit()
- o2 := orm.NewOrm()
- ContractDao2 := Contract.NewContract(o2)
- if ContractOut == 1 {
- err = ContractDao2.Update_Contract(Contract.Contract{Id: int(ContractID), T_out: ContractOut}, "T_out")
- if err != nil {
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "更新合同出库状态失败"}
- c.ServeJSON()
- return
- }
- }
- err = Update_VerifyContract_State(T_customer_id, "ADD")
- if err != nil {
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "更新状态失败"}
- c.ServeJSON()
- return
- }
- NatsServer.AddUserLogs(c.User.T_uuid, "验证合同", "添加", var_)
- c.Data["json"] = lib.JSONS{Code: 200, Msg: "ok!", Data: T_number}
- c.ServeJSON()
- return
- }
- // 验证合同呢修改
- func (c *ContractController) VerifyContract_Edit() {
- T_number := c.GetString("T_number")
- T_money, _ := c.GetFloat("T_money")
- T_date := c.GetString("T_date")
- T_product := c.GetString("T_product")
- T_remark := c.GetString("T_remark")
- T_pdf := c.GetString("T_pdf")
- T_project := c.GetString("T_project")
- T_recoveries := c.GetString("T_recoveries")
- T_invoice := c.GetString("T_invoice")
- T_start_date := c.GetString("T_start_date")
- T_end_date := c.GetString("T_end_date")
- T_submit := c.GetString("T_submit")
- o := orm.NewOrm()
- o.Begin()
- ContractDao := Contract.NewContract(o)
- ContractProductDao := Contract.NewContractProduct(o)
- contract, err := ContractDao.Read_Contract_ByT_number(T_number)
- if err != nil || contract.T_type == 1 {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "T_number Err!"}
- c.ServeJSON()
- return
- }
- if T_money > 0 {
- contract.T_money = float32(T_money)
- }
- if len(T_date) > 0 {
- contract.T_date = T_date
- }
- if len(T_remark) > 0 {
- contract.T_remark = T_remark
- }
- if len(T_pdf) > 0 {
- contract.T_pdf = T_pdf
- }
- if len(T_project) > 0 {
- contract.T_project = T_project
- }
- if len(T_recoveries) > 0 {
- contract.T_recoveries = T_recoveries
- _, contract.T_recoveries_money = Contract.ContractToContractFinance_R(T_recoveries)
- }
- if len(T_invoice) > 0 {
- contract.T_invoice = T_invoice
- _, contract.T_invoice_money = Contract.ContractToContractFinance_R(T_invoice)
- }
- if len(T_start_date) > 0 {
- contract.T_start_date = T_start_date
- }
- if len(T_end_date) > 0 {
- contract.T_end_date = T_end_date
- }
- if len(T_submit) > 0 {
- contract.T_submit = T_submit
- }
- err = ContractDao.Update_Contract(contract, "T_money", "T_date", "T_remark", "T_pdf", "T_State", "T_project",
- "T_recoveries", "T_recoveries_money", "T_invoice", "T_invoice_money", "T_start_date", "T_end_date", "T_submit")
- if err != nil {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 203, Msg: "添加失败"}
- c.ServeJSON()
- return
- }
- if len(T_product) == 0 {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "产品明细不能为空"}
- c.ServeJSON()
- return
- }
- productList := lib.SplitString(T_product, "|")
- cpl, _ := ContractProductDao.Read_ContractProductList_ByT_number(T_number)
- needToDeleteList, allList := Check_NeedToDelete_Product_List(productList, cpl)
- // 检查编辑时需要修改的产品
- for k, v := range needToDeleteList {
- id, _ := strconv.Atoi(strings.Split(k, "-")[0])
- productId, _ := strconv.Atoi(strings.Split(k, "-")[1])
- if v > 0 {
- o.Rollback()
- product, _ := Basic.Read_Product_ById(productId)
- c.Data["json"] = lib.JSONS{Code: 202, Msg: fmt.Sprintf("%s已(部分)出库,禁止删除!", product.T_name)}
- c.ServeJSON()
- return
- }
- cp := Contract.ContractProduct{Id: id}
- err = ContractProductDao.Delete_ContractProduct(cp)
- if err != nil {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "修改失败!"}
- c.ServeJSON()
- return
- }
- }
- for _, v := range productList {
- product_id, _ := strconv.Atoi(strings.Split(v, ",")[0])
- num, _ := strconv.Atoi(strings.Split(v, ",")[1])
- price := lib.StringToFloat64TwoDecimal(strings.Split(v, ",")[2])
- oldContractProduct, ok := allList[product_id]
- if !ok {
- contractProduct := Contract.ContractProduct{
- T_contract_number: T_number,
- T_product_id: product_id,
- T_product_total: num,
- T_product_out: 0, // 已出库数量
- T_State: 1, // 1-未出库 2-已部分出库 3-已全部出库
- }
- _, err = ContractProductDao.Add_ContractProduct(contractProduct)
- if err != nil {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 203, Msg: "修改失败"}
- c.ServeJSON()
- return
- } else {
- continue
- }
- }
- // 修改产品总数量
- contractProductId, _ := strconv.Atoi(strings.Split(oldContractProduct, "-")[0])
- oldNum, _ := strconv.Atoi(strings.Split(oldContractProduct, "-")[1])
- if oldNum == num {
- continue
- }
- cp := Contract.ContractProduct{
- Id: contractProductId,
- T_product_total: num,
- T_price: float32(price), // 价格
- }
- err = ContractProductDao.Update_ContractProduct(cp, "T_product_total")
- if err != nil {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 203, Msg: "修改失败"}
- c.ServeJSON()
- return
- }
- }
- o.Commit()
- err = Update_VerifyContract_State(contract.T_customer_id, "UPDATE")
- if err != nil {
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "更新状态失败"}
- c.ServeJSON()
- return
- }
- NatsServer.AddUserLogs(c.User.T_uuid, "验证合同", "修改", contract)
- c.Data["json"] = lib.JSONS{Code: 200, Msg: "ok!", Data: contract.Id}
- c.ServeJSON()
- return
- }
- func (c *ContractController) VerifyContract_Del() {
- T_number := c.GetString("T_number")
- o := orm.NewOrm()
- o.Begin()
- ContractDao := Contract.NewContract(o)
- ContractProductDao := Contract.NewContractProduct(o)
- contract, err := ContractDao.Read_Contract_ByT_number(T_number)
- if err != nil {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "T_number Err!"}
- c.ServeJSON()
- return
- }
- err = ContractDao.Delete_Contract(contract)
- if err != nil {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "删除失败!"}
- c.ServeJSON()
- return
- }
- cpList := ContractProductDao.Read_ContractProduct_List(T_number)
- for _, v := range cpList {
- err = ContractProductDao.Delete_ContractProduct(v)
- if err != nil {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "删除失败!"}
- c.ServeJSON()
- return
- }
- }
- o.Commit()
- err = Update_VerifyContract_State(contract.T_customer_id, "DELETE")
- if err != nil {
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "修改状态失败"}
- c.ServeJSON()
- return
- }
- NatsServer.AddUserLogs(c.User.T_uuid, "验证合同", "删除", T_number)
- c.Data["json"] = lib.JSONS{Code: 200, Msg: "ok!", Data: T_number}
- c.ServeJSON()
- return
- }
- func Update_VerifyContract_State(T_customer_id, flag string) error {
- o := orm.NewOrm()
- ContractDao := Contract.NewContract(o)
- VerifyContractDao := Contract.NewVerifyContract(o)
- vcn := ContractDao.Read_VerifyContract_Newest(T_customer_id)
- vc, err := VerifyContractDao.Read_VerifyContract_ByT_customer_id(T_customer_id)
- if err != nil {
- return err
- }
- if vcn.Id == 0 {
- vc.T_sign_times = 0
- vc.T_start_date = ""
- vc.T_end_date = ""
- vc.T_State = 1
- err = VerifyContractDao.Update_VerifyContract(vc, "T_start_date", "T_end_date", "T_sign_times", "T_State")
- return err
- }
- if flag == "ADD" {
- vc.T_sign_times += 1
- } else if flag == "DELETE" {
- vc.T_sign_times -= 1
- }
- if len(vc.T_start_date) == 0 {
- vc.T_start_date = vcn.T_start_date
- }
- if vc.T_end_date != vcn.T_end_date {
- vc.T_end_date = vcn.T_end_date
- }
- nowTime := time.Now()
- now := time.Date(nowTime.Year(), nowTime.Month(), nowTime.Day(), 0, 0, 0, 0, time.Local)
- end, _ := lib.DateStrToTime(vcn.T_end_date)
- now2Month := now.AddDate(0, 2, 0)
- // 1-未签约 2-已作废 3-已签约 4-即将到期
- state := 1
- // 结束时间<今天 已过期
- if end.Before(now) {
- state = 2
- } else {
- // 结束时间<今天+2月 即将到期 && 结束时间>今天
- if end.Before(now2Month) || end.Equal(now) {
- state = 4
- NatsServer.AddNews(vcn.T_approver, fmt.Sprintf("【合同即将过期提醒】%s的验证合同将于%s过期!", vc.T_customer, vc.T_end_date), conf.VerifyContractUrl)
- }
- // 结束时间>今天+2月 已签约
- if end.After(now2Month) || end.Equal(now2Month) {
- state = 3
- }
- }
- vc.T_State = state
- err = VerifyContractDao.Update_VerifyContract(vc, "T_start_date", "T_end_date", "T_sign_times", "T_State")
- return err
- }
- // 验证合同-添加客户
- func (c *ContractController) VerifyContract_Add_Customer() {
- T_customer := c.GetString("T_customer")
- o := orm.NewOrm()
- VerifyContractDao := Contract.NewVerifyContract(o)
- T_number := ""
- for true {
- rand_x := 1
- T_number = fmt.Sprintf("YZKH-%s", lib.GetRandstring(8, "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789", int64(rand_x)))
- _, err := VerifyContractDao.Read_VerifyContract_ByT_customer_id(T_number)
- if err != nil && err.Error() == orm.ErrNoRows.Error() {
- break
- }
- rand_x += 1
- }
- var_ := Contract.VerifyContract{
- T_customer: T_customer,
- T_customer_id: T_number,
- T_State: 1,
- }
- _, err := VerifyContractDao.Add_VerifyContract(var_)
- if err != nil {
- o.Rollback()
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "添加失败!"}
- c.ServeJSON()
- return
- }
- NatsServer.AddUserLogs(c.User.T_uuid, "验证合同", "添加客户", var_)
- c.Data["json"] = lib.JSONS{Code: 200, Msg: "ok!", Data: T_number}
- c.ServeJSON()
- return
- }
- // 验证合同-编辑客户
- func (c *ContractController) VerifyContract_Update_Customer() {
- T_customer_id := c.GetString("T_customer_id")
- T_customer := c.GetString("T_customer")
- o := orm.NewOrm()
- VerifyContractDao := Contract.NewVerifyContract(o)
- vc, err := VerifyContractDao.Read_VerifyContract_ByT_customer_id(T_customer_id)
- vc.T_customer = T_customer
- err = VerifyContractDao.Update_VerifyContract(vc)
- if err != nil {
- c.Data["json"] = lib.JSONS{Code: 202, Msg: "添加失败!"}
- c.ServeJSON()
- return
- }
- NatsServer.AddUserLogs(c.User.T_uuid, "验证合同", "编辑客户", vc)
- c.Data["json"] = lib.JSONS{Code: 200, Msg: "ok!", Data: T_customer_id}
- c.ServeJSON()
- return
- }
- // 验证合同-客户列表
- func (c *ContractController) VerifyContract_Customer_List() {
- // 分页参数 初始化
- page, _ := c.GetInt("page")
- if page < 1 {
- page = 1
- }
- page_z, _ := c.GetInt("page_z")
- if page_z < 1 {
- page_z = conf.Page_size
- }
- // 查询
- T_name := c.GetString("T_name")
- T_state, _ := c.GetInt("T_state")
- VerifyContractDao := Contract.NewVerifyContract(orm.NewOrm())
- R_List, R_cnt := VerifyContractDao.Read_VerifyContract_List(T_name, T_state, page, page_z)
- var r_jsons lib.R_JSONS
- r_jsons.Num = R_cnt
- r_jsons.Data = R_List
- r_jsons.Page = page
- r_jsons.Page_size = int(math.Ceil(float64(R_cnt) / float64(page_z)))
- c.Data["json"] = lib.JSONS{Code: 200, Msg: "ok!", Data: r_jsons}
- c.ServeJSON()
- return
- }
- // 合同回款明细列表
- func (c *ContractController) Contract_List_RecoveriesMoney() {
- // 分页参数 初始化
- page, _ := c.GetInt("page")
- if page < 1 {
- page = 1
- }
- page_z, _ := c.GetInt("page_z")
- if page_z < 1 {
- page_z = conf.Page_size
- }
- // 查询
- T_name := c.GetString("T_name")
- T_recoveries_state, _ := c.GetInt("T_recoveries_state") // 回款状态 1 未回款 2 部分回款 3 全部回款
- T_invoice_state, _ := c.GetInt("T_invoice_state") // 开票状态 1 未开票 2 部分开票 3 全部开票
- userList, _ := NatsServer.Read_User_List_All()
- Account.Read_User_All_Map(userList)
- ContractDao := Contract.NewContract(orm.NewOrm())
- R_List, R_cnt := ContractDao.Read_Contract_List_For_RecoveriesAndInvoice(T_name, T_recoveries_state, T_invoice_state, page, page_z)
- var r_jsons lib.R_JSONS
- r_jsons.Num = R_cnt
- r_jsons.Data = R_List
- r_jsons.Page = page
- r_jsons.Page_size = int(math.Ceil(float64(R_cnt) / float64(page_z)))
- c.Data["json"] = lib.JSONS{Code: 200, Msg: "ok!", Data: r_jsons}
- c.ServeJSON()
- return
- }
- func (c *ContractController) Contract_Stat() {
- T_type, _ := c.GetInt("T_type")
- T_year, _ := c.GetInt("T_year")
- type R_JSONS struct {
- ContractMoneyByYear interface{}
- TotalMoneyByYear float32
- RecoveriesMoneyByYear float32
- ContractNumByYear interface{}
- TotalMumByYear int64
- ContractMoneyByMonth interface{}
- TotalMoneyByMonth float32
- RecoveriesMoneyByMonth float32
- ContractNumByMonth interface{}
- TotalMumByMonth int64
- TotalMoneyByThisYear float32 // 今年合同总金额
- RecoveriesMoneyByThisYear float32 // 今年回款总金额
- TotalMumByThisYear int64 // 今年合同总数
- TotalMoneyByLastYear float32 // 去年合同总金额
- RecoveriesMoneyByLastYear float32 // 去年回款总金额
- TotalMumByLastYear int64 // 去年合同总数
- }
- var r_jsons R_JSONS
- thisYear := time.Now().Year()
- if T_year == 0 {
- T_year = thisYear
- }
- ContractDao := Contract.NewContract(orm.NewOrm())
- monryStat, moneyTotal, moneyRecoveries := ContractDao.Stat_ContractMoney_ByYear(T_type)
- numStat, numTotal := ContractDao.Stat_ContractNum_ByYear(T_type)
- monryMonthStat, moneyMonthTotal, moneyMonthRecoveries := ContractDao.Stat_ContractMoney_ByMonth(T_type, T_year)
- numMonthStat, numMonthTotal := ContractDao.Stat_ContractNum_ByMonth(T_type, T_year)
- // 去年
- _, r_jsons.TotalMoneyByLastYear, r_jsons.RecoveriesMoneyByLastYear = ContractDao.Stat_ContractMoney_ByMonth(T_type, T_year-1)
- _, r_jsons.TotalMumByLastYear = ContractDao.Stat_ContractNum_ByMonth(T_type, T_year-1)
- r_jsons.ContractMoneyByYear = monryStat
- r_jsons.TotalMoneyByYear = moneyTotal
- r_jsons.RecoveriesMoneyByYear = moneyRecoveries
- r_jsons.ContractNumByYear = numStat
- r_jsons.TotalMumByYear = numTotal
- r_jsons.ContractMoneyByMonth = monryMonthStat
- r_jsons.TotalMoneyByMonth = moneyMonthTotal
- r_jsons.RecoveriesMoneyByMonth = moneyMonthRecoveries
- r_jsons.ContractNumByMonth = numMonthStat
- r_jsons.TotalMumByMonth = numMonthTotal
- r_jsons.TotalMoneyByThisYear = moneyMonthTotal
- r_jsons.RecoveriesMoneyByThisYear = moneyMonthRecoveries
- r_jsons.TotalMumByThisYear = numMonthTotal
- c.Data["json"] = lib.JSONS{Code: 200, Msg: "ok!", Data: r_jsons}
- c.ServeJSON()
- return
- }
- func Cron_VerifyContract() {
- //创建一个定时任务对象
- c := cron.New(cron.WithSeconds())
- //给对象增加定时任务
- //c.AddFunc("0 */1 * * * ?", Cron_VerifyContract_ChangeState)
- c.AddFunc("@daily", Cron_VerifyContract_ChangeState)
- //启动定时任务
- c.Start()
- defer c.Stop()
- //查询语句,阻塞,让main函数不退出,保持程序运行
- select {}
- }
- // 修改合同状态
- func Cron_VerifyContract_ChangeState() {
- T_date := time.Now().Format("2006-01-02")
- logs.Info("开始处理" + T_date + "验证合同状态")
- VerifyContractDao := Contract.NewVerifyContract(orm.NewOrm())
- R_List, _ := VerifyContractDao.Read_VerifyContract_List("", 0, 0, 999)
- for _, v := range R_List {
- err := Update_VerifyContract_State(v.T_customer_id, "UPDATE")
- if err != nil {
- logs.Error("修改合同状态失败")
- }
- }
- }
- // 修改回款金额及开票金额
- func UpdateVerifyContract_RecoveriesInvoice_Money() {
- ContractDao := Contract.NewContract(orm.NewOrm())
- R_List, _ := ContractDao.Read_VerifyContract_List("", "", 0, 9999)
- for _, verify := range R_List {
- R := Contract.Contract{Id: verify.Id}
- _, R.T_recoveries_money = Contract.ContractToContractFinance_R(verify.T_recoveries)
- _, R.T_invoice_money = Contract.ContractToContractFinance_R(verify.T_invoice)
- ContractDao.Update_Contract(R, "T_recoveries_money", "T_invoice_money")
- }
- }
|