证件号
(self)
| 118 | self.sql[Tourist.seatnumber] = self.lineEditSeat.text().strip() |
| 119 | |
| 120 | def applyLicense(self): |
| 121 | """证件号""" |
| 122 | if not self.checkBoxLicense.isChecked(): |
| 123 | if Tourist.license in self.sql: |
| 124 | # 移除 |
| 125 | self.sql.pop(Tourist.license) |
| 126 | # 更新或添加到字典里 |
| 127 | else: |
| 128 | self.sql[Tourist.license] = self.lineEditLicense.text().strip() |
| 129 | |
| 130 | def applyPort(self): |
| 131 | """登机口""" |
no test coverage detected