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