Changed NCR query to pull loss comments instead of assign cause description
This commit is contained in:
@ -13,6 +13,6 @@ public class NCR
|
||||
public string RDS_NO { get; set; }
|
||||
[JsonPropertyName("TOT_REJ")]
|
||||
public int TOT_REJ { get; set; }
|
||||
[JsonPropertyName("AC_DESC")]
|
||||
public string AC_DESC { get; set; }
|
||||
[JsonPropertyName("LOSS_COMMENTS")]
|
||||
public string LOSS_COMMENTS { get; set; }
|
||||
}
|
||||
|
@ -782,7 +782,7 @@ public class ScrapeDatabaseRepository : IScrapeDatabaseRepository
|
||||
" l.REACTOR, " +
|
||||
" r.RDS_ID AS RDS_NO, " +
|
||||
" l.TOT_REJ, " +
|
||||
" n.AC_DESC " +
|
||||
" n.LOSS_COMMENTS " +
|
||||
" FROM [NCR List] l, NCR n, NCR_RDS r " +
|
||||
" WHERE l.STATUS = 'Open' " +
|
||||
" AND n.SEQ = l.SEQ " +
|
||||
|
Reference in New Issue
Block a user