Changeset 855 for Scheduling/branches/GUI1.2/DPatientLetter.cs
- Timestamp:
- Jul 12, 2010, 3:56:51 PM (15 years ago)
- Location:
- Scheduling/branches/GUI1.2
- Files:
-
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
Scheduling/branches/GUI1.2/DPatientLetter.cs
r789 r855 319 319 _currentApptPrinting = 0; 320 320 e.HasMorePages = true; 321 } 321 return; 322 } 323 324 // if neither of these conditions is true, then we are done with printing. 325 // So reset counters for next one. Fixes ticket #15 on https://trac.opensourcevista.net/ticket/15 326 _currentResourcePrinting = 0; 327 _currentApptPrinting = 0; 328 _pageNumber = 0; 322 329 } 323 330 … … 338 345 _currentApptPrinting++; 339 346 if (_currentApptPrinting < _dsApptDisplay.PatientAppts.Count) 347 { 340 348 e.HasMorePages = true; 341 } 349 return; 350 } 351 } 352 353 // If we reach this point, we need to reset the counter (ticket #15 on https://trac.opensourcevista.net/ticket/15) 354 _currentApptPrinting = 0; 342 355 343 356 } … … 359 372 _currentApptPrinting++; 360 373 if (_currentApptPrinting < _dsRebookAppts.PatientAppts.Count) 374 { 361 375 e.HasMorePages = true; 362 } 376 return; 377 } 378 } 379 380 // If we reach this point, we need to reset the counter (ticket #15 on https://trac.opensourcevista.net/ticket/15) 381 _currentApptPrinting = 0; 363 382 364 383 } … … 381 400 _currentApptPrinting++; 382 401 if (_currentApptPrinting < _dsRebookAppts.PatientAppts.Count) 402 { 383 403 e.HasMorePages = true; 384 } 404 return; 405 } 406 } 407 408 // If we reach this point, we need to reset the counter (ticket #15 on https://trac.opensourcevista.net/ticket/15) 409 _currentApptPrinting = 0; 410 385 411 } 386 412 }
Note:
See TracChangeset
for help on using the changeset viewer.