From 29e87fd3e91b6780868c078dcdde94f0a41262c6 Mon Sep 17 00:00:00 2001 From: caoming <604844710@qq.com> Date: Wed, 30 Oct 2019 08:47:06 +0800 Subject: [PATCH] app-ht(v1.8.6 build 11) 1.所有十六进制自编码都统一成大写存入数据库 --- app-ht/config/params.php | 2 +- app-ht/modules/upgrade/views/upgrade/index.php | 2 +- domain/manufacturer/Manufacturer.php | 2 +- domain/model/Model.php | 2 +- domain/production/Production.php | 2 +- domain/project/Project.php | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app-ht/config/params.php b/app-ht/config/params.php index 615b585..2773e12 100644 --- a/app-ht/config/params.php +++ b/app-ht/config/params.php @@ -1,4 +1,4 @@ 'v1.8.6 build 10', + 'VERSION' => 'v1.8.6 build 11', ]; \ No newline at end of file diff --git a/app-ht/modules/upgrade/views/upgrade/index.php b/app-ht/modules/upgrade/views/upgrade/index.php index c83a379..6dc1bbc 100644 --- a/app-ht/modules/upgrade/views/upgrade/index.php +++ b/app-ht/modules/upgrade/views/upgrade/index.php @@ -77,7 +77,7 @@ $this->params['breadcrumbs'][] = $this->title; 厂商名称 上传时间 发布状态 - 发布信息 + 发布信息 操作 diff --git a/domain/manufacturer/Manufacturer.php b/domain/manufacturer/Manufacturer.php index 171d6c2..24ec4cc 100644 --- a/domain/manufacturer/Manufacturer.php +++ b/domain/manufacturer/Manufacturer.php @@ -128,7 +128,7 @@ class Manufacturer } else if (strlen($dataNo) == 3) { $dataNo = "0" . $dataNo; } - return $dataNo; + return strtoupper($dataNo); } /** diff --git a/domain/model/Model.php b/domain/model/Model.php index 4f28b64..323f76a 100644 --- a/domain/model/Model.php +++ b/domain/model/Model.php @@ -94,6 +94,6 @@ class Model } else if (strlen($dataNo) == 3) { $dataNo = "0" . $dataNo; } - return $dataNo; + return strtoupper($dataNo); } } \ No newline at end of file diff --git a/domain/production/Production.php b/domain/production/Production.php index be001a7..a2fdf79 100644 --- a/domain/production/Production.php +++ b/domain/production/Production.php @@ -94,6 +94,6 @@ class Production } else if (strlen($dataNo) == 3) { $dataNo = "0" . $dataNo; } - return $dataNo; + return strtoupper($dataNo); } } \ No newline at end of file diff --git a/domain/project/Project.php b/domain/project/Project.php index c4ea910..d2d303c 100644 --- a/domain/project/Project.php +++ b/domain/project/Project.php @@ -94,6 +94,6 @@ class Project } else if (strlen($dataNo) == 3) { $dataNo = "0" . $dataNo; } - return $dataNo; + return strtoupper($dataNo); } } \ No newline at end of file -- libgit2 0.21.0