fix:文言修正
This commit is contained in:
parent
c90d3e0fec
commit
0cdd122879
@ -101,7 +101,7 @@ class BioSalesLotRepository(BaseRepository):
|
||||
def __build_condition(self, parameter: BioModel):
|
||||
where_clauses: list[SQLCondition] = []
|
||||
|
||||
# 無条件対応(常に真)
|
||||
# 検索条件が指定されずにSQLが壊れることを予防するため、常に真の固定条件を追加しておく
|
||||
where_clauses.append(SQLCondition('', '', '1 = 1', literal=True))
|
||||
|
||||
# 卸(コード/サブコード)
|
||||
|
||||
@ -206,7 +206,7 @@ class EmpChgInstRepository(BaseRepository):
|
||||
def __build_condition(self, parameter: MasterMainteCsvDlModel):
|
||||
where_clauses: list[SQLCondition] = []
|
||||
|
||||
# 無条件対応(常に真)
|
||||
# 検索条件が指定されずにSQLが壊れることを予防するため、常に真の固定条件を追加しておく
|
||||
where_clauses.append(SQLCondition('', '', '1 = 1', literal=True))
|
||||
|
||||
# 領域コードが入力されていた場合
|
||||
|
||||
@ -72,7 +72,7 @@ class UltmarcDoctorRepository(BaseRepository):
|
||||
def __build_condition(self, parameter: UltmarcDoctorSearchModel):
|
||||
where_clauses: list[SQLCondition] = []
|
||||
|
||||
# 無条件対応(常に真)
|
||||
# 検索条件が指定されずにSQLが壊れることを予防するため、常に真の固定条件を追加しておく
|
||||
where_clauses.append(SQLCondition('', '', '1 = 1', literal=True))
|
||||
|
||||
# 医師コード
|
||||
|
||||
@ -58,7 +58,7 @@ class UltmarcInstRepository(BaseRepository):
|
||||
def __build_condition(self, parameter: UltmarcInstSearchModel):
|
||||
where_clauses: list[SQLCondition] = []
|
||||
|
||||
# 無条件対応(常に真)
|
||||
# 検索条件が指定されずにSQLが壊れることを予防するため、常に真の固定条件を追加しておく
|
||||
where_clauses.append(SQLCondition('', '', '1 = 1', literal=True))
|
||||
|
||||
# ULT施設コード
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user