This commit is contained in:
Михаил Капелько
2023-12-28 15:46:33 +03:00
parent f27c52305d
commit 514e06e8fe
6 changed files with 22 additions and 14 deletions

View File

@@ -18,7 +18,7 @@ def pipeSource(name, entity, structure):
elif src.startswith("K."):
busKey = src
busValueType = structure.model.fields[name][0]
src = "Bus.events.compactMap { Bus.convertKeyValue(" + busKey + ".rawValue, $0) }.map { (k: String, v: " + busValueType + ") in v }.eraseToAnyPublisher()"
src = "Bus.events.compactMap { Bus.convertKeyValue(" + busKey + ", $0) }.map { (k: String, v: " + busValueType + ") in v }.eraseToAnyPublisher()"
# Значение по умолчанию.
elif src == default:
return default + "." + name