Browse Source

1

factory
DengBiao 1 year ago
parent
commit
550363bc49
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      app/admin/hdl/enterprise_manage/hdl_factory_identity.go

+ 6
- 0
app/admin/hdl/enterprise_manage/hdl_factory_identity.go View File

@@ -102,6 +102,12 @@ func AddFactoryIdentity(c *gin.Context) {
factoryIdentityDb := db.FactoryIdentityDb{}
factoryIdentityDb.Set(0)
now := time.Now()
if req.SubsidyAmount == "" {
req.SubsidyAmount = "0.00"
}
if req.LeastPayAmount == "" {
req.LeastPayAmount = "0.00"
}
_, err = factoryIdentityDb.FactoryIdentityInsert(&model.FactoryIdentity{
Name: req.Name,
EnterpriseId: enterpriseId,


Loading…
Cancel
Save