|
@ -3,6 +3,7 @@ using Microsoft.AspNetCore.Mvc; |
|
|
using System; |
|
|
using System; |
|
|
using System.Collections.Generic; |
|
|
using System.Collections.Generic; |
|
|
using System.ComponentModel.DataAnnotations; |
|
|
using System.ComponentModel.DataAnnotations; |
|
|
|
|
|
using System.Globalization; |
|
|
using System.Threading.Tasks; |
|
|
using System.Threading.Tasks; |
|
|
using Microsoft.Extensions.Configuration; |
|
|
using Microsoft.Extensions.Configuration; |
|
|
using Volo.Abp.Application.Dtos; |
|
|
using Volo.Abp.Application.Dtos; |
|
@ -13,6 +14,7 @@ using Volo.Abp.Validation; |
|
|
using Win_in.Sfs.Scp.v1.Domain; |
|
|
using Win_in.Sfs.Scp.v1.Domain; |
|
|
using System.Security.Policy; |
|
|
using System.Security.Policy; |
|
|
using Volo.Abp.Data; |
|
|
using Volo.Abp.Data; |
|
|
|
|
|
using Microsoft.Extensions.Options; |
|
|
|
|
|
|
|
|
namespace Win_in.Sfs.Scp.WebApi |
|
|
namespace Win_in.Sfs.Scp.WebApi |
|
|
{ |
|
|
{ |
|
@ -31,6 +33,7 @@ namespace Win_in.Sfs.Scp.WebApi |
|
|
private readonly ITenantStore _tenantStore; |
|
|
private readonly ITenantStore _tenantStore; |
|
|
private readonly ITenantRepository _tenantRepository; |
|
|
private readonly ITenantRepository _tenantRepository; |
|
|
private readonly IDataFilter _dataFilter; |
|
|
private readonly IDataFilter _dataFilter; |
|
|
|
|
|
private readonly IOptions<AsnOptions> _options; |
|
|
|
|
|
|
|
|
public PurchaseOrderAppService( |
|
|
public PurchaseOrderAppService( |
|
|
IPurchaseOrderRepository repository |
|
|
IPurchaseOrderRepository repository |
|
@ -40,6 +43,7 @@ namespace Win_in.Sfs.Scp.WebApi |
|
|
, ITenantStore tenantStore |
|
|
, ITenantStore tenantStore |
|
|
, ITenantRepository tenantRepository |
|
|
, ITenantRepository tenantRepository |
|
|
, IDataFilter dataFilter |
|
|
, IDataFilter dataFilter |
|
|
|
|
|
, IOptions<AsnOptions> options |
|
|
) : base(repository) |
|
|
) : base(repository) |
|
|
{ |
|
|
{ |
|
|
_purchaseOrderRepository = repository; |
|
|
_purchaseOrderRepository = repository; |
|
@ -49,6 +53,7 @@ namespace Win_in.Sfs.Scp.WebApi |
|
|
_tenantStore = tenantStore; |
|
|
_tenantStore = tenantStore; |
|
|
_tenantRepository = tenantRepository; |
|
|
_tenantRepository = tenantRepository; |
|
|
_dataFilter = dataFilter; |
|
|
_dataFilter = dataFilter; |
|
|
|
|
|
_options = options; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -105,6 +110,8 @@ namespace Win_in.Sfs.Scp.WebApi |
|
|
Validator.CheckSite(_tenantRepository, entity.Site); |
|
|
Validator.CheckSite(_tenantRepository, entity.Site); |
|
|
Validator.CheckSite(_tenantRepository, entity.Company); |
|
|
Validator.CheckSite(_tenantRepository, entity.Company); |
|
|
|
|
|
|
|
|
|
|
|
if (entity.PoNumber.StartsWith(_options.Value.ValidPoPre, true, CultureInfo.CurrentCulture)) |
|
|
|
|
|
{ |
|
|
var tenant = await _tenantStore.FindAsync(entity.Site); |
|
|
var tenant = await _tenantStore.FindAsync(entity.Site); |
|
|
using (CurrentTenant.Change(tenant.Id, tenant.Name)) |
|
|
using (CurrentTenant.Change(tenant.Id, tenant.Name)) |
|
|
{ |
|
|
{ |
|
@ -113,12 +120,16 @@ namespace Win_in.Sfs.Scp.WebApi |
|
|
|
|
|
|
|
|
Validator.CheckSupplierCode(_taVenderRepository, entity.Site, entity.SupplierCode); |
|
|
Validator.CheckSupplierCode(_taVenderRepository, entity.Site, entity.SupplierCode); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
await UpsertTbPoAndTbPoDetailAsync(entity, tenant.Id); |
|
|
await UpsertTbPoAndTbPoDetailAsync(entity, tenant.Id); |
|
|
await CurrentUnitOfWork.SaveChangesAsync(); |
|
|
await CurrentUnitOfWork.SaveChangesAsync(); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
else |
|
|
|
|
|
{ |
|
|
|
|
|
entity.ErrorMessage = $"'{entity.PoNumber}' is not start with '{_options.Value.ValidPoPre}',ignore."; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
catch (Exception ex) |
|
|
catch (Exception ex) |
|
|
{ |
|
|
{ |
|
|
var baseEx = ex.GetBaseException(); |
|
|
var baseEx = ex.GetBaseException(); |
|
|