|
@@ -1,7 +1,7 @@
|
|
|
package company
|
|
|
|
|
|
import (
|
|
|
- "github.com/rdlucklib/rdluck_tools/orm"
|
|
|
+ "github.com/beego/beego/v2/client/orm"
|
|
|
"hongze/hongze_task/models"
|
|
|
"hongze/hongze_task/models/company_contract"
|
|
|
"hongze/hongze_task/utils"
|
|
@@ -11,21 +11,24 @@ import (
|
|
|
// TryOutToFormal 试用转正式
|
|
|
func TryOutToFormal(companyId, productId, sellerId, companyContractId int, startDate, endDate, sellerName, productName string, packageType int) (err error) {
|
|
|
o := orm.NewOrm()
|
|
|
- o.Begin()
|
|
|
+ tx,err:=o.Begin()
|
|
|
+ if err!=nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
defer func() {
|
|
|
if err != nil {
|
|
|
- o.Rollback()
|
|
|
+ tx.Rollback()
|
|
|
} else {
|
|
|
- o.Commit()
|
|
|
+ tx.Commit()
|
|
|
}
|
|
|
}()
|
|
|
- sql := `UPDATE company_product SET status='正式',is_suspend=0,start_date=?,end_date=?,package_type=?,modify_time=NOW(),formal_time=NOW() WHERE company_id=? AND product_id=? `
|
|
|
- _, err = o.Raw(sql, startDate, endDate, packageType, companyId, productId).Exec()
|
|
|
+ sql := `UPDATE company_product SET status='正式',renewal_intention=0,is_suspend=0,is_formal=1,start_date=?,end_date=?,package_type=?,modify_time=NOW(),formal_time=NOW(),try_stage=1 WHERE company_id=? AND product_id=? `
|
|
|
+ _, err = tx.Raw(sql, startDate, endDate, packageType, companyId, productId).Exec()
|
|
|
if err != nil {
|
|
|
return
|
|
|
}
|
|
|
sql = `UPDATE company SET type=1,last_updated_time=NOW() WHERE company_id=? `
|
|
|
- _, err = o.Raw(sql, companyId).Exec()
|
|
|
+ _, err = tx.Raw(sql, companyId).Exec()
|
|
|
if err != nil {
|
|
|
return
|
|
|
}
|
|
@@ -47,14 +50,14 @@ func TryOutToFormal(companyId, productId, sellerId, companyContractId int, start
|
|
|
}
|
|
|
|
|
|
sql = `DELETE FROM company_report_permission WHERE company_id=? AND product_id=?`
|
|
|
- _, err = o.Raw(sql, companyId, productId).Exec()
|
|
|
+ _, err = tx.Raw(sql, companyId, productId).Exec()
|
|
|
if err != nil {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
contractPermission := make([]*models.CompanyReportPermission, 0)
|
|
|
sql = `SELECT * FROM company_contract_permission WHERE company_contract_id=? AND company_id=? `
|
|
|
- _, err = o.Raw(sql, companyContractId, companyId).QueryRows(&contractPermission)
|
|
|
+ _, err = tx.Raw(sql, companyContractId, companyId).QueryRows(&contractPermission)
|
|
|
if err != nil {
|
|
|
return
|
|
|
}
|
|
@@ -62,7 +65,7 @@ func TryOutToFormal(companyId, productId, sellerId, companyContractId int, start
|
|
|
sql = `INSERT INTO company_report_permission(company_id, report_permission_id,created_time, last_updated_time,
|
|
|
chart_permission_id, start_date,end_date,product_id,product_name, modify_time,company_contract_id,status)
|
|
|
VALUES(?,?,NOW(),NOW(),?,?,?,?,?,NOW(),?,?) `
|
|
|
- _, err = o.Raw(sql, companyId, pv.ChartPermissionId, pv.ChartPermissionId, pv.StartDate, pv.EndDate, productId, productName, companyContractId, "正式").Exec()
|
|
|
+ _, err = tx.Raw(sql, companyId, pv.ChartPermissionId, pv.ChartPermissionId, pv.StartDate, pv.EndDate, productId, productName, companyContractId, "正式").Exec()
|
|
|
if err != nil {
|
|
|
return
|
|
|
}
|
|
@@ -73,17 +76,20 @@ func TryOutToFormal(companyId, productId, sellerId, companyContractId int, start
|
|
|
//服务更新
|
|
|
func ApplyServiceUpdateOld(companyId, productId, sellerId, companyContractId int, startDate, endDate, sellerName, productName string) (err error) {
|
|
|
o := orm.NewOrm()
|
|
|
- o.Begin()
|
|
|
+ tx,err:=o.Begin()
|
|
|
+ if err!=nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
defer func() {
|
|
|
if err != nil {
|
|
|
- o.Rollback()
|
|
|
+ tx.Rollback()
|
|
|
} else {
|
|
|
- o.Commit()
|
|
|
+ tx.Commit()
|
|
|
}
|
|
|
}()
|
|
|
|
|
|
- sql := `UPDATE company_product SET status='正式',start_date=?,end_date=?,modify_time=NOW() WHERE company_id=? AND product_id=? `
|
|
|
- _, err = o.Raw(sql, startDate, endDate, companyId, productId).Exec()
|
|
|
+ sql := `UPDATE company_product SET status='正式',start_date=?,end_date=?,modify_time=NOW(),try_stage=1 WHERE company_id=? AND product_id=? `
|
|
|
+ _, err = tx.Raw(sql, startDate, endDate, companyId, productId).Exec()
|
|
|
if err != nil {
|
|
|
return
|
|
|
}
|
|
@@ -91,7 +97,7 @@ func ApplyServiceUpdateOld(companyId, productId, sellerId, companyContractId int
|
|
|
//合同权限变更
|
|
|
items := make([]*models.CompanyReportPermission, 0)
|
|
|
sql = `SELECT * FROM company_report_permission WHERE company_id=? AND product_id=? `
|
|
|
- _, err = o.Raw(sql, companyId, productId).QueryRows(&items)
|
|
|
+ _, err = tx.Raw(sql, companyId, productId).QueryRows(&items)
|
|
|
if err != nil {
|
|
|
return
|
|
|
}
|
|
@@ -109,14 +115,14 @@ func ApplyServiceUpdateOld(companyId, productId, sellerId, companyContractId int
|
|
|
go models.AddCompanyPermissionLog(cpLog)
|
|
|
}
|
|
|
sql = `DELETE FROM company_report_permission WHERE company_id=? AND product_id=? `
|
|
|
- _, err = o.Raw(sql, companyId, productId).Exec()
|
|
|
+ _, err = tx.Raw(sql, companyId, productId).Exec()
|
|
|
if err != nil {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
contractPermission := make([]*models.CompanyReportPermission, 0)
|
|
|
sql = `SELECT * FROM company_contract_permission WHERE company_contract_id=? AND company_id=? `
|
|
|
- _, err = o.Raw(sql, companyContractId, companyId).QueryRows(&contractPermission)
|
|
|
+ _, err = tx.Raw(sql, companyContractId, companyId).QueryRows(&contractPermission)
|
|
|
if err != nil {
|
|
|
return
|
|
|
}
|
|
@@ -124,7 +130,7 @@ func ApplyServiceUpdateOld(companyId, productId, sellerId, companyContractId int
|
|
|
sql = `INSERT INTO company_report_permission(company_id, report_permission_id,created_time, last_updated_time,
|
|
|
chart_permission_id, start_date,end_date,product_id,product_name, modify_time,company_contract_id,status)
|
|
|
VALUES(?,?,NOW(),NOW(),?,?,?,?,?,NOW(),?,?) `
|
|
|
- _, err = o.Raw(sql, companyId, pv.ChartPermissionId, pv.ChartPermissionId, pv.StartDate, pv.EndDate, productId, productName, companyContractId, "正式").Exec()
|
|
|
+ _, err = tx.Raw(sql, companyId, pv.ChartPermissionId, pv.ChartPermissionId, pv.StartDate, pv.EndDate, productId, productName, companyContractId, "正式").Exec()
|
|
|
if err != nil {
|
|
|
return
|
|
|
}
|
|
@@ -134,19 +140,22 @@ func ApplyServiceUpdateOld(companyId, productId, sellerId, companyContractId int
|
|
|
|
|
|
func ApplyServiceUpdate(companyId, productId, sellerId, companyContractId int, startDate, endDate, sellerName, productName string, packageType int) (err error) {
|
|
|
o := orm.NewOrm()
|
|
|
- o.Begin()
|
|
|
+ tx,err:=o.Begin()
|
|
|
+ if err!=nil {
|
|
|
+ return err
|
|
|
+ }
|
|
|
defer func() {
|
|
|
if err != nil {
|
|
|
- o.Rollback()
|
|
|
+ tx.Rollback()
|
|
|
} else {
|
|
|
- o.Commit()
|
|
|
+ tx.Commit()
|
|
|
}
|
|
|
}()
|
|
|
|
|
|
//合同权限变更
|
|
|
items := make([]*models.CompanyReportPermission, 0)
|
|
|
sql := `SELECT * FROM company_report_permission WHERE company_id=? AND product_id=? `
|
|
|
- _, err = o.Raw(sql, companyId, productId).QueryRows(&items)
|
|
|
+ _, err = tx.Raw(sql, companyId, productId).QueryRows(&items)
|
|
|
if err != nil {
|
|
|
return
|
|
|
}
|
|
@@ -210,15 +219,15 @@ func ApplyServiceUpdate(companyId, productId, sellerId, companyContractId int, s
|
|
|
//}
|
|
|
|
|
|
//更新客户产品信息
|
|
|
- sql = `UPDATE company_product SET status='正式',is_suspend=0,start_date=?,end_date=?,package_type=?,modify_time=NOW() WHERE company_id=? AND product_id=? `
|
|
|
- _, err = o.Raw(sql, updateStartDateTime, updateEndDateTime, packageType, companyId, productId).Exec()
|
|
|
+ sql = `UPDATE company_product SET status='正式',is_formal=1,is_suspend=0,start_date=?,end_date=?,package_type=?,modify_time=NOW(),try_stage=1 WHERE company_id=? AND product_id=? `
|
|
|
+ _, err = tx.Raw(sql, updateStartDateTime, updateEndDateTime, packageType, companyId, productId).Exec()
|
|
|
if err != nil {
|
|
|
return
|
|
|
}
|
|
|
|
|
|
contractPermission := make([]*company_contract.CompanyContractPermission, 0)
|
|
|
sql = `SELECT * FROM company_contract_permission WHERE company_contract_id=? AND company_id=? `
|
|
|
- _, err = o.Raw(sql, companyContractId, companyId).QueryRows(&contractPermission)
|
|
|
+ _, err = tx.Raw(sql, companyContractId, companyId).QueryRows(&contractPermission)
|
|
|
if err != nil {
|
|
|
return
|
|
|
}
|
|
@@ -253,7 +262,7 @@ func ApplyServiceUpdate(companyId, productId, sellerId, companyContractId int, s
|
|
|
//如果 需要更新 字段 为 true,那么就去更新
|
|
|
if needUpdate {
|
|
|
sql = `update company_report_permission set end_date=?,last_updated_time=now(),modify_time=now(),company_contract_id=?,status=? where company_report_permission_id=? `
|
|
|
- _, tmpErr := o.Raw(sql, pv.EndDate, companyContractId, "正式", nowPermission.CompanyReportPermissionId).Exec()
|
|
|
+ _, tmpErr := tx.Raw(sql, pv.EndDate, companyContractId, "正式", nowPermission.CompanyReportPermissionId).Exec()
|
|
|
err = tmpErr
|
|
|
if err != nil {
|
|
|
return
|
|
@@ -264,7 +273,7 @@ func ApplyServiceUpdate(companyId, productId, sellerId, companyContractId int, s
|
|
|
sql = `INSERT INTO company_report_permission(company_id, report_permission_id,created_time, last_updated_time,
|
|
|
chart_permission_id, start_date,end_date,product_id,product_name, modify_time,company_contract_id,status)
|
|
|
VALUES(?,?,NOW(),NOW(),?,?,?,?,?,NOW(),?,?) `
|
|
|
- _, tmpErr := o.Raw(sql, companyId, pv.ChartPermissionId, pv.ChartPermissionId, pv.StartDate, pv.EndDate, productId, productName, companyContractId, "正式").Exec()
|
|
|
+ _, tmpErr := tx.Raw(sql, companyId, pv.ChartPermissionId, pv.ChartPermissionId, pv.StartDate, pv.EndDate, productId, productName, companyContractId, "正式").Exec()
|
|
|
err = tmpErr
|
|
|
if err != nil {
|
|
|
return
|