|
|
@ -26,7 +26,13 @@ namespace BBWYB.Server.Business |
|
|
|
{ |
|
|
|
this.purchaseProductAPIService = purchaseProductAPIService; |
|
|
|
this.restApiService = restApiService; |
|
|
|
this.invalidOrderStateList = new List<Enums.OrderState?>() { Enums.OrderState.待付款, Enums.OrderState.已取消 }; |
|
|
|
this.invalidOrderStateList = new List<Enums.OrderState?>() |
|
|
|
{ |
|
|
|
Enums.OrderState.待付款, |
|
|
|
Enums.OrderState.已取消, |
|
|
|
Enums.OrderState.等待采购, |
|
|
|
Enums.OrderState.部分采购 |
|
|
|
}; |
|
|
|
} |
|
|
|
|
|
|
|
private void ExtractNewPurchaser<T>(IList<T> purchaserSchemeList, IList<Purchaser> addPurchaserList) where T : InputPurchaseSchemeRequest |
|
|
|