mirror of
https://github.com/stokebob/bnhtrade.git
synced 2026-03-19 22:47:15 +00:00
the abandoned fba repricing feature
* Merge master into branch (#15) * Bug fix * Bug fix when retriving shipment stock status id * Various bug fixs and improvements to stock SKU reconciliation * Last MWS report import date time saved * master into branch (#16) * Bug fix * Bug fix when retriving shipment stock status id * Various bug fixs and improvements to stock SKU reconciliation * Last MWS report import date time saved * wip * wip * wip * wip * wip * some extra tidying up to get it to complie and the main merge is complete * wip
This commit is contained in:
@@ -9,17 +9,29 @@ namespace bnhtrade.Core.Logic.Product
|
||||
public class GetCompetitivePrice
|
||||
{
|
||||
private Dictionary<string, Model.Product.CompetitivePrice> competitivePrices;
|
||||
private int newConditionId = Data.Database.Constants.GetProductConditionIdNew();
|
||||
private string sqlConnectionString;
|
||||
private int newConditionId = (int)Data.Database.Constants.SkuCondition.New;
|
||||
private Data.Database.Product.ReadCompetitivePrice read;
|
||||
private List<string> productIdList;
|
||||
private List<string> conditionIdList;
|
||||
private Data.Database.Product.ReadCompetitivePrice dbRead;
|
||||
private Dictionary<int, decimal> newConditionMultipier;
|
||||
|
||||
public GetCompetitivePrice(string sqlConnectionString)
|
||||
public GetCompetitivePrice()
|
||||
{
|
||||
this.sqlConnectionString = sqlConnectionString;
|
||||
// was poart of a fba repricing feature, that, for now, is being abandoned
|
||||
throw new NotImplementedException();
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
dbRead = new Data.Database.Product.ReadCompetitivePrice();
|
||||
newConditionMultipier = new Dictionary<int, decimal>();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user