From e344b77507d91c6fe3d01f098bca1b3d815b87e3 Mon Sep 17 00:00:00 2001 From: Administrator Date: Fri, 29 Apr 2022 08:44:19 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../SettleAccountJob/Report/UnSettleDiffDapperRepository.cs | 2 +- .../SettleAccountJob/Report/UnSettledDetailDapperRepository.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Repository/SettleAccountJob/Report/UnSettleDiffDapperRepository.cs b/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Repository/SettleAccountJob/Report/UnSettleDiffDapperRepository.cs index df6143bd..75ae3ef7 100644 --- a/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Repository/SettleAccountJob/Report/UnSettleDiffDapperRepository.cs +++ b/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Repository/SettleAccountJob/Report/UnSettleDiffDapperRepository.cs @@ -281,7 +281,7 @@ namespace Win.Sfs.SettleAccount.Repository.SettleAccountJob.Report " isnull( b.ChassisNumber, a.ChassisNumber ) ChassisNumber,\n" + " a.qty UNSettleQty,\n" + " isnull( b.qty, 0 ) qty,\n" + -" a.CP5A CP5Time,\n" + +" CONVERT(VARCHAR(10),a.CP5A,120) CP5Time,\n" + " c.MaterialCode SapMaterialCode,\n" + " c.MaterialDesc MaterialDesc,\n" + " c.EstimateTypeDesc MaterialGroup,\n" + diff --git a/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Repository/SettleAccountJob/Report/UnSettledDetailDapperRepository.cs b/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Repository/SettleAccountJob/Report/UnSettledDetailDapperRepository.cs index 2c258086..195e7bb0 100644 --- a/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Repository/SettleAccountJob/Report/UnSettledDetailDapperRepository.cs +++ b/src/Modules/SettleAccount/src/SettleAccount.EntityFrameworkCore/Repository/SettleAccountJob/Report/UnSettledDetailDapperRepository.cs @@ -241,7 +241,7 @@ namespace Win.Sfs.SettleAccount.Repository.SettleAccountJob.Report "'') AS WMSBillNum,\n" + "STUFF((\n" + "SELECT\n" + -"',' + cast(CP5Time as varchar(20))\n" + +"',' + CONVERT(VARCHAR(10),CP5Time,120)\n" + "FROM\n" + "Set_fis subTitle\n" + "WHERE\n" +