This commit is contained in:
王炜翔 2024-11-12 16:23:43 +08:00
parent c91c02285d
commit b0c779d759
3 changed files with 2 additions and 3 deletions

View File

@ -286,7 +286,7 @@ namespace asg_form.Controllers
t.status == "3" ? 1 : t.status == "3" ? 1 :
t.status == "2" ? 0 : t.status == "2" ? 0 :
10) 10)
.ThenByDescending(n => n.priority == "5" ? 5 : .ThenBy(n => n.priority == "5" ? 5 :
n.priority == "4" ? 4 : n.priority == "4" ? 4 :
n.priority == "3" ? 3 : n.priority == "3" ? 3 :
n.priority == "2" ? 2 : n.priority == "2" ? 2 :

View File

@ -107,7 +107,7 @@ namespace asg_form.Controllers {
proj_no = auditinfo.projNo, proj_no = auditinfo.projNo,
proj_name = auditinfo.projName, proj_name = auditinfo.projName,
budget_use = auditinfo.budgetUse, budget_use = auditinfo.budgetUse,
status = auditinfo.status, status = "4",
budget_name = auditinfo.budgetName, budget_name = auditinfo.budgetName,
biz_type = auditinfo.bizType, biz_type = auditinfo.bizType,
budget_id = auditinfo.budgetId, budget_id = auditinfo.budgetId,

View File

@ -64,7 +64,6 @@ using(TestDbContext db=new TestDbContext()){
[Route("api/v1/admin/config/byTitle")] [Route("api/v1/admin/config/byTitle")]
[HttpPost] [HttpPost]
[Authorize]
public async Task<ActionResult<object>> config_get_title([FromBody] string title) public async Task<ActionResult<object>> config_get_title([FromBody] string title)
{ {