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:
Bobbie Hodgetts
2024-04-17 13:23:33 +01:00
committed by GitHub
parent a7bc00e73a
commit f1d7119306
19 changed files with 355 additions and 44 deletions
+2 -3
View File
@@ -61,7 +61,7 @@ namespace bnhtrade.ComTypeLib
public void ProductUpdateAmazonEstimateFee(ConnectionCredential sqlConnCred, object inputList)
{
// get com object in string array
var inputTuple = new List<(string asin, decimal priceToEstimate)>();
var inputTuple = new Dictionary<string, decimal>();
var getArray = new Utility.LoadComObjextIntoStringArray();
string[] stringArray = getArray.LoadComObjectIntoStringArray(inputList);
@@ -72,8 +72,7 @@ namespace bnhtrade.ComTypeLib
{
throw new Exception("Split function failed on line: " + item);
}
var tempTuple = (split[0], decimal.Parse(split[1]));
inputTuple.Add(tempTuple);
inputTuple.Add(split[0], decimal.Parse(split[1]));
}
new Core.Logic.Product.AmazonEstimateFee().UpdateDatabase(inputTuple);
@@ -68,12 +68,6 @@
<ItemGroup>
<Content Include="ILMergeOrder.txt" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\bnhtrade.Core\bnhtrade.Core.csproj">
<Project>{339d7413-3da7-46ea-a55c-255a9a6b95eb}</Project>
<Name>bnhtrade.Core</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PreBuildEvent>