This commit is contained in:
mmrbnjd
2025-01-20 14:10:15 +03:30
parent 25c72b2eb5
commit a296f31d74
8 changed files with 409 additions and 64 deletions

View File

@@ -28,6 +28,7 @@ namespace Back.Services.Warehouse
var RequestRemittance = _RemittanceRepo.Get(w => w.cODItem.CompanyID == CompanyID && !w.Deleted)
.Select(s=>new CirculationDto
{
ID= s.ID,
CODID=s.CODID,
CODTitle=s.cODItem.Title,
Date=s.Date,
@@ -45,6 +46,7 @@ namespace Back.Services.Warehouse
var RequestReceipt = _ReceiptRepo.Get(w => w.cODItem.CompanyID == CompanyID && !w.Deleted)
.Select(s => new CirculationDto
{
ID = s.ID,
CODID = s.CODID,
CODTitle = s.cODItem.Title,
Date = s.Date,