mirror of
https://github.com/stokebob/bnhtrade.git
synced 2026-03-21 15:27: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:
@@ -33,9 +33,28 @@ namespace bnhtrade.Core.Data.Database
|
||||
return "Amazon.co.uk";
|
||||
}
|
||||
|
||||
public static int GetProductConditionIdNew()
|
||||
/// <summary>
|
||||
/// Returns the sql table ID for a condition type
|
||||
/// </summary>
|
||||
public enum SkuCondition
|
||||
{
|
||||
return 10;
|
||||
New = 10,
|
||||
LikeNew = 11,
|
||||
VeryGood = 12,
|
||||
Good = 13,
|
||||
Acceptable = 14,
|
||||
// add the rest as needed
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns the sql table ID for a stock status type
|
||||
/// </summary>
|
||||
public enum StockStatusType
|
||||
{
|
||||
FbaInventoryActive = 3,
|
||||
FbaShipment = 4,
|
||||
FbaShippingPlan = 5,
|
||||
// add the rest as needed
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user