fix: insert current date into Birthday column if missing
continuous-integration/webhook Client .exe publicado em produção (VPS4)
continuous-integration/webhook Client .exe publicado em produção (VPS4)
This commit is contained in:
+4
-2
@@ -1181,8 +1181,10 @@ function connectToServer() {
|
||||
if (data.action === 'create') {
|
||||
const p = data.patient;
|
||||
addLog(`👤 Criando paciente remoto: ${p.fullName}`);
|
||||
const stmt = db.prepare('INSERT INTO Patients (FirstName, LastName, Doctor, Remark) VALUES (?, ?, ?, ?)');
|
||||
stmt.run(p.firstName || '', p.lastName || '', p.doctor || '', p.remark || '');
|
||||
const d = new Date();
|
||||
const currentDate = `${d.getFullYear()}-${String(d.getMonth()+1).padStart(2, '0')}-${String(d.getDate()).padStart(2, '0')}`;
|
||||
const stmt = db.prepare('INSERT INTO Patients (FirstName, LastName, Doctor, Remark, Birthday) VALUES (?, ?, ?, ?, ?)');
|
||||
stmt.run(p.firstName || '', p.lastName || '', p.doctor || '', p.remark || '', p.birthday || currentDate);
|
||||
addLog('✅ Paciente criado com sucesso localmente!');
|
||||
} else if (data.action === 'update') {
|
||||
const oldName = data.oldName;
|
||||
|
||||
Reference in New Issue
Block a user