This commit is contained in:
2024-09-18 17:20:17 +08:00
parent 9a0a72e717
commit 1e2ab3fd6c
3 changed files with 14 additions and 10 deletions

View File

@@ -855,7 +855,8 @@ namespace Tnb.ProductionMgr
JToken children = data.SelectToken("children")[0];
var responsetDtos = children.Select(x => new ErpReportDto()
{
pk_wr_product = x["valueIndex"]["pk_wr_product"].ToString(),
// pk_wr_product = x["valueIndex"]["pk_wr_product"].ToString(),
pk_wr_product = x["qualityvos"][0]["pk_wr_product_q"].ToString(),
pk_wr = x["valueIndex"]["pk_wr"].ToString(),
report_id = reportId
}).ToList();