Add scripts for importing prices and sale contract fees; update purchase fees script
- Implemented `import_prices.py` to import price index values from a CSV file with migration mapping. - Created `import_sale_fees.py` for importing sale contract line fees, including detailed logging and error handling. - Modified `import_purchase_fees.py` to change fee type from 'ordered' to 'budgeted' and added fee ID logging.
This commit is contained in:
BIN
Database Backups/Tradon_20260309.sql
Normal file
BIN
Database Backups/Tradon_20260309.sql
Normal file
Binary file not shown.
BIN
Database Backups/tradon_ITSA_20260318
Normal file
BIN
Database Backups/tradon_ITSA_20260318
Normal file
Binary file not shown.
9
ITSA.code-workspace
Normal file
9
ITSA.code-workspace
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"folders": [
|
||||||
|
{
|
||||||
|
"path": "."
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"settings": {
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
Reference Data/Contract Matching Follow Up.xlsx
Normal file
BIN
Reference Data/Contract Matching Follow Up.xlsx
Normal file
Binary file not shown.
@@ -1,6 +1,5 @@
|
|||||||
-- To be imported
|
-- To be imported
|
||||||
--Forward Curves
|
--Forward Curves
|
||||||
--Mtm formula LINKED TO physical contract
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -299,8 +298,8 @@ SELECT
|
|||||||
Bd.Description AS [name],
|
Bd.Description AS [name],
|
||||||
'SERVICES' AS [category],
|
'SERVICES' AS [category],
|
||||||
'Mt' AS [uom],
|
'Mt' AS [uom],
|
||||||
0 as [sale_price],
|
0 AS [sale_price],
|
||||||
0 as [cost_price],
|
0 AS [cost_price],
|
||||||
'' AS [description]
|
'' AS [description]
|
||||||
FROM dbo.BaseDefinition AS BD
|
FROM dbo.BaseDefinition AS BD
|
||||||
WHERE BD.ClassType = 'CostType'
|
WHERE BD.ClassType = 'CostType'
|
||||||
@@ -333,7 +332,9 @@ SELECT
|
|||||||
FROM dbo.BaseDefinition AS BD
|
FROM dbo.BaseDefinition AS BD
|
||||||
WHERE BD.ClassType = 'QuoteSource'
|
WHERE BD.ClassType = 'QuoteSource'
|
||||||
|
|
||||||
|
SELECT * FROM price.Symbol AS S
|
||||||
|
SELECT * FROM price.Maturity AS M
|
||||||
|
SELECT * FROM price.Quote AS Q
|
||||||
|
|
||||||
-- Terminal
|
-- Terminal
|
||||||
SELECT
|
SELECT
|
||||||
@@ -438,6 +439,87 @@ WHERE D.Status <> 'Cancelled'
|
|||||||
WHERE 1=1
|
WHERE 1=1
|
||||||
AND DPT.PayTermRangeSize > 0
|
AND DPT.PayTermRangeSize > 0
|
||||||
GROUP BY D.Id , BD.Caption, DPT.PayTermRangeSize
|
GROUP BY D.Id , BD.Caption, DPT.PayTermRangeSize
|
||||||
|
),
|
||||||
|
Geo AS (
|
||||||
|
SELECT
|
||||||
|
G.CountryName,
|
||||||
|
G.ContinentName,
|
||||||
|
G.BusinessArea
|
||||||
|
FROM singa.VW_DIM_GEOGRAPHY AS G
|
||||||
|
GROUP BY
|
||||||
|
G.CountryName,
|
||||||
|
G.ContinentName,
|
||||||
|
G.BusinessArea
|
||||||
|
),
|
||||||
|
PriceMtM AS
|
||||||
|
(
|
||||||
|
SELECT
|
||||||
|
ERMtM.DealId,
|
||||||
|
ISNULL(M.MaturityYear * 10000 + M.MaturityPeriod * 100 + ISNULL(M.MaturityDay, 1), 0) AS Maturity ,
|
||||||
|
ISNULL(S.Description, '') AS PriceBenchmark,
|
||||||
|
M.MaturityYear AS maturity_year,
|
||||||
|
M.MaturityPeriod AS maturity_month,
|
||||||
|
M.MaturityDay AS maturity_day
|
||||||
|
FROM dbo.ExpenseRevenue AS ERMtM
|
||||||
|
INNER JOIN dbo.PriceFormulaElement AS PFEMtM ON PFEMtM.ExpenseRevenueId = ERMtM.Id AND PFEMtM.FormulaType <> 'Adjustment'
|
||||||
|
INNER JOIN price.Maturity AS M ON PFEMtM.MaturityId = M.Id
|
||||||
|
INNER JOIN price.Symbol AS S ON M.SymbolId = S.Id
|
||||||
|
WHERE 1=1
|
||||||
|
AND ERMtM.FormulaGroup = 2
|
||||||
|
AND PFEMtM.FormulaType LIKE 'MtM%'
|
||||||
|
AND S.Description NOT LIKE 'Freight%'
|
||||||
|
AND S.Description NOT LIKE 'Discount%'
|
||||||
|
AND S.Description NOT LIKE 'BAF%'
|
||||||
|
),
|
||||||
|
Price AS
|
||||||
|
(
|
||||||
|
SELECT
|
||||||
|
C.ContractNumber,
|
||||||
|
C.CostDescription AS pricing_curve,
|
||||||
|
AVG(C.Price) AS price
|
||||||
|
FROM singa.VW_REP_PHYSICAL_CONTRACT_COSTS AS C
|
||||||
|
WHERE 1=1
|
||||||
|
AND C.FormulaGroup = 1
|
||||||
|
AND C.CostDescription NOT IN ( 'Adjustment' )
|
||||||
|
AND C.CostDescription NOT LIKE ('%Discount%')
|
||||||
|
|
||||||
|
GROUP BY
|
||||||
|
C.ContractNumber,
|
||||||
|
C.CostDescription
|
||||||
|
),
|
||||||
|
Pricing AS
|
||||||
|
(
|
||||||
|
SELECT
|
||||||
|
D.Id AS dealID,
|
||||||
|
D.Reference AS deal_number,
|
||||||
|
MAX(
|
||||||
|
IIF(
|
||||||
|
S.Caption = 'Fixed Margin',
|
||||||
|
'Priced',
|
||||||
|
CASE WHEN ISNULL(PFE.FormulaType, '') <> 'Fixed' AND VMP.DealId IS NULL THEN 'Unpriced'
|
||||||
|
ELSE 'Priced' END
|
||||||
|
)
|
||||||
|
)
|
||||||
|
AS pricing,
|
||||||
|
ISNULL(M.MaturityYear * 10000 + M.MaturityPeriod * 100 + ISNULL(M.MaturityDay, 1), 0) AS maturity,
|
||||||
|
M.MaturityYear AS maturity_year,
|
||||||
|
M.MaturityPeriod AS maturity_month,
|
||||||
|
M.MaturityDay AS maturity_day
|
||||||
|
FROM dbo.Deal AS D
|
||||||
|
INNER JOIN dbo.ExpenseRevenue AS ER ON ER.DealId = d.Id AND ER.FormulaGroup NOT IN (2, 4)
|
||||||
|
LEFT JOIN dbo.PriceFormulaElement AS PFE ON PFE.ExpenseRevenueId = ER.Id AND PFE.FormulaType <> 'Adjustment'
|
||||||
|
LEFT JOIN singa.VW_MVT_PRICING AS VMP ON D.Id = VMP.DealId
|
||||||
|
INNER JOIN dbo.Strategy AS S ON D.StrategyId = S.Id --All deals in Fixed Margin strategy must appear as Fixed
|
||||||
|
|
||||||
|
LEFT JOIN price.Maturity AS M ON PFE.MaturityId = M.Id
|
||||||
|
LEFT JOIN price.Symbol AS SY ON M.SymbolId = SY.Id
|
||||||
|
GROUP BY
|
||||||
|
D.Id,
|
||||||
|
D.Reference,
|
||||||
|
ISNULL(M.MaturityYear * 10000 + M.MaturityPeriod * 100 + ISNULL(M.MaturityDay, 1), 0),
|
||||||
|
M.MaturityYear,
|
||||||
|
M.MaturityPeriod,
|
||||||
|
M.MaturityDay
|
||||||
)
|
)
|
||||||
SELECT
|
SELECT
|
||||||
D.Id AS source_id
|
D.Id AS source_id
|
||||||
@@ -475,7 +557,8 @@ SELECT
|
|||||||
, ISNULL(C2.CountryName,'') AS origin
|
, ISNULL(C2.CountryName,'') AS origin
|
||||||
, ROUND(D.Quantity , 2) AS line_quantity
|
, ROUND(D.Quantity , 2) AS line_quantity
|
||||||
, 'Mt' AS line_unit_code
|
, 'Mt' AS line_unit_code
|
||||||
, ISNULL(PRICE.AvgPrice,0) AS line_price
|
, ISNULL(ERV.Price ,0) AS line_price
|
||||||
|
--, ISNULL(OLD_PRICE.AvgPrice,0) AS line_old_price
|
||||||
, CONCAT(
|
, CONCAT(
|
||||||
D.Quantity , ' Mt of sulphuric acid - ',
|
D.Quantity , ' Mt of sulphuric acid - ',
|
||||||
CASE
|
CASE
|
||||||
@@ -500,6 +583,22 @@ SELECT
|
|||||||
, ISNULL(D.PumpingHourlyMTRate,0) AS pumping_rate
|
, ISNULL(D.PumpingHourlyMTRate,0) AS pumping_rate
|
||||||
, D.UseOnlyMinAndMax AS use_only_min_max
|
, D.UseOnlyMinAndMax AS use_only_min_max
|
||||||
, D.DropRemainingQuantity AS drop_remaining_quantity
|
, D.DropRemainingQuantity AS drop_remaining_quantity
|
||||||
|
, C_CP.CountryName AS counterparty_country
|
||||||
|
, GEO.BusinessArea AS business_area
|
||||||
|
, ISNULL(PRC.pricing,'') AS pricing_status
|
||||||
|
, ISNULL(ERV.pricing_curve, '') AS price_curve
|
||||||
|
, CASE
|
||||||
|
WHEN PRC.maturity = 0 THEN NULL
|
||||||
|
ELSE
|
||||||
|
CAST(CONCAT( PRC.maturity_year, '-', PRC.maturity_month, '-', ISNULL(PRC.maturity_day,'1')) AS DATE)
|
||||||
|
END AS price_maturity_date
|
||||||
|
, ISNULL(MtM.PriceBenchmark, '') AS mtm_curve
|
||||||
|
, CASE
|
||||||
|
WHEN Mtm.maturity = 0 THEN NULL
|
||||||
|
ELSE
|
||||||
|
CAST(CONCAT( Mtm.maturity_year, '-', Mtm.maturity_month, '-', ISNULL(Mtm.maturity_day,'1')) AS DATE)
|
||||||
|
END AS mtm_maturity_date
|
||||||
|
, CAST(D.EstimatedDateOfBL AS DATE) AS estimated_BL_date
|
||||||
FROM dbo.Deal AS D
|
FROM dbo.Deal AS D
|
||||||
LEFT JOIN dbo.Book AS B ON D.BookId = B.Id
|
LEFT JOIN dbo.Book AS B ON D.BookId = B.Id
|
||||||
LEFT JOIN dbo.ProductContainer AS PC ON D.Id = PC.Id
|
LEFT JOIN dbo.ProductContainer AS PC ON D.Id = PC.Id
|
||||||
@@ -509,6 +608,7 @@ SELECT
|
|||||||
LEFT JOIN geo.Country AS C_D ON DIS.CountryId = C_D.Id
|
LEFT JOIN geo.Country AS C_D ON DIS.CountryId = C_D.Id
|
||||||
LEFT JOIN counterpart.Company AS C ON D.CounterpartId = C.Id
|
LEFT JOIN counterpart.Company AS C ON D.CounterpartId = C.Id
|
||||||
LEFT JOIN geo.Country AS C_CP ON C.CountryId = C_CP.Id
|
LEFT JOIN geo.Country AS C_CP ON C.CountryId = C_CP.Id
|
||||||
|
LEFT JOIN Geo AS GEO ON C_CP.CountryName = GEO.CountryName
|
||||||
LEFT JOIN dbo.Product AS P ON D.ProductId = P.Id
|
LEFT JOIN dbo.Product AS P ON D.ProductId = P.Id
|
||||||
LEFT JOIN dbo.BaseDefinition AS INCO ON D.IncotermId = INCO.Id
|
LEFT JOIN dbo.BaseDefinition AS INCO ON D.IncotermId = INCO.Id
|
||||||
LEFT JOIN dbo.Strategy AS S ON D.StrategyId = S.Id
|
LEFT JOIN dbo.Strategy AS S ON D.StrategyId = S.Id
|
||||||
@@ -516,60 +616,23 @@ SELECT
|
|||||||
LEFT JOIN (
|
LEFT JOIN (
|
||||||
SELECT DealId, AVG(MvTPrice) AS AvgPrice
|
SELECT DealId, AVG(MvTPrice) AS AvgPrice
|
||||||
FROM [singa].[VW_MVT_PRICING]
|
FROM [singa].[VW_MVT_PRICING]
|
||||||
GROUP BY DealId) AS PRICE ON D.Id = PRICE.DealId
|
GROUP BY DealId) AS OLD_PRICE ON D.Id = OLD_PRICE.DealId
|
||||||
|
LEFT JOIN Price AS ERV ON D.Reference = ERV.ContractNumber
|
||||||
|
LEFT JOIN Pricing AS PRC ON D.Id = PRC.dealID
|
||||||
LEFT JOIN profiles.XUser AS TRD ON D.TraderId = TRD.Id
|
LEFT JOIN profiles.XUser AS TRD ON D.TraderId = TRD.Id
|
||||||
LEFT JOIN profiles.XUser AS OP ON D.OperatorId = OP.Id
|
LEFT JOIN profiles.XUser AS OP ON D.OperatorId = OP.Id
|
||||||
LEFT JOIN dbo.BaseDefinition AS BD ON D.DeliveryPeriodId = BD.Id
|
LEFT JOIN dbo.BaseDefinition AS BD ON D.DeliveryPeriodId = BD.Id
|
||||||
LEFT JOIN geo.Country AS C2 ON D.CountryOfOriginId = C2.Id
|
LEFT JOIN geo.Country AS C2 ON D.CountryOfOriginId = C2.Id
|
||||||
|
LEFT JOIN PriceMtM AS MTM ON D.Id = MTM.DealId
|
||||||
WHERE 1=1
|
WHERE 1=1
|
||||||
AND D.Status <> 'Cancelled'
|
AND D.Status <> 'Cancelled'
|
||||||
AND D.BuyOrSell = 1 -- Purchase contracts
|
AND D.BuyOrSell = 1 -- Purchase contracts
|
||||||
AND ISNULL(D.OtherReference, '') NOT LIKE '%ACCT Matching%'
|
AND ISNULL(D.OtherReference, '') NOT LIKE '%ACCT Matching%'
|
||||||
AND B.Description LIKE '%2025%'
|
AND B.Description LIKE '%2025%'
|
||||||
--AND D.Reference = 2093
|
|
||||||
ORDER BY 3,1
|
ORDER BY 3,1
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-- Purchase contract costs
|
|
||||||
SELECT
|
|
||||||
|
|
||||||
D.Reference AS contract_number,
|
|
||||||
LTRIM(RTRIM( ISNULL(D.OtherReference, '') )) AS contract_ref,
|
|
||||||
1 AS line_sequence,
|
|
||||||
CASE
|
|
||||||
WHEN CT.Caption = 'Commision' THEN 'Commission'
|
|
||||||
WHEN CT.Caption = 'Freight' THEN 'Maritime Freight'
|
|
||||||
ELSE CT.Caption
|
|
||||||
END AS product,
|
|
||||||
LTRIM(RTRIM( ISNULL(C.Name , 'TBD Supplier') )) AS supplier,
|
|
||||||
ER.CurrencyCode AS currency,
|
|
||||||
CASE ER.IsRevenue
|
|
||||||
WHEN 1 THEN 'REC'
|
|
||||||
ELSE 'PAY'
|
|
||||||
END AS p_r,
|
|
||||||
'Per qt' AS mode,
|
|
||||||
ROUND (
|
|
||||||
(IIF(PFE.Quantity IS NULL, PFE.WeightBalance / 100, 1) * PFE.OutputPriceValue),
|
|
||||||
2 ) AS price,
|
|
||||||
ER.UnitReference AS unit
|
|
||||||
|
|
||||||
FROM dbo.Deal AS D
|
|
||||||
LEFT JOIN dbo.Book AS B ON D.BookId = B.Id
|
|
||||||
INNER JOIN dbo.ExpenseRevenue AS ER ON D.Id = ER.DealId
|
|
||||||
INNER JOIN dbo.PriceFormulaElement AS PFE ON PFE.ExpenseRevenueId = ER.Id
|
|
||||||
INNER JOIN dbo.BaseDefinition AS CT ON ER.CostTypeId = CT.Id
|
|
||||||
LEFT JOIN counterpart.Company AS C ON ER.CounterpartId = c.Id
|
|
||||||
WHERE 1=1
|
|
||||||
AND D.Status <> 'Cancelled'
|
|
||||||
AND D.BuyOrSell = 1 -- Purchase contracts
|
|
||||||
AND ISNULL(D.OtherReference, '') NOT LIKE '%ACCT Matching%'
|
|
||||||
AND B.Description LIKE '%2025%'
|
|
||||||
AND ER.FormulaGroup NOT IN (1,2) -- Not Price or MtM
|
|
||||||
ORDER BY 2
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
-- Sale contracts - Copy/Paste results of this query in CSV file
|
-- Sale contracts - Copy/Paste results of this query in CSV file
|
||||||
;WITH PaymentTerm AS (
|
;WITH PaymentTerm AS (
|
||||||
SELECT D.Id AS DealId, BD.Caption, DPT.PayTermRangeSize
|
SELECT D.Id AS DealId, BD.Caption, DPT.PayTermRangeSize
|
||||||
@@ -579,8 +642,87 @@ ORDER BY 2
|
|||||||
WHERE 1=1
|
WHERE 1=1
|
||||||
AND DPT.PayTermRangeSize > 0
|
AND DPT.PayTermRangeSize > 0
|
||||||
GROUP BY D.Id , BD.Caption, DPT.PayTermRangeSize
|
GROUP BY D.Id , BD.Caption, DPT.PayTermRangeSize
|
||||||
)
|
),
|
||||||
|
Geo AS (
|
||||||
|
SELECT
|
||||||
|
G.CountryName,
|
||||||
|
G.ContinentName,
|
||||||
|
G.BusinessArea
|
||||||
|
FROM singa.VW_DIM_GEOGRAPHY AS G
|
||||||
|
GROUP BY
|
||||||
|
G.CountryName,
|
||||||
|
G.ContinentName,
|
||||||
|
G.BusinessArea
|
||||||
|
),
|
||||||
|
PriceMtM AS
|
||||||
|
(
|
||||||
|
SELECT ERMtM.DealId,
|
||||||
|
ISNULL(M.MaturityYear * 10000 + M.MaturityPeriod * 100 + ISNULL(M.MaturityDay, 1), 0) AS maturity ,
|
||||||
|
ISNULL(S.Description, '') AS PriceBenchmark,
|
||||||
|
M.MaturityYear AS maturity_year,
|
||||||
|
M.MaturityPeriod AS maturity_month,
|
||||||
|
M.MaturityDay AS maturity_day
|
||||||
|
FROM dbo.ExpenseRevenue AS ERMtM
|
||||||
|
INNER JOIN dbo.PriceFormulaElement AS PFEMtM ON PFEMtM.ExpenseRevenueId = ERMtM.Id AND PFEMtM.FormulaType <> 'Adjustment'
|
||||||
|
INNER JOIN price.Maturity AS M ON PFEMtM.MaturityId = M.Id
|
||||||
|
INNER JOIN price.Symbol AS S ON M.SymbolId = S.Id
|
||||||
|
WHERE 1=1
|
||||||
|
AND ERMtM.FormulaGroup = 2
|
||||||
|
AND PFEMtM.FormulaType LIKE 'MtM%'
|
||||||
|
AND S.Description NOT LIKE 'Freight%'
|
||||||
|
AND S.Description NOT LIKE 'Discount%'
|
||||||
|
AND S.Description NOT LIKE 'BAF%'
|
||||||
|
),
|
||||||
|
Price AS
|
||||||
|
(
|
||||||
|
SELECT
|
||||||
|
C.ContractNumber,
|
||||||
|
C.CostDescription AS pricing_curve,
|
||||||
|
AVG(C.Price) AS price
|
||||||
|
FROM singa.VW_REP_PHYSICAL_CONTRACT_COSTS AS C
|
||||||
|
WHERE 1=1
|
||||||
|
AND C.FormulaGroup = 1
|
||||||
|
AND C.CostDescription NOT IN ( 'Adjustment' )
|
||||||
|
AND C.CostDescription NOT LIKE ('%Discount%')
|
||||||
|
|
||||||
|
GROUP BY
|
||||||
|
C.ContractNumber,
|
||||||
|
C.CostDescription
|
||||||
|
),
|
||||||
|
Pricing AS
|
||||||
|
(
|
||||||
|
SELECT
|
||||||
|
D.Id AS dealID,
|
||||||
|
D.Reference AS deal_number,
|
||||||
|
MAX(
|
||||||
|
IIF(
|
||||||
|
S.Caption = 'Fixed Margin',
|
||||||
|
'Priced',
|
||||||
|
CASE WHEN ISNULL(PFE.FormulaType, '') <> 'Fixed' AND VMP.DealId IS NULL THEN 'Unpriced'
|
||||||
|
ELSE 'Priced' END
|
||||||
|
)
|
||||||
|
)
|
||||||
|
AS pricing,
|
||||||
|
ISNULL(M.MaturityYear * 10000 + M.MaturityPeriod * 100 + ISNULL(M.MaturityDay, 1), 0) AS maturity,
|
||||||
|
M.MaturityYear AS maturity_year,
|
||||||
|
M.MaturityPeriod AS maturity_month,
|
||||||
|
M.MaturityDay AS maturity_day
|
||||||
|
FROM dbo.Deal AS D
|
||||||
|
INNER JOIN dbo.ExpenseRevenue AS ER ON ER.DealId = d.Id AND ER.FormulaGroup NOT IN (2, 4)
|
||||||
|
LEFT JOIN dbo.PriceFormulaElement AS PFE ON PFE.ExpenseRevenueId = ER.Id AND PFE.FormulaType <> 'Adjustment'
|
||||||
|
LEFT JOIN singa.VW_MVT_PRICING AS VMP ON D.Id = VMP.DealId
|
||||||
|
INNER JOIN dbo.Strategy AS S ON D.StrategyId = S.Id --All deals in Fixed Margin strategy must appear as Fixed
|
||||||
|
|
||||||
|
LEFT JOIN price.Maturity AS M ON PFE.MaturityId = M.Id
|
||||||
|
LEFT JOIN price.Symbol AS SY ON M.SymbolId = SY.Id
|
||||||
|
GROUP BY
|
||||||
|
D.Id,
|
||||||
|
D.Reference,
|
||||||
|
ISNULL(M.MaturityYear * 10000 + M.MaturityPeriod * 100 + ISNULL(M.MaturityDay, 1), 0),
|
||||||
|
M.MaturityYear,
|
||||||
|
M.MaturityPeriod,
|
||||||
|
M.MaturityDay
|
||||||
|
)
|
||||||
SELECT
|
SELECT
|
||||||
D.Id AS source_id
|
D.Id AS source_id
|
||||||
, D.Id AS source_line_id
|
, D.Id AS source_line_id
|
||||||
@@ -618,7 +760,8 @@ SELECT
|
|||||||
, ISNULL(C2.CountryName,'') AS origin
|
, ISNULL(C2.CountryName,'') AS origin
|
||||||
, ROUND(D.Quantity , 2) AS line_quantity
|
, ROUND(D.Quantity , 2) AS line_quantity
|
||||||
, 'Mt' AS line_unit_code
|
, 'Mt' AS line_unit_code
|
||||||
, ISNULL(PRICE.AvgPrice,0) AS line_price
|
, ISNULL(ERV.Price ,0) AS line_price
|
||||||
|
--, ISNULL(OLD_PRICE.AvgPrice,0) AS line_old_price
|
||||||
, CONCAT(
|
, CONCAT(
|
||||||
D.Quantity , ' Mt of sulphuric acid - ',
|
D.Quantity , ' Mt of sulphuric acid - ',
|
||||||
CASE
|
CASE
|
||||||
@@ -643,32 +786,220 @@ SELECT
|
|||||||
, ISNULL(D.PumpingHourlyMTRate,0) AS pumping_rate
|
, ISNULL(D.PumpingHourlyMTRate,0) AS pumping_rate
|
||||||
, D.UseOnlyMinAndMax AS use_only_min_max
|
, D.UseOnlyMinAndMax AS use_only_min_max
|
||||||
, D.DropRemainingQuantity AS drop_remaining_quantity
|
, D.DropRemainingQuantity AS drop_remaining_quantity
|
||||||
|
, C_CP.CountryName AS counterparty_country
|
||||||
|
, GEO.BusinessArea AS business_area
|
||||||
|
, ISNULL(PRC.pricing,'') AS pricing_status
|
||||||
|
, ISNULL(ERV.pricing_curve, '') AS price_curve
|
||||||
|
, CASE
|
||||||
|
WHEN PRC.maturity = 0 THEN NULL
|
||||||
|
ELSE
|
||||||
|
CAST(CONCAT( PRC.maturity_year, '-', PRC.maturity_month, '-', ISNULL(PRC.maturity_day,'1')) AS DATE)
|
||||||
|
END AS price_maturity_date
|
||||||
|
, ISNULL(MtM.PriceBenchmark, '') AS mtm_curve
|
||||||
|
, CASE
|
||||||
|
WHEN Mtm.maturity = 0 THEN NULL
|
||||||
|
ELSE
|
||||||
|
CAST(CONCAT( Mtm.maturity_year, '-', Mtm.maturity_month, '-', ISNULL(Mtm.maturity_day,'1')) AS DATE)
|
||||||
|
END AS mtm_maturity_date
|
||||||
|
, CAST(D.EstimatedDateOfBL AS DATE) AS estimated_BL_date
|
||||||
FROM dbo.Deal AS D
|
FROM dbo.Deal AS D
|
||||||
LEFT JOIN dbo.Book AS B ON D.BookId = B.Id
|
LEFT JOIN dbo.Book AS B ON D.BookId = B.Id
|
||||||
LEFT JOIN dbo.ProductContainer AS PC ON D.Id = PC.Id
|
LEFT JOIN dbo.ProductContainer AS PC ON D.Id = PC.Id
|
||||||
LEFT JOIN geo.Location AS LOA ON D.LoadLocationId = LOA.Id
|
LEFT JOIN geo.Location AS LOA ON D.LoadLocationId = LOA.Id
|
||||||
LEFT JOIN geo.Country AS C_L ON LOA.CountryId = C_L.Id
|
LEFT JOIN geo.Country AS C_L ON LOA.CountryId = C_L.Id
|
||||||
LEFT JOIN geo.Location AS DIS ON D.DeliveryLocationId = DIS.Id
|
LEFT JOIN geo.Location AS DIS ON D.DeliveryLocationId = DIS.Id
|
||||||
LEFT JOIN geo.Country AS C_D ON DIS.CountryId = C_D.Id
|
LEFT JOIN geo.Country AS C_D ON DIS.CountryId = C_D.Id
|
||||||
LEFT JOIN counterpart.Company AS C ON D.CounterpartId = C.Id
|
LEFT JOIN counterpart.Company AS C ON D.CounterpartId = C.Id
|
||||||
LEFT JOIN geo.Country AS C_CP ON C.CountryId = C_CP.Id
|
LEFT JOIN geo.Country AS C_CP ON C.CountryId = C_CP.Id
|
||||||
LEFT JOIN dbo.Product AS P ON D.ProductId = P.Id
|
LEFT JOIN Geo AS GEO ON C_CP.CountryName = GEO.CountryName
|
||||||
LEFT JOIN dbo.BaseDefinition AS INCO ON D.IncotermId = INCO.Id
|
LEFT JOIN dbo.Product AS P ON D.ProductId = P.Id
|
||||||
LEFT JOIN dbo.Strategy AS S ON D.StrategyId = S.Id
|
LEFT JOIN dbo.BaseDefinition AS INCO ON D.IncotermId = INCO.Id
|
||||||
LEFT JOIN PaymentTerm AS PT ON D.Id = PT.DealId
|
LEFT JOIN dbo.Strategy AS S ON D.StrategyId = S.Id
|
||||||
|
LEFT JOIN PaymentTerm AS PT ON D.Id = PT.DealId
|
||||||
LEFT JOIN (
|
LEFT JOIN (
|
||||||
SELECT DealId, AVG(MvTPrice) AS AvgPrice
|
SELECT DealId, AVG(MvTPrice) AS AvgPrice
|
||||||
FROM [singa].[VW_MVT_PRICING]
|
FROM [singa].[VW_MVT_PRICING]
|
||||||
GROUP BY DealId) AS PRICE ON D.Id = PRICE.DealId
|
GROUP BY DealId) AS OLD_PRICE ON D.Id = OLD_PRICE.DealId
|
||||||
LEFT JOIN profiles.XUser AS TRD ON D.TraderId = TRD.Id
|
LEFT JOIN Price AS ERV ON D.Reference = ERV.ContractNumber
|
||||||
LEFT JOIN profiles.XUser AS OP ON D.OperatorId = OP.Id
|
LEFT JOIN Pricing AS PRC ON D.Id = PRC.dealID
|
||||||
|
LEFT JOIN profiles.XUser AS TRD ON D.TraderId = TRD.Id
|
||||||
|
LEFT JOIN profiles.XUser AS OP ON D.OperatorId = OP.Id
|
||||||
LEFT JOIN dbo.BaseDefinition AS BD ON D.DeliveryPeriodId = BD.Id
|
LEFT JOIN dbo.BaseDefinition AS BD ON D.DeliveryPeriodId = BD.Id
|
||||||
LEFT JOIN geo.Country AS C2 ON D.CountryOfOriginId = C2.Id
|
LEFT JOIN geo.Country AS C2 ON D.CountryOfOriginId = C2.Id
|
||||||
|
LEFT JOIN PriceMtM AS MTM ON D.Id = MTM.DealId
|
||||||
WHERE 1=1
|
WHERE 1=1
|
||||||
AND D.Status <> 'Cancelled'
|
AND D.Status <> 'Cancelled'
|
||||||
AND D.BuyOrSell = -1 -- Sale contracts
|
AND D.BuyOrSell = -1 -- Sale contracts
|
||||||
AND ISNULL(D.OtherReference, '') NOT LIKE '%ACCT Matching%'
|
AND ISNULL(D.OtherReference, '') NOT LIKE '%ACCT Matching%'
|
||||||
AND B.Description LIKE '%2025%'
|
AND (B.Description LIKE '%2025%' OR B.Description LIKE '%2026%')
|
||||||
ORDER BY 2,1
|
--AND D.Reference = 2112
|
||||||
|
ORDER BY 3,1
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
-- Purchase contract costs
|
||||||
|
SELECT
|
||||||
|
|
||||||
|
D.Reference AS contract_number,
|
||||||
|
--B.Description,
|
||||||
|
--CASE D.BuyOrSell
|
||||||
|
-- WHEN '1' THEN 'Purchase'
|
||||||
|
-- ELSE 'Sale'
|
||||||
|
-- END AS contract_type,
|
||||||
|
LTRIM(RTRIM( ISNULL(D.OtherReference, '') )) AS contract_ref,
|
||||||
|
1 AS line_sequence,
|
||||||
|
CASE
|
||||||
|
WHEN CT.Caption = 'Commision' THEN 'Commission'
|
||||||
|
WHEN CT.Caption = 'Freight' THEN 'Maritime Freight'
|
||||||
|
ELSE CT.Caption
|
||||||
|
END AS product,
|
||||||
|
LTRIM(RTRIM( ISNULL(C.Name , 'TBD Supplier') )) AS supplier,
|
||||||
|
ER.CurrencyCode AS currency,
|
||||||
|
CASE ER.IsRevenue
|
||||||
|
WHEN 1 THEN 'REC'
|
||||||
|
ELSE 'PAY'
|
||||||
|
END AS p_r,
|
||||||
|
'Per qt' AS mode,
|
||||||
|
ROUND (
|
||||||
|
(IIF(PFE.Quantity IS NULL, PFE.WeightBalance / 100, 1) * PFE.OutputPriceValue),
|
||||||
|
2 ) AS price,
|
||||||
|
ER.UnitReference AS unit
|
||||||
|
|
||||||
|
FROM dbo.Deal AS D
|
||||||
|
LEFT JOIN dbo.Book AS B ON D.BookId = B.Id
|
||||||
|
INNER JOIN dbo.ExpenseRevenue AS ER ON D.Id = ER.DealId
|
||||||
|
INNER JOIN dbo.PriceFormulaElement AS PFE ON PFE.ExpenseRevenueId = ER.Id
|
||||||
|
INNER JOIN dbo.BaseDefinition AS CT ON ER.CostTypeId = CT.Id
|
||||||
|
LEFT JOIN counterpart.Company AS C ON ER.CounterpartId = c.Id
|
||||||
|
WHERE 1=1
|
||||||
|
AND D.Status <> 'Cancelled'
|
||||||
|
AND D.BuyOrSell = 1 -- Purchase contracts
|
||||||
|
AND ISNULL(D.OtherReference, '') NOT LIKE '%ACCT Matching%'
|
||||||
|
--AND (B.Description LIKE '%2025%')
|
||||||
|
AND (B.Description LIKE '%2025%' OR B.Description LIKE '%2026%')
|
||||||
|
AND ER.FormulaGroup NOT IN (1,2) -- Not Price or MtM
|
||||||
|
ORDER BY 1
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
-- Sale contract costs
|
||||||
|
SELECT
|
||||||
|
|
||||||
|
D.Reference AS contract_number,
|
||||||
|
--B.Description,
|
||||||
|
--CASE D.BuyOrSell
|
||||||
|
-- WHEN '1' THEN 'Purchase'
|
||||||
|
-- ELSE 'Sale'
|
||||||
|
-- END AS contract_type,
|
||||||
|
LTRIM(RTRIM( ISNULL(D.OtherReference, '') )) AS contract_ref,
|
||||||
|
1 AS line_sequence,
|
||||||
|
CASE
|
||||||
|
WHEN CT.Caption = 'Commision' THEN 'Commission'
|
||||||
|
WHEN CT.Caption = 'Freight' THEN 'Maritime Freight'
|
||||||
|
ELSE CT.Caption
|
||||||
|
END AS product,
|
||||||
|
LTRIM(RTRIM( ISNULL(C.Name , 'TBD Supplier') )) AS supplier,
|
||||||
|
ER.CurrencyCode AS currency,
|
||||||
|
CASE ER.IsRevenue
|
||||||
|
WHEN 1 THEN 'REC'
|
||||||
|
ELSE 'PAY'
|
||||||
|
END AS p_r,
|
||||||
|
'Per qt' AS mode,
|
||||||
|
ROUND (
|
||||||
|
(IIF(PFE.Quantity IS NULL, PFE.WeightBalance / 100, 1) * PFE.OutputPriceValue),
|
||||||
|
2 ) AS price,
|
||||||
|
ER.UnitReference AS unit
|
||||||
|
|
||||||
|
FROM dbo.Deal AS D
|
||||||
|
LEFT JOIN dbo.Book AS B ON D.BookId = B.Id
|
||||||
|
INNER JOIN dbo.ExpenseRevenue AS ER ON D.Id = ER.DealId
|
||||||
|
INNER JOIN dbo.PriceFormulaElement AS PFE ON PFE.ExpenseRevenueId = ER.Id
|
||||||
|
INNER JOIN dbo.BaseDefinition AS CT ON ER.CostTypeId = CT.Id
|
||||||
|
LEFT JOIN counterpart.Company AS C ON ER.CounterpartId = c.Id
|
||||||
|
WHERE 1=1
|
||||||
|
AND D.Status <> 'Cancelled'
|
||||||
|
AND D.BuyOrSell <> 1 -- Sale contracts
|
||||||
|
AND ISNULL(D.OtherReference, '') NOT LIKE '%ACCT Matching%'
|
||||||
|
AND (B.Description LIKE '%2025%' OR B.Description LIKE '%2026%')
|
||||||
|
AND ER.FormulaGroup NOT IN (1,2) -- Not Price or MtM
|
||||||
|
ORDER BY 1
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
-- Run that script to generate CSV for price_curve MTM used in physical contract in 2025 and 2026
|
||||||
|
SELECT DISTINCT
|
||||||
|
CONCAT(
|
||||||
|
ISNULL(S.Description, '') , ' ' ,
|
||||||
|
M.MaturityYear , '-',
|
||||||
|
RIGHT(CONCAT('0', M.MaturityPeriod),2)
|
||||||
|
)AS price_index,
|
||||||
|
Q.QuoteDate AS price_date,
|
||||||
|
Q.Value AS high_price,
|
||||||
|
Q.Value AS low_price,
|
||||||
|
Q.Value AS open_price,
|
||||||
|
Q.Value AS price_value
|
||||||
|
FROM dbo.ExpenseRevenue AS ERMtM
|
||||||
|
INNER JOIN dbo.Deal AS D ON ERMtM.DealId = D.Id
|
||||||
|
INNER JOIN dbo.PriceFormulaElement AS PFEMtM ON PFEMtM.ExpenseRevenueId = ERMtM.Id AND PFEMtM.FormulaType <> 'Adjustment'
|
||||||
|
INNER JOIN price.Maturity AS M ON PFEMtM.MaturityId = M.Id
|
||||||
|
INNER JOIN price.Symbol AS S ON M.SymbolId = S.Id
|
||||||
|
INNER JOIN dbo.Book AS B ON D.BookId = B.Id
|
||||||
|
LEFT JOIN price.Quote AS Q ON M.Id = Q.MaturityId
|
||||||
|
WHERE 1=1
|
||||||
|
AND ERMtM.FormulaGroup = 2
|
||||||
|
AND PFEMtM.FormulaType LIKE 'MtM%'
|
||||||
|
AND S.Description NOT LIKE 'Freight%'
|
||||||
|
AND S.Description NOT LIKE 'Discount%'
|
||||||
|
AND S.Description NOT LIKE 'BAF%'
|
||||||
|
AND (B.Description LIKE '%2025%' OR B.Description LIKE '%2026%')
|
||||||
|
ORDER BY 1,2
|
||||||
|
|
||||||
|
|
||||||
|
SELECT DISTINCT formulaType FROM PriceFormulaElement
|
||||||
|
|
||||||
|
Trigger, RangeDate
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
-- Run that script to generate CSV for price_curve MTM used in physical contract in 2025 and 2026
|
||||||
|
SELECT DISTINCT
|
||||||
|
D.Reference,
|
||||||
|
PFEMtM.FormulaType,
|
||||||
|
CONCAT(
|
||||||
|
ISNULL(S.Description, '') , ' ' ,
|
||||||
|
M.MaturityYear , '-',
|
||||||
|
RIGHT(CONCAT('0', M.MaturityPeriod),2)
|
||||||
|
)AS price_index,
|
||||||
|
--Q.QuoteDate AS price_date,
|
||||||
|
--Q.Value AS high_price,
|
||||||
|
--Q.Value AS low_price,
|
||||||
|
--Q.Value AS open_price,
|
||||||
|
--Q.Value AS price_value,
|
||||||
|
|
||||||
|
PFEMtM.FirstDate,
|
||||||
|
PFEMtM.LastDate,
|
||||||
|
PFEMtM.TriggerDate,
|
||||||
|
PFEMtM.NbDaysBefore,
|
||||||
|
PFEMtM.NbDaysAfter,
|
||||||
|
|
||||||
|
PFEMtM.*
|
||||||
|
FROM dbo.ExpenseRevenue AS ERMtM
|
||||||
|
INNER JOIN dbo.Deal AS D ON ERMtM.DealId = D.Id
|
||||||
|
INNER JOIN dbo.PriceFormulaElement AS PFEMtM ON PFEMtM.ExpenseRevenueId = ERMtM.Id AND PFEMtM.FormulaType <> 'Adjustment'
|
||||||
|
INNER JOIN price.Maturity AS M ON PFEMtM.MaturityId = M.Id
|
||||||
|
INNER JOIN price.Symbol AS S ON M.SymbolId = S.Id
|
||||||
|
INNER JOIN dbo.Book AS B ON D.BookId = B.Id
|
||||||
|
LEFT JOIN price.Quote AS Q ON M.Id = Q.MaturityId
|
||||||
|
WHERE 1=1
|
||||||
|
AND ERMtM.FormulaGroup = 1
|
||||||
|
AND PFEMtM.FormulaType NOT LIKE 'MtM%'
|
||||||
|
AND S.Description NOT LIKE 'Freight%'
|
||||||
|
AND S.Description NOT LIKE 'Discount%'
|
||||||
|
AND S.Description NOT LIKE 'BAF%'
|
||||||
|
AND (B.Description LIKE '%2025%' OR B.Description LIKE '%2026%')
|
||||||
|
--AND D.Reference = 2097
|
||||||
|
ORDER BY 1,2
|
||||||
|
|
||||||
|
|||||||
BIN
Reference Data/Purchase_Contracts_2026.xlsx
Normal file
BIN
Reference Data/Purchase_Contracts_2026.xlsx
Normal file
Binary file not shown.
BIN
Reference Data/Purchase_and_sale_expenses.xlsx
Normal file
BIN
Reference Data/Purchase_and_sale_expenses.xlsx
Normal file
Binary file not shown.
BIN
Reference Data/Sale_Contracts_2026.xlsx
Normal file
BIN
Reference Data/Sale_Contracts_2026.xlsx
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -9,10 +9,12 @@ SUPPLIER_STOCK_LOCATIONS_CSV = 'loaders/supplier_stock_locations.csv'
|
|||||||
SERVICES_CSV = 'loaders/services.csv'
|
SERVICES_CSV = 'loaders/services.csv'
|
||||||
VESSELS_CSV = 'loaders/vessels.csv'
|
VESSELS_CSV = 'loaders/vessels.csv'
|
||||||
|
|
||||||
PURCHASE_CONTRACTS_CSV = 'loaders/Purchase_Contracts_with_mapping.csv'
|
PURCHASE_CONTRACTS_CSV = 'C:/Users/SylvainDUVERNAY/Open Squared/Production - Documents/TRADON Implementation/ITSA/Reference Data/python_project/loaders/Purchase_Contracts_with_mapping.csv'
|
||||||
PURCHASE_FEES_CSV = 'loaders/purchase_fees.csv'
|
PURCHASE_FEES_CSV = 'Reference Data\python_project\loaders\Purchase_Fees 2.csv'
|
||||||
|
|
||||||
SALE_CONTRACTS_CSV = 'loaders/Sale_Contracts_with_mapping.csv'
|
SALE_CONTRACTS_CSV = 'Reference Data\python_project\loaders\Sale_Contracts_with_mapping.csv'
|
||||||
|
SALE_FEES_CSV = 'loaders/sale_fees.csv'
|
||||||
|
PRICES_CSV = 'loaders/Prices_6.csv'
|
||||||
|
|
||||||
|
|
||||||
# XML-RPC Configuration (for Proteus interaction)
|
# XML-RPC Configuration (for Proteus interaction)
|
||||||
|
|||||||
@@ -510,11 +510,18 @@ def find_sale_contract_by_number(contract_number):
|
|||||||
|
|
||||||
Sale = Model.get('sale.sale')
|
Sale = Model.get('sale.sale')
|
||||||
|
|
||||||
# Search by number and party fields
|
# Search by number
|
||||||
contracts = Sale.find([
|
contracts = Sale.find([
|
||||||
('number', '=', contract_number.strip())
|
('number', '=', contract_number.strip())
|
||||||
])
|
])
|
||||||
|
|
||||||
|
# If not found, try by adding "S-" prefix (if not already present)
|
||||||
|
if not contracts and not contract_number.strip().startswith('S-'):
|
||||||
|
prefixed_number = f"S-{contract_number.strip()}"
|
||||||
|
contracts = Sale.find([
|
||||||
|
('number', '=', prefixed_number)
|
||||||
|
])
|
||||||
|
|
||||||
if contracts:
|
if contracts:
|
||||||
return contracts[0]
|
return contracts[0]
|
||||||
|
|
||||||
|
|||||||
2160
Reference Data/python_project/loaders/Prices.csv
Normal file
2160
Reference Data/python_project/loaders/Prices.csv
Normal file
File diff suppressed because it is too large
Load Diff
1109
Reference Data/python_project/loaders/Prices_2.csv
Normal file
1109
Reference Data/python_project/loaders/Prices_2.csv
Normal file
File diff suppressed because it is too large
Load Diff
1039
Reference Data/python_project/loaders/Prices_3.csv
Normal file
1039
Reference Data/python_project/loaders/Prices_3.csv
Normal file
File diff suppressed because it is too large
Load Diff
53
Reference Data/python_project/loaders/Prices_4.csv
Normal file
53
Reference Data/python_project/loaders/Prices_4.csv
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
price_index,price_date,high_price,low_price,open_price,price_value
|
||||||
|
CFR Chile 2025-04,2024-04-05,123,123,123,123
|
||||||
|
CFR Chile 2025-04,2024-04-12,123,123,123,123
|
||||||
|
CFR Chile 2025-04,2024-04-19,123,123,123,123
|
||||||
|
CFR Chile 2025-04,2024-04-26,123,123,123,123
|
||||||
|
CFR Chile 2025-04,2024-05-03,123,123,123,123
|
||||||
|
CFR Chile 2025-04,2024-05-10,123,123,123,123
|
||||||
|
CFR Chile 2025-04,2024-05-16,123,123,123,123
|
||||||
|
CFR Chile 2025-04,2024-05-24,123,123,123,123
|
||||||
|
CFR Chile 2025-04,2024-05-31,123,123,123,123
|
||||||
|
CFR Chile 2025-04,2024-06-07,123,123,123,123
|
||||||
|
CFR Chile 2025-04,2024-06-14,126,126,126,126
|
||||||
|
CFR Chile 2025-04,2024-06-21,130,130,130,130
|
||||||
|
CFR Chile 2025-04,2024-06-28,130,130,130,130
|
||||||
|
CFR Chile 2025-04,2024-07-05,130,130,130,130
|
||||||
|
CFR Chile 2025-04,2024-07-12,130,130,130,130
|
||||||
|
CFR Chile 2025-04,2024-07-19,140,140,140,140
|
||||||
|
CFR Chile 2025-04,2024-07-23,140,140,140,140
|
||||||
|
CFR Chile 2025-04,2024-07-26,147,147,147,147
|
||||||
|
CFR Chile 2025-04,2024-08-02,147,147,147,147
|
||||||
|
CFR Chile 2025-04,2024-08-09,149,149,149,149
|
||||||
|
CFR Chile 2025-04,2024-08-16,150,150,150,150
|
||||||
|
CFR Chile 2025-04,2024-08-23,153,153,153,153
|
||||||
|
CFR Chile 2025-04,2024-08-30,153,153,153,153
|
||||||
|
CFR Chile 2025-04,2024-09-06,153,153,153,153
|
||||||
|
CFR Chile 2025-04,2024-09-13,153,153,153,153
|
||||||
|
CFR Chile 2025-04,2024-09-20,157,157,157,157
|
||||||
|
CFR Chile 2025-04,2024-09-27,159,159,159,159
|
||||||
|
CFR Chile 2025-04,2024-10-04,161,161,161,161
|
||||||
|
CFR Chile 2025-04,2024-10-11,161,161,161,161
|
||||||
|
CFR Chile 2025-04,2024-10-18,162,162,162,162
|
||||||
|
CFR Chile 2025-04,2024-10-25,162,162,162,162
|
||||||
|
CFR Chile 2025-04,2024-11-01,160,160,160,160
|
||||||
|
CFR Chile 2025-04,2024-11-08,154,154,154,154
|
||||||
|
CFR Chile 2025-04,2024-11-15,151,151,151,151
|
||||||
|
CFR Chile 2025-04,2024-11-22,151,151,151,151
|
||||||
|
CFR Chile 2025-04,2024-11-29,151,151,151,151
|
||||||
|
CFR Chile 2025-04,2024-12-06,152,152,152,152
|
||||||
|
CFR Chile 2025-04,2024-12-13,151,151,151,151
|
||||||
|
CFR Chile 2025-04,2024-12-20,150,150,150,150
|
||||||
|
CFR Chile 2025-04,2025-01-10,149,149,149,149
|
||||||
|
CFR Chile 2025-04,2025-01-17,150,150,150,150
|
||||||
|
CFR Chile 2025-04,2025-01-24,150,150,150,150
|
||||||
|
CFR Chile 2025-04,2025-01-31,149,149,149,149
|
||||||
|
CFR Chile 2025-04,2025-02-03,149,149,149,149
|
||||||
|
CFR Chile 2025-04,2025-02-07,145,145,145,145
|
||||||
|
CFR Chile 2025-04,2025-02-14,144,144,144,144
|
||||||
|
CFR Chile 2025-04,2025-02-21,144,144,144,144
|
||||||
|
CFR Chile 2025-04,2025-02-28,142,142,142,142
|
||||||
|
CFR Chile 2025-04,2025-03-07,142,142,142,142
|
||||||
|
CFR Chile 2025-04,2025-03-14,145,145,145,145
|
||||||
|
CFR Chile 2025-04,2025-03-21,150,150,150,150
|
||||||
|
CFR Chile 2025-04,2025-03-28,160,160,160,160
|
||||||
|
559
Reference Data/python_project/loaders/Prices_5.csv
Normal file
559
Reference Data/python_project/loaders/Prices_5.csv
Normal file
@@ -0,0 +1,559 @@
|
|||||||
|
price_index,price_date,high_price,low_price,open_price,price_value
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2026-02-26,135,135,135,135
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2026-02-19,135,135,135,135
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2026-02-12,130,130,130,130
|
||||||
|
CFR Gladstone 2026-03,2026-02-06,217,217,217,217
|
||||||
|
CFR India 2026-04,2026-02-06,165,165,165,165
|
||||||
|
FOB China 2026-03,2026-02-06,130,130,130,130
|
||||||
|
FOB NWE 2026-03,2026-02-06,127.5,127.5,127.5,127.5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2026-02-05,130,130,130,130
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2026-01-29,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2026-01-22,115,115,115,115
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2026-01-15,108,108,108,108
|
||||||
|
CFR Gladstone 2026-03,2026-01-09,202,202,202,202
|
||||||
|
CFR India 2026-04,2026-01-09,154,154,154,154
|
||||||
|
FOB China 2026-03,2026-01-09,125,125,125,125
|
||||||
|
FOB NWE 2026-03,2026-01-09,122,122,122,122
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2026-01-08,108,108,108,108
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2026-01-02,108,108,108,108
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-12-18,108,108,108,108
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-12-11,108,108,108,108
|
||||||
|
CFR Gladstone 2026-03,2025-12-05,192,192,192,192
|
||||||
|
CFR India 2026-04,2025-12-05,134,134,134,134
|
||||||
|
CFR LXML Fixed price 2026-01,2025-12-05,82.4,82.4,82.4,82.4
|
||||||
|
FOB China 2026-03,2025-12-05,105,105,105,105
|
||||||
|
FOB NWE 2026-03,2025-12-05,102,102,102,102
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-12-04,108,108,108,108
|
||||||
|
CFR Gladstone 2026-03,2025-12-01,192,192,192,192
|
||||||
|
CFR India 2026-04,2025-12-01,134,134,134,134
|
||||||
|
CFR LXML Fixed price 2026-01,2025-12-01,105,105,105,105
|
||||||
|
FOB China 2026-03,2025-12-01,105,105,105,105
|
||||||
|
FOB NWE 2026-03,2025-12-01,102,102,102,102
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-11-27,108,108,108,108
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-11-20,108,108,108,108
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-11-13,108,108,108,108
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-11-06,108,108,108,108
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-10-30,83,83,83,83
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-10-23,78,78,78,78
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-10-16,73,73,73,73
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-10-09,61,61,61,61
|
||||||
|
CFR Gladstone 2025-12,2025-10-03,155,155,155,155
|
||||||
|
CFR Gladstone 2026-03,2025-10-03,152,152,152,152
|
||||||
|
CFR India 2026-04,2025-10-03,99,99,99,99
|
||||||
|
CFR LXML Fixed price 2026-01,2025-10-03,75,75,75,75
|
||||||
|
FOB China 2026-03,2025-10-03,65,65,65,65
|
||||||
|
FOB NWE 2026-03,2025-10-03,75,75,75,75
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-10-02,61,61,61,61
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-09-25,61,61,61,61
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-09-18,63,63,63,63
|
||||||
|
CFR Chile 2025-10,2025-09-12,155,155,155,155
|
||||||
|
CFR Gladstone 2025-12,2025-09-12,157,157,157,157
|
||||||
|
CFR Gladstone 2026-03,2025-09-12,157,157,157,157
|
||||||
|
CFR India 2026-04,2025-09-12,104,104,104,104
|
||||||
|
CFR LXML Fixed price 2026-01,2025-09-12,75,75,75,75
|
||||||
|
FOB China 2026-03,2025-09-12,70,70,70,70
|
||||||
|
FOB Japan/South Korea 2025-10,2025-09-12,70,70,70,70
|
||||||
|
FOB NWE 2026-03,2025-09-12,60,60,60,60
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-09-11,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-09-04,74,74,74,74
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-08-28,75,75,75,75
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-08-21,75,75,75,75
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-08-14,80,80,80,80
|
||||||
|
CFR Chile 2025-10,2025-08-11,175,175,175,175
|
||||||
|
CFR Gladstone 2025-12,2025-08-11,177,177,177,177
|
||||||
|
CFR Gladstone 2026-03,2025-08-11,167,167,167,167
|
||||||
|
CFR India 2026-04,2025-08-11,119,119,119,119
|
||||||
|
CFR LXML Fixed price 2026-01,2025-08-11,75,75,75,75
|
||||||
|
FOB China 2026-03,2025-08-11,80,80,80,80
|
||||||
|
FOB Japan/South Korea 2025-10,2025-08-11,88,88,88,88
|
||||||
|
FOB NWE 2026-03,2025-08-11,100,100,100,100
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-08-07,80,80,80,80
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-07-31,80,80,80,80
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-07-24,80,80,80,80
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-07-17,80,80,80,80
|
||||||
|
CFR Chile 2025-10,2025-07-11,179,179,179,179
|
||||||
|
FOB Japan/South Korea 2025-10,2025-07-11,90,90,90,90
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-07-10,80,80,80,80
|
||||||
|
CFR Chile 2025-10,2025-07-04,179,179,179,179
|
||||||
|
CFR Gladstone 2025-12,2025-07-04,172,172,172,172
|
||||||
|
CFR Gladstone 2026-03,2025-07-04,167,167,167,167
|
||||||
|
CFR India 2026-04,2025-07-04,114,114,114,114
|
||||||
|
CFR LXML Fixed price 2026-01,2025-07-04,75,75,75,75
|
||||||
|
FOB China 2026-03,2025-07-04,80,80,80,80
|
||||||
|
FOB Japan/South Korea 2025-10,2025-07-04,90,90,90,90
|
||||||
|
FOB NWE 2026-03,2025-07-04,100,100,100,100
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-07-03,80,80,80,80
|
||||||
|
CFR Gladstone 2026-03,2025-07-02,167,167,167,167
|
||||||
|
CFR India 2026-04,2025-07-02,114,114,114,114
|
||||||
|
FOB China 2026-03,2025-07-02,80,80,80,80
|
||||||
|
FOB NWE 2026-03,2025-07-02,100,100,100,100
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-06-26,80,80,80,80
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-06-19,75,75,75,75
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-06-12,75,75,75,75
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-06-05,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-05-29,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-05-22,67,67,67,67
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-05-15,65,65,65,65
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-05-08,65,65,65,65
|
||||||
|
CFR Chile 2025-10,2025-05-02,150,150,150,150
|
||||||
|
CFR Gladstone 2025-12,2025-05-02,139,139,139,139
|
||||||
|
CFR Gladstone 2026-03,2025-05-02,139,139,139,139
|
||||||
|
CFR India 2026-04,2025-05-02,90,90,90,90
|
||||||
|
CFR LXML Fixed price 2026-01,2025-05-02,75,75,75,75
|
||||||
|
FOB China 2026-03,2025-05-02,50,50,50,50
|
||||||
|
FOB Japan/South Korea 2025-10,2025-05-02,50,50,50,50
|
||||||
|
FOB NWE 2026-03,2025-05-02,82,82,82,82
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-05-01,65,65,65,65
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-04-24,65,65,65,65
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-04-17,65,65,65,65
|
||||||
|
CFR Chile 2025-05,2025-04-11,165,165,165,165
|
||||||
|
CFR Chile 2025-10,2025-04-11,148,148,148,148
|
||||||
|
CFR Gladstone 2025-12,2025-04-11,136,136,136,136
|
||||||
|
CFR Gladstone 2026-03,2025-04-11,136,136,136,136
|
||||||
|
CFR India 2026-04,2025-04-11,88,88,88,88
|
||||||
|
CFR LXML Fixed price 2026-01,2025-04-11,75,75,75,75
|
||||||
|
FOB China 2026-03,2025-04-11,46,46,46,46
|
||||||
|
FOB Japan/South Korea 2025-10,2025-04-11,50,50,50,50
|
||||||
|
FOB NWE 2026-03,2025-04-11,80,80,80,80
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-04-10,60,60,60,60
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-04-03,55,55,55,55
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-03-27,55,55,55,55
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-03-20,50,50,50,50
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-03-13,50,50,50,50
|
||||||
|
CFR Chile 2025-05,2025-03-07,142,142,142,142
|
||||||
|
CFR Chile 2025-10,2025-03-07,140,140,140,140
|
||||||
|
CFR Gladstone 2025-12,2025-03-07,136,136,136,136
|
||||||
|
CFR Gladstone 2026-03,2025-03-07,136,136,136,136
|
||||||
|
CFR LXML Fixed price 2026-01,2025-03-07,75,75,75,75
|
||||||
|
CFR US Gulf 2025-04,2025-03-07,120,120,120,120
|
||||||
|
FOB China 2026-03,2025-03-07,46,46,46,46
|
||||||
|
FOB Japan/South Korea 2025-10,2025-03-07,42,42,42,42
|
||||||
|
FOB NWE 2026-03,2025-03-07,75,75,75,75
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-03-06,45,45,45,45
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-02-27,45,45,45,45
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-02-20,43,43,43,43
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-02-13,43,43,43,43
|
||||||
|
CFR Chile 2025-05,2025-02-07,145,145,145,145
|
||||||
|
CFR SEA 2025-03,2025-02-07,78.68,78.68,78.68,78.68
|
||||||
|
CFR US Gulf 2025-04,2025-02-07,135,135,135,135
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-02-06,43,43,43,43
|
||||||
|
CFR Chile 2025-05,2025-02-03,149,149,149,149
|
||||||
|
CFR Chile 2025-10,2025-02-03,149,149,149,149
|
||||||
|
CFR Gladstone 2025-12,2025-02-03,136,136,136,136
|
||||||
|
CFR LXML Fixed price 2026-01,2025-02-03,75,75,75,75
|
||||||
|
CFR SEA 2025-03,2025-02-03,82.68,82.68,82.68,82.68
|
||||||
|
CFR US Gulf 2025-04,2025-02-03,136,136,136,136
|
||||||
|
FOB Japan/South Korea 2025-10,2025-02-03,42,42,42,42
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-01-30,43,43,43,43
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-01-23,43,43,43,43
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-01-16,45,45,45,45
|
||||||
|
CFR Chile 2025-05,2025-01-10,149,149,149,149
|
||||||
|
CFR Chile 2025-10,2025-01-10,149,149,149,149
|
||||||
|
CFR Gladstone 2025-12,2025-01-10,135,135,135,135
|
||||||
|
CFR LXML Fixed price 2026-01,2025-01-10,75,75,75,75
|
||||||
|
CFR SEA 2025-03,2025-01-10,82.68,82.68,82.68,82.68
|
||||||
|
CFR US Gulf 2025-04,2025-01-10,139,139,139,139
|
||||||
|
FOB Japan/South Korea 2025-10,2025-01-10,41,41,41,41
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-01-09,44,44,44,44
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-01-03,44,44,44,44
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-12-19,44,44,44,44
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-12-12,44,44,44,44
|
||||||
|
CFR Chile 2025-05,2024-12-06,152,152,152,152
|
||||||
|
CFR Chile 2025-10,2024-12-06,152,152,152,152
|
||||||
|
CFR Gladstone 2025-12,2024-12-06,136,136,136,136
|
||||||
|
CFR SEA 2025-03,2024-12-06,80.68,80.68,80.68,80.68
|
||||||
|
CFR US Gulf 2025-04,2024-12-06,134,134,134,134
|
||||||
|
FOB Japan/South Korea 2025-10,2024-12-06,41,41,41,41
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-12-05,45,45,45,45
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-11-28,45,45,45,45
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-11-21,48,48,48,48
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-11-14,48,48,48,48
|
||||||
|
CFR Chile 2025-05,2024-11-08,154,154,154,154
|
||||||
|
CFR Chile 2025-10,2024-11-08,154,154,154,154
|
||||||
|
CFR SEA 2025-03,2024-11-08,75.68,75.68,75.68,75.68
|
||||||
|
CFR US Gulf 2025-04,2024-11-08,131,131,131,131
|
||||||
|
FOB Japan/South Korea 2025-10,2024-11-08,40,40,40,40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-11-07,48,48,48,48
|
||||||
|
CFR Chile 2025-05,2024-11-01,160,160,160,160
|
||||||
|
CFR Chile 2025-10,2024-11-01,160,160,160,160
|
||||||
|
CFR SEA 2025-03,2024-11-01,76.68,76.68,76.68,76.68
|
||||||
|
CFR US Gulf 2025-04,2024-11-01,131,131,131,131
|
||||||
|
FOB Japan/South Korea 2025-10,2024-11-01,41,41,41,41
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-10-31,48,48,48,48
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-10-24,48,48,48,48
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-10-17,48,48,48,48
|
||||||
|
CFR Chile 2025-05,2024-10-11,161,161,161,161
|
||||||
|
CFR Chile 2025-10,2024-10-11,161,161,161,161
|
||||||
|
CFR SEA 2025-03,2024-10-11,77.68,77.68,77.68,77.68
|
||||||
|
CFR US Gulf 2025-04,2024-10-11,132,132,132,132
|
||||||
|
FOB Japan/South Korea 2025-10,2024-10-11,39,39,39,39
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-10-10,45,45,45,45
|
||||||
|
CFR Chile 2025-05,2024-10-04,161,161,161,161
|
||||||
|
CFR Chile 2025-10,2024-10-04,161,161,161,161
|
||||||
|
CFR SEA 2025-03,2024-10-04,75.68,75.68,75.68,75.68
|
||||||
|
CFR US Gulf 2025-04,2024-10-04,128,128,128,128
|
||||||
|
FOB Japan/South Korea 2025-10,2024-10-04,39,39,39,39
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-10-03,42,42,42,42
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-09-26,42,42,42,42
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-09-19,42,42,42,42
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-09-12,44,44,44,44
|
||||||
|
CFR Chile 2025-05,2024-09-06,153,153,153,153
|
||||||
|
CFR SEA 2025-03,2024-09-06,69.18,69.18,69.18,69.18
|
||||||
|
CFR US Gulf 2025-04,2024-09-06,109,109,109,109
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-09-05,44,44,44,44
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-08-29,40,40,40,40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-08-22,42,42,42,42
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-08-15,40,40,40,40
|
||||||
|
CFR Chile 2025-05,2024-08-09,149,149,149,149
|
||||||
|
CFR SEA 2025-03,2024-08-09,67.75,67.75,67.75,67.75
|
||||||
|
CFR US Gulf 2025-04,2024-08-09,96,96,96,96
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-08-08,40,40,40,40
|
||||||
|
CFR Chile 2025-05,2024-08-02,147,147,147,147
|
||||||
|
CFR SEA 2025-03,2024-08-02,65.25,65.25,65.25,65.25
|
||||||
|
CFR US Gulf 2025-04,2024-08-02,96,96,96,96
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-08-01,37,37,37,37
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-07-25,37,37,37,37
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-07-18,30,30,30,30
|
||||||
|
CFR Chile 2025-05,2024-07-12,130,130,130,130
|
||||||
|
CFR SEA 2025-03,2024-07-12,58.25,58.25,58.25,58.25
|
||||||
|
CFR US Gulf 2025-04,2024-07-12,95,95,95,95
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-07-11,28,28,28,28
|
||||||
|
CFR Chile 2025-05,2024-07-05,130,130,130,130
|
||||||
|
CFR SEA 2025-03,2024-07-05,58.25,58.25,58.25,58.25
|
||||||
|
CFR US Gulf 2025-04,2024-07-05,92,92,92,92
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-07-04,25,25,25,25
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-06-27,22,22,22,22
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-06-20,20,20,20,20
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-06-13,15,15,15,15
|
||||||
|
CFR Chile 2025-05,2024-06-07,123,123,123,123
|
||||||
|
CFR SEA 2025-03,2024-06-07,51.58,51.58,51.58,51.58
|
||||||
|
CFR US Gulf 2025-04,2024-06-07,92,92,92,92
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-06-06,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-05-30,12,12,12,12
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-05-23,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-05-16,15,15,15,15
|
||||||
|
CFR Chile 2025-05,2024-05-10,123,123,123,123
|
||||||
|
CFR SEA 2025-03,2024-05-10,51.08,51.08,51.08,51.08
|
||||||
|
CFR US Gulf 2025-04,2024-05-10,92,92,92,92
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-05-09,15,15,15,15
|
||||||
|
CFR Chile 2025-05,2024-05-03,123,123,123,123
|
||||||
|
CFR SEA 2025-03,2024-05-03,51.08,51.08,51.08,51.08
|
||||||
|
CFR US Gulf 2025-04,2024-05-03,92,92,92,92
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-05-02,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-04-25,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-04-18,15,15,15,15
|
||||||
|
CFR SEA 2025-03,2024-04-12,51.08,51.08,51.08,51.08
|
||||||
|
CFR US Gulf 2025-04,2024-04-12,95,95,95,95
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-04-11,10,10,10,10
|
||||||
|
CFR SEA 2025-03,2024-04-05,51.08,51.08,51.08,51.08
|
||||||
|
CFR US Gulf 2025-04,2024-04-05,95,95,95,95
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-04-04,6,6,6,6
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-03-28,2,2,2,2
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-03-21,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-03-14,5,5,5,5
|
||||||
|
CFR SEA 2025-03,2024-03-08,46.08,46.08,46.08,46.08
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-03-07,2,2,2,2
|
||||||
|
CFR SEA 2025-03,2024-03-01,48.08,48.08,48.08,48.08
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-02-29,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-02-22,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-02-15,4,4,4,4
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-02-08,4,4,4,4
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-02-01,4,4,4,4
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-01-25,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-01-18,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-01-11,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-01-04,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-12-21,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-12-14,12,12,12,12
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-12-07,16,16,16,16
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-11-30,23,23,23,23
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-11-23,25,25,25,25
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-11-16,27,27,27,27
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-11-09,32,32,32,32
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-11-02,35,35,35,35
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-10-26,38,38,38,38
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-10-19,40,40,40,40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-10-12,38,38,38,38
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-10-05,43,43,43,43
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-09-28,43,43,43,43
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-09-21,43,43,43,43
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-09-14,38,38,38,38
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-09-07,28,28,28,28
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-08-31,28,28,28,28
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-08-24,18,18,18,18
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-08-17,0,0,0,0
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-08-10,0,0,0,0
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-08-03,-5,-5,-5,-5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-07-27,-15,-15,-15,-15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-07-20,-15,-15,-15,-15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-07-13,-10,-10,-10,-10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-07-06,-10,-10,-10,-10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-06-29,-7,-7,-7,-7
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-06-22,-5,-5,-5,-5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-06-15,0,0,0,0
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-06-08,0,0,0,0
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-06-01,0,0,0,0
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-05-25,0,0,0,0
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-05-18,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-05-11,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-05-04,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-04-27,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-04-20,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-04-13,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-04-06,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-03-30,0,0,0,0
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-03-23,-5,-5,-5,-5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-03-16,-10,-10,-10,-10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-03-09,-10,-10,-10,-10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-03-02,-10,-10,-10,-10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-02-23,-18,-18,-18,-18
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-02-16,1,1,1,1
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-02-09,1,1,1,1
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-02-02,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-01-26,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-01-19,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-01-12,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-01-05,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-12-22,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-12-15,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-12-08,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-12-01,20,20,20,20
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-11-24,20,20,20,20
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-11-17,20,20,20,20
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-11-10,20,20,20,20
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-11-03,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-10-27,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-10-20,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-10-13,3,3,3,3
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-10-06,3,3,3,3
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-09-29,1,1,1,1
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-09-22,1,1,1,1
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-09-15,1,1,1,1
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-09-08,1,1,1,1
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-09-01,40,40,40,40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-08-25,40,40,40,40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-08-18,95,95,95,95
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-08-11,100,100,100,100
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-08-04,110,110,110,110
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-07-28,110,110,110,110
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-07-21,110,110,110,110
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-07-14,120,120,120,120
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-07-07,130,130,130,130
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-06-30,133,133,133,133
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-06-23,133,133,133,133
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-06-16,133,133,133,133
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-06-09,133,133,133,133
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-06-01,133,133,133,133
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-05-26,133,133,133,133
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-05-19,133,133,133,133
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-05-12,133,133,133,133
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-05-05,133,133,133,133
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-04-28,133,133,133,133
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-04-21,130,130,130,130
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-04-14,130,130,130,130
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-04-07,130,130,130,130
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-03-31,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-03-24,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-03-17,120,120,120,120
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-03-10,120,120,120,120
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-03-03,115,115,115,115
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-02-24,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-02-17,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-02-10,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-02-03,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-01-27,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-01-20,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-01-13,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-01-06,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-12-23,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-12-16,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-12-09,120,120,120,120
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-12-02,120,120,120,120
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-11-25,120,120,120,120
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-11-18,120,120,120,120
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-11-11,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-11-04,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-10-28,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-10-21,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-10-14,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-10-07,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-09-30,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-09-23,115,115,115,115
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-09-16,115,115,115,115
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-09-09,115,115,115,115
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-09-02,115,115,115,115
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-08-26,115,115,115,115
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-08-19,115,115,115,115
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-08-12,110,110,110,110
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-08-05,105,105,105,105
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-07-29,100,100,100,100
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-07-22,95,95,95,95
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-07-15,95,95,95,95
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-07-08,95,95,95,95
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-07-01,90,90,90,90
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-06-24,90,90,90,90
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-06-17,90,90,90,90
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-06-10,77,77,77,77
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-06-03,77,77,77,77
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-05-27,77,77,77,77
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-05-20,77,77,77,77
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-05-13,77,77,77,77
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-05-06,77,77,77,77
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-04-29,75,75,75,75
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-04-22,75,75,75,75
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-04-15,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-04-08,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-04-01,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-03-25,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-03-18,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-03-11,60,60,60,60
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-03-04,60,60,60,60
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-02-25,50,50,50,50
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-02-18,50,50,50,50
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-02-11,40,40,40,40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-02-04,40,40,40,40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-01-28,40,40,40,40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-01-21,20,20,20,20
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-01-14,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-01-07,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-12-23,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-12-17,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-12-10,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-12-03,3,3,3,3
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-11-26,3,3,3,3
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-11-19,0,0,0,0
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-11-12,-4,-4,-4,-4
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-11-05,-6,-6,-6,-6
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-10-29,-8,-8,-8,-8
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-10-22,-8,-8,-8,-8
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-10-15,-8,-8,-8,-8
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-10-08,-10,-10,-10,-10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-10-01,-10,-10,-10,-10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-09-24,-14,-14,-14,-14
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-09-17,-14,-14,-14,-14
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-09-10,-14,-14,-14,-14
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-09-03,-15,-15,-15,-15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-08-27,-20,-20,-20,-20
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-08-20,-20,-20,-20,-20
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-08-13,-22,-22,-22,-22
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-08-06,-22,-22,-22,-22
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-07-30,-22,-22,-22,-22
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-07-23,-22,-22,-22,-22
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-07-16,-22,-22,-22,-22
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-07-09,-22,-22,-22,-22
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-07-02,-17,-17,-17,-17
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-06-25,-17,-17,-17,-17
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-06-18,-17,-17,-17,-17
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-06-11,-17,-17,-17,-17
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-06-04,-17,-17,-17,-17
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-05-28,-17,-17,-17,-17
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-05-21,-17,-17,-17,-17
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-05-14,-20,-20,-20,-20
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-05-07,-25,-25,-25,-25
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-04-30,-35,-35,-35,-35
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-04-23,-40,-40,-40,-40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-04-16,-45,-45,-45,-45
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-04-09,-40,-40,-40,-40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-04-02,-40,-40,-40,-40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-03-26,-30,-30,-30,-30
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-03-19,-30,-30,-30,-30
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-03-12,-25,-25,-25,-25
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-03-05,-20,-20,-20,-20
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-02-27,-20,-20,-20,-20
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-02-20,-11,-11,-11,-11
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-02-13,-11,-11,-11,-11
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-02-06,-5,-5,-5,-5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-01-30,0,0,0,0
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-01-23,0,0,0,0
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-01-16,0,0,0,0
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-01-09,4,4,4,4
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-01-03,4,4,4,4
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-12-19,4,4,4,4
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-12-12,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-12-05,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-11-28,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-11-21,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-11-14,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-11-07,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-10-31,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-10-24,8,8,8,8
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-10-17,9,9,9,9
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-10-10,9,9,9,9
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-10-03,9,9,9,9
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-09-26,9,9,9,9
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-09-19,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-09-12,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-09-05,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-08-29,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-08-22,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-08-15,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-08-08,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-08-01,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-07-25,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-07-18,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-07-11,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-07-04,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-06-27,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-06-20,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-06-13,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-06-06,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-05-30,25,25,25,25
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-05-23,28,28,28,28
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-05-16,28,28,28,28
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-05-09,40,40,40,40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-05-02,40,40,40,40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-04-25,45,45,45,45
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-04-18,45,45,45,45
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-04-11,50,50,50,50
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-04-04,50,50,50,50
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-03-28,55,55,55,55
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-03-21,55,55,55,55
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-03-14,55,55,55,55
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-03-07,55,55,55,55
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-02-28,58,58,58,58
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-02-21,58,58,58,58
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-02-14,58,58,58,58
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-02-07,62,62,62,62
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-01-31,62,62,62,62
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-01-24,65,65,65,65
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-01-17,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-01-10,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-01-03,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-12-20,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-12-13,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-12-06,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-11-29,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-11-22,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-11-15,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-11-08,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-11-01,67,67,67,67
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-10-25,65,65,65,65
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-10-18,65,65,65,65
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-10-11,62,62,62,62
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-10-04,62,62,62,62
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-09-27,62,62,62,62
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-09-20,55,55,55,55
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-09-13,55,55,55,55
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-09-06,52,52,52,52
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-08-30,50,50,50,50
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-08-23,50,50,50,50
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-08-16,50,50,50,50
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-08-09,50,50,50,50
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-08-02,50,50,50,50
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-07-26,50,50,50,50
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-07-19,45,45,45,45
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-07-12,45,45,45,45
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-07-05,40,40,40,40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-06-28,35,35,35,35
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-06-21,35,35,35,35
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-06-14,35,35,35,35
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-06-07,35,35,35,35
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-05-31,35,35,35,35
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-05-24,30,30,30,30
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-05-17,30,30,30,30
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-05-10,25,25,25,25
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-05-03,25,25,25,25
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-04-26,25,25,25,25
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-04-19,25,25,25,25
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-04-12,25,25,25,25
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-04-05,25,25,25,25
|
||||||
|
406
Reference Data/python_project/loaders/Prices_6.csv
Normal file
406
Reference Data/python_project/loaders/Prices_6.csv
Normal file
@@ -0,0 +1,406 @@
|
|||||||
|
price_index,price_date,high_price,low_price,open_price,price_value
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-04-05,25,25,25,25
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-04-12,25,25,25,25
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-04-19,25,25,25,25
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-04-26,25,25,25,25
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-05-03,25,25,25,25
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-05-10,25,25,25,25
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-05-17,30,30,30,30
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-05-24,30,30,30,30
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-05-31,35,35,35,35
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-06-07,35,35,35,35
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-06-14,35,35,35,35
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-06-21,35,35,35,35
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-06-28,35,35,35,35
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-07-05,40,40,40,40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-07-12,45,45,45,45
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-07-19,45,45,45,45
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-07-26,50,50,50,50
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-08-02,50,50,50,50
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-08-09,50,50,50,50
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-08-16,50,50,50,50
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-08-23,50,50,50,50
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-08-30,50,50,50,50
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-09-06,52,52,52,52
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-09-13,55,55,55,55
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-09-20,55,55,55,55
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-09-27,62,62,62,62
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-10-04,62,62,62,62
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-10-11,62,62,62,62
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-10-18,65,65,65,65
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-10-25,65,65,65,65
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-11-01,67,67,67,67
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-11-08,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-11-15,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-11-22,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-11-29,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-12-06,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-12-13,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2018-12-20,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-01-03,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-01-10,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-01-17,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-01-24,65,65,65,65
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-01-31,62,62,62,62
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-02-07,62,62,62,62
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-02-14,58,58,58,58
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-02-21,58,58,58,58
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-02-28,58,58,58,58
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-03-07,55,55,55,55
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-03-14,55,55,55,55
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-03-21,55,55,55,55
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-03-28,55,55,55,55
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-04-04,50,50,50,50
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-04-11,50,50,50,50
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-04-18,45,45,45,45
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-04-25,45,45,45,45
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-05-02,40,40,40,40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-05-09,40,40,40,40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-05-16,28,28,28,28
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-05-23,28,28,28,28
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-05-30,25,25,25,25
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-06-06,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-06-13,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-06-20,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-06-27,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-07-04,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-07-11,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-07-18,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-07-25,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-08-01,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-08-08,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-08-15,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-08-22,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-08-29,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-09-05,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-09-12,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-09-19,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-09-26,9,9,9,9
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-10-03,9,9,9,9
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-10-10,9,9,9,9
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-10-17,9,9,9,9
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-10-24,8,8,8,8
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-10-31,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-11-07,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-11-14,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-11-21,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-11-28,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-12-05,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-12-12,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2019-12-19,4,4,4,4
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-01-03,4,4,4,4
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-01-09,4,4,4,4
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-01-16,0,0,0,0
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-01-23,0,0,0,0
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-01-30,0,0,0,0
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-02-06,-5,-5,-5,-5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-02-13,-11,-11,-11,-11
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-02-20,-11,-11,-11,-11
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-02-27,-20,-20,-20,-20
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-03-05,-20,-20,-20,-20
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-03-12,-25,-25,-25,-25
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-03-19,-30,-30,-30,-30
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-03-26,-30,-30,-30,-30
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-04-02,-40,-40,-40,-40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-04-09,-40,-40,-40,-40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-04-16,-45,-45,-45,-45
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-04-23,-40,-40,-40,-40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-04-30,-35,-35,-35,-35
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-05-07,-25,-25,-25,-25
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-05-14,-20,-20,-20,-20
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-05-21,-17,-17,-17,-17
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-05-28,-17,-17,-17,-17
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-06-04,-17,-17,-17,-17
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-06-11,-17,-17,-17,-17
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-06-18,-17,-17,-17,-17
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-06-25,-17,-17,-17,-17
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-07-02,-17,-17,-17,-17
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-07-09,-22,-22,-22,-22
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-07-16,-22,-22,-22,-22
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-07-23,-22,-22,-22,-22
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-07-30,-22,-22,-22,-22
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-08-06,-22,-22,-22,-22
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-08-13,-22,-22,-22,-22
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-08-20,-20,-20,-20,-20
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-08-27,-20,-20,-20,-20
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-09-03,-15,-15,-15,-15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-09-10,-14,-14,-14,-14
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-09-17,-14,-14,-14,-14
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-09-24,-14,-14,-14,-14
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-10-01,-10,-10,-10,-10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-10-08,-10,-10,-10,-10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-10-15,-8,-8,-8,-8
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-10-22,-8,-8,-8,-8
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-10-29,-8,-8,-8,-8
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-11-05,-6,-6,-6,-6
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-11-12,-4,-4,-4,-4
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-11-19,0,0,0,0
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-11-26,3,3,3,3
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-12-03,3,3,3,3
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-12-10,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-12-17,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2020-12-23,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-01-07,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-01-14,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-01-21,20,20,20,20
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-01-28,40,40,40,40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-02-04,40,40,40,40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-02-11,40,40,40,40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-02-18,50,50,50,50
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-02-25,50,50,50,50
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-03-04,60,60,60,60
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-03-11,60,60,60,60
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-03-18,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-03-25,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-04-01,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-04-08,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-04-15,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-04-22,75,75,75,75
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-04-29,75,75,75,75
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-05-06,77,77,77,77
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-05-13,77,77,77,77
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-05-20,77,77,77,77
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-05-27,77,77,77,77
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-06-03,77,77,77,77
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-06-10,77,77,77,77
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-06-17,90,90,90,90
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-06-24,90,90,90,90
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-07-01,90,90,90,90
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-07-08,95,95,95,95
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-07-15,95,95,95,95
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-07-22,95,95,95,95
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-07-29,100,100,100,100
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-08-05,105,105,105,105
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-08-12,110,110,110,110
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-08-19,115,115,115,115
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-08-26,115,115,115,115
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-09-02,115,115,115,115
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-09-09,115,115,115,115
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-09-16,115,115,115,115
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-09-23,115,115,115,115
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-09-30,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-10-07,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-10-14,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-10-21,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-10-28,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-11-04,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-11-11,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-11-18,120,120,120,120
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-11-25,120,120,120,120
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-12-02,120,120,120,120
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-12-09,120,120,120,120
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-12-16,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2021-12-23,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-01-06,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-01-13,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-01-20,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-01-27,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-02-03,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-02-10,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-02-17,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-02-24,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-03-03,115,115,115,115
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-03-10,120,120,120,120
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-03-17,120,120,120,120
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-03-24,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-03-31,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-04-07,130,130,130,130
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-04-14,130,130,130,130
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-04-21,130,130,130,130
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-04-28,133,133,133,133
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-05-05,133,133,133,133
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-05-12,133,133,133,133
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-05-19,133,133,133,133
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-05-26,133,133,133,133
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-06-01,133,133,133,133
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-06-09,133,133,133,133
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-06-16,133,133,133,133
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-06-23,133,133,133,133
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-06-30,133,133,133,133
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-07-07,130,130,130,130
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-07-14,120,120,120,120
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-07-21,110,110,110,110
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-07-28,110,110,110,110
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-08-04,110,110,110,110
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-08-11,100,100,100,100
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-08-18,95,95,95,95
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-08-25,40,40,40,40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-09-01,40,40,40,40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-09-08,1,1,1,1
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-09-15,1,1,1,1
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-09-22,1,1,1,1
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-09-29,1,1,1,1
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-10-06,3,3,3,3
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-10-13,3,3,3,3
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-10-20,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-10-27,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-11-03,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-11-10,20,20,20,20
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-11-17,20,20,20,20
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-11-24,20,20,20,20
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-12-01,20,20,20,20
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-12-08,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-12-15,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2022-12-22,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-01-05,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-01-12,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-01-19,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-01-26,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-02-02,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-02-09,1,1,1,1
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-02-16,1,1,1,1
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-02-23,-18,-18,-18,-18
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-03-02,-10,-10,-10,-10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-03-09,-10,-10,-10,-10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-03-16,-10,-10,-10,-10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-03-23,-5,-5,-5,-5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-03-30,0,0,0,0
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-04-06,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-04-13,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-04-20,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-04-27,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-05-04,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-05-11,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-05-18,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-05-25,0,0,0,0
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-06-01,0,0,0,0
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-06-08,0,0,0,0
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-06-15,0,0,0,0
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-06-22,-5,-5,-5,-5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-06-29,-7,-7,-7,-7
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-07-06,-10,-10,-10,-10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-07-13,-10,-10,-10,-10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-07-20,-15,-15,-15,-15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-07-27,-15,-15,-15,-15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-08-03,-5,-5,-5,-5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-08-10,0,0,0,0
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-08-17,0,0,0,0
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-08-24,18,18,18,18
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-08-31,28,28,28,28
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-09-07,28,28,28,28
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-09-14,38,38,38,38
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-09-21,43,43,43,43
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-09-28,43,43,43,43
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-10-05,43,43,43,43
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-10-12,38,38,38,38
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-10-19,40,40,40,40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-10-26,38,38,38,38
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-11-02,35,35,35,35
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-11-09,32,32,32,32
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-11-16,27,27,27,27
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-11-23,25,25,25,25
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-11-30,23,23,23,23
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-12-07,16,16,16,16
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-12-14,12,12,12,12
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2023-12-21,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-01-04,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-01-11,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-01-18,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-01-25,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-02-01,4,4,4,4
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-02-08,4,4,4,4
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-02-15,4,4,4,4
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-02-22,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-02-29,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-03-07,2,2,2,2
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-03-14,5,5,5,5
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-03-21,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-03-28,2,2,2,2
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-04-04,6,6,6,6
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-04-11,10,10,10,10
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-04-18,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-04-25,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-05-02,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-05-09,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-05-16,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-05-23,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-05-30,12,12,12,12
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-06-06,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-06-13,15,15,15,15
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-06-20,20,20,20,20
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-06-27,22,22,22,22
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-07-04,25,25,25,25
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-07-11,28,28,28,28
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-07-18,30,30,30,30
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-07-25,37,37,37,37
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-08-01,37,37,37,37
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-08-08,40,40,40,40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-08-15,40,40,40,40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-08-22,42,42,42,42
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-08-29,40,40,40,40
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-09-05,44,44,44,44
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-09-12,44,44,44,44
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-09-19,42,42,42,42
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-09-26,42,42,42,42
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-10-03,42,42,42,42
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-10-10,45,45,45,45
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-10-17,48,48,48,48
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-10-24,48,48,48,48
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-10-31,48,48,48,48
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-11-07,48,48,48,48
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-11-14,48,48,48,48
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-11-21,48,48,48,48
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-11-28,45,45,45,45
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-12-05,45,45,45,45
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-12-12,44,44,44,44
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2024-12-19,44,44,44,44
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-01-03,44,44,44,44
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-01-09,44,44,44,44
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-01-16,45,45,45,45
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-01-23,43,43,43,43
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-01-30,43,43,43,43
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-02-06,43,43,43,43
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-02-13,43,43,43,43
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-02-20,43,43,43,43
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-02-27,45,45,45,45
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-03-06,45,45,45,45
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-03-13,50,50,50,50
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-03-20,50,50,50,50
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-03-27,55,55,55,55
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-04-03,55,55,55,55
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-04-10,60,60,60,60
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-04-17,65,65,65,65
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-04-24,65,65,65,65
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-05-01,65,65,65,65
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-05-08,65,65,65,65
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-05-15,65,65,65,65
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-05-22,67,67,67,67
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-05-29,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-06-05,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-06-12,75,75,75,75
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-06-19,75,75,75,75
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-06-26,80,80,80,80
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-07-03,80,80,80,80
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-07-10,80,80,80,80
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-07-17,80,80,80,80
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-07-24,80,80,80,80
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-07-31,80,80,80,80
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-08-07,80,80,80,80
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-08-14,80,80,80,80
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-08-21,75,75,75,75
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-08-28,75,75,75,75
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-09-04,74,74,74,74
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-09-11,70,70,70,70
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-09-18,63,63,63,63
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-09-25,61,61,61,61
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-10-02,61,61,61,61
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-10-09,61,61,61,61
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-10-16,73,73,73,73
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-10-23,78,78,78,78
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-10-30,83,83,83,83
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-11-06,108,108,108,108
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-11-13,108,108,108,108
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-11-20,108,108,108,108
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-11-27,108,108,108,108
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-12-04,108,108,108,108
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-12-11,108,108,108,108
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2025-12-18,108,108,108,108
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2026-01-02,108,108,108,108
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2026-01-08,108,108,108,108
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2026-01-15,108,108,108,108
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2026-01-22,115,115,115,115
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2026-01-29,125,125,125,125
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2026-02-05,130,130,130,130
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2026-02-12,130,130,130,130
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2026-02-19,135,135,135,135
|
||||||
|
Sulphuric acid fob South Korea/Japan spot,2026-02-26,135,135,135,135
|
||||||
|
@@ -1,77 +1,77 @@
|
|||||||
source_id,source_line_id,number,reference,our_reference,party_name,currency_code,purchase_date,payment_term,warehouse_code,weight_basis,tol_min_pct,tol_max_pct,tol_min_qty,tol_max_qty,from_location_name,to_location_name,incoterm_name,invoice_method,description,comment,line_type,line_product_code,origin,line_quantity,line_unit_code,line_price,line_description,line_from_del,line_to_del,pricing_trigger,pricing_estimated_date,trader,operator,concentration,book,strategy,period_at,demurrage,laytime_hours,nor_extra_hours,pumping_rate,use_only_min_max,drop_remaining_quantity
|
source_id,source_line_id,number,reference,our_reference,party_name,currency_code,purchase_date,payment_term,warehouse_code,weight_basis,tol_min_pct,tol_max_pct,tol_min_qty,tol_max_qty,from_location_name,to_location_name,incoterm_name,invoice_method,description,comment,line_type,line_product_code,origin,line_quantity,line_unit_code,line_price,line_description,line_from_del,line_to_del,pricing_trigger,pricing_estimated_date,trader,operator,concentration,book,strategy,period_at,demurrage,laytime_hours,nor_extra_hours,pumping_rate,use_only_min_max,drop_remaining_quantity,,,,,,,,
|
||||||
C00E4A1E-4743-4C73-8F92-FEA123D2DCCE,C00E4A1E-4743-4C73-8F92-FEA123D2DCCE,1761,24972A,S24.025,SUMITOMO CORPORATION - MMC,USD,5/15/2024,NET 30,,NCSW,0,0,5000,5000,Onahama,Map Ta Phut,FOB,manual,,1761 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,5000,Mt,33.36,5000 Mt of sulphuric acid - Tel-quel,3/20/2025,4/2/2025,bldate,4/2/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,300,1,1
|
53F9DE94-7002-4A19-86EC-A8C18D7AF953,53F9DE94-7002-4A19-86EC-A8C18D7AF953,2171,25030D,P25.018,SUMITOMO CORPORATION - MMC,USD,3/3/2026,NET ,,NCSW,0,0,598.977,598.977,Naoshima,Samut Prakan,FOB,manual,,2171 / H2SO4 FY 2025 / Thailand FY25,line,JP-H2SO4,Japan,598.977,Mt,45,598.977 Mt of sulphuric acid - Tel-quel,3/13/2026,3/22/2026,bldate,3/13/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,300,1,0,,,,,,,,
|
||||||
A65BA960-E7EC-44FD-A945-8554C8D9B89B,A65BA960-E7EC-44FD-A945-8554C8D9B89B,1849,24976,P25.001,ATLANTIC COPPER ,USD,11/1/2024,NET ,,NCSW,5,5,18050,19950,Huelva,Tampa,FOB,manual,,1849 / H2SO4 FY 2025 / Default,line,H2SO4-Spain,Spain,19000,Mt,95,19000 Mt of sulphuric acid - Tel-quel,4/15/2025,4/21/2025,bldate,4/15/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,350,0,1
|
E47C4BB2-FFB0-4B96-B450-38C00AF89AB1,E47C4BB2-FFB0-4B96-B450-38C00AF89AB1,2175,25030E,P25.018,SUMITOMO CORPORATION - MMC,USD,3/11/2026,NET ,,NCSW,0,0,401.023,401.023,Naoshima,Map Ta Phut,FOB,manual,,2175 / H2SO4 FY 2025 / Thailand FY25,line,JP-H2SO4,Japan,401.023,Mt,132.5,401.023 Mt of sulphuric acid - Tel-quel,3/13/2026,3/22/2026,bldate,3/13/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,300,1,0,,,,,,,,
|
||||||
D890D3AF-EB6C-4B06-9F20-E8C92D2514D1,D890D3AF-EB6C-4B06-9F20-E8C92D2514D1,1866,24977,P25.004/1 & P25.012,NEXA RESOURCES CAJAMARQUILLA S.A.,USD,12/2/2024,NET 30,,NCSW,5.08,5.08,14000,15500,Callao,Mejillones,CIF,manual,,1866 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Peru,Peru,14750,Mt,148.17,14750 Mt of sulphuric acid - Tel-quel,4/18/2025,4/28/2025,bldate,4/18/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,400,1,1
|
E3B8720A-2576-4249-B3D0-CF8D197DDC64,E3B8720A-2576-4249-B3D0-CF8D197DDC64,2177,25030DF,P25.018,SUMITOMO CORPORATION - MMC,USD,3/12/2026,NET 7,,NCSW,0,0,800,800,Naoshima,Samut Prakan,FOB,manual,,2177 / H2SO4 FY 2025 / Thailand FY25,line,JP-H2SO4,Japan,800,Mt,45,800 Mt of sulphuric acid - Tel-quel,3/13/2026,3/22/2026,bldate,3/13/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,300,1,0,,,,,,,,
|
||||||
0ED2A6A8-16DD-4CD5-8114-EEE96F711225,0ED2A6A8-16DD-4CD5-8114-EEE96F711225,1867,24991,P25.004/2,NEXA RESOURCES CAJAMARQUILLA S.A.,USD,12/2/2024,NET 30,,NCSW,5.08,5.08,14000,15500,Callao,Mejillones,CIF,manual,,1867 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Peru,Peru,14750,Mt,155,14750 Mt of sulphuric acid - Tel-quel,7/1/2025,7/10/2025,bldate,7/1/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,400,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
AA9BF6DB-3C96-491D-B0E8-3C22C3FE13BB,AA9BF6DB-3C96-491D-B0E8-3C22C3FE13BB,1868,25000,P25.004/3,NEXA RESOURCES CAJAMARQUILLA S.A.,USD,12/2/2024,NET 15,,NCSW,5.08,5.08,14000,15500,Callao,Mejillones,CIF,manual,,1868 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Peru,Peru,14750,Mt,155,14750 Mt of sulphuric acid - Tel-quel,8/20/2025,8/30/2025,bldate,8/20/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,400,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
7F86EA2E-2409-4A59-A09E-0B3B0B3C0FFE,7F86EA2E-2409-4A59-A09E-0B3B0B3C0FFE,1869,25016,P25.004/4,NEXA RESOURCES CAJAMARQUILLA S.A.,USD,12/2/2024,NET 30,,NCSW,5.08,5.08,14000,15500,Callao,Mejillones,CIP,manual,,1869 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Peru,Peru,14750,Mt,155,14750 Mt of sulphuric acid - Tel-quel,12/3/2025,12/13/2025,bldate,12/3/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,400,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
3B181AD5-AEF1-4DD1-B3BF-835DCAA3B460,3B181AD5-AEF1-4DD1-B3BF-835DCAA3B460,1876,24971AB,P25.005 - 120kt,JINCHUAN,USD,12/5/2024,NET ,,NCSW,10,10,27000,33000,Fangcheng,Mejillones,FOB,manual,,1876 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,30000,Mt,40,30000 Mt of sulphuric acid - Tel-quel,4/13/2025,5/2/2025,bldate,4/13/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,9,350,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
87D65A8B-E366-4F61-A684-F16A9E380D6D,87D65A8B-E366-4F61-A684-F16A9E380D6D,1877,24986ABC,P25.005 - 120kt,JINCHUAN,USD,12/5/2024,LC 30 DAYS,,NCSW,10,10,27000,33000,Fangcheng,Mejillones,FOB,manual,,1877 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,30000,Mt,40,30000 Mt of sulphuric acid - Tel-quel,7/5/2025,7/16/2025,bldate,7/5/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,9,350,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
F1B16A79-23DE-4BC3-AA05-98FF85120CE2,F1B16A79-23DE-4BC3-AA05-98FF85120CE2,1878,25020ABC,P25.005 - 120kt,JINCHUAN,USD,12/5/2024,NET ,,NCSW,0,0,27000,27000,Fangcheng,Mejillones,FOB,manual,,1878 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,27000,Mt,40,27000 Mt of sulphuric acid - Tel-quel,12/21/2025,1/4/2026,bldate,1/5/2026,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,9,350,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
0079657A-2247-4D04-98F5-B111191D935A,0079657A-2247-4D04-98F5-B111191D935A,1881,24970,P25.006,SUMITOMO CORPORATION - PPC,USD,12/5/2024,NET 7,,NCSW,10,10,18000,22000,Saganoseki,Stockton,FOB,manual,,1881 / H2SO4 FY 2025 / Default,line,H2SO4-Japan,Japan,20000,Mt,37,20000 Mt of sulphuric acid - Tel-quel,4/1/2025,4/15/2025,bldate,4/1/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,300,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
FCB43E88-A643-422B-95B6-B68CE61C4015,FCB43E88-A643-422B-95B6-B68CE61C4015,1883,24979,P25.006,SUMITOMO CORPORATION - PPC,USD,12/5/2024,NET 7,,NCSW,10,10,18000,22000,Saganoseki,Stockton,FOB,manual,,1883 / H2SO4 FY 2025 / Default,line,H2SO4-Japan,Japan,20000,Mt,37,20000 Mt of sulphuric acid - Tel-quel,5/18/2025,5/31/2025,bldate,5/18/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,300,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
E5E96218-48BA-46E5-99C8-9E4086AF12A5,E5E96218-48BA-46E5-99C8-9E4086AF12A5,1885,24985,P25.006,SUMITOMO CORPORATION - PPC,USD,12/5/2024,NET 7,,NCSW,10,10,18000,22000,Saganoseki,Stockton,FOB,manual,,1885 / H2SO4 FY 2025 / Default,line,H2SO4-Japan,Japan,20000,Mt,37,20000 Mt of sulphuric acid - Tel-quel,6/15/2025,6/30/2025,bldate,6/17/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,300,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
AA912607-7B83-4DAC-A4EE-E9F24F55B58E,AA912607-7B83-4DAC-A4EE-E9F24F55B58E,1887,24996,P25.006,SUMITOMO CORPORATION - PPC,USD,12/5/2024,NET 7,,NCSW,10,10,18000,22000,Hibi,Stockton,FOB,manual,,1887 / H2SO4 FY 2025 / Default,line,H2SO4-Japan,Japan,20000,Mt,34,20000 Mt of sulphuric acid - Tel-quel,8/15/2025,8/29/2025,bldate,8/15/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,300,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
EC24CFB1-7260-4963-A452-F9B4FA60CC0C,EC24CFB1-7260-4963-A452-F9B4FA60CC0C,1889,24989,P25.006,SUMITOMO CORPORATION - PPC,USD,12/5/2024,NET 30,,NCSW,10,10,18000,22000,Hibi,Stockton,FOB,manual,,1889 / H2SO4 FY 2025 / Default,line,H2SO4-Japan,Japan,20000,Mt,34,20000 Mt of sulphuric acid - Tel-quel,7/12/2025,7/25/2025,bldate,7/12/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,300,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
E7B7D5E1-72E1-490B-85BE-13BC3849ECC2,E7B7D5E1-72E1-490B-85BE-13BC3849ECC2,1891,24999,P25.006,SUMITOMO CORPORATION - PPC,USD,12/5/2024,NET 7,,NCSW,10,10,18000,22000,Hibi,Stockton,FOB,manual,,1891 / H2SO4 FY 2025 / Default,line,H2SO4-Japan,Japan,20000,Mt,34,20000 Mt of sulphuric acid - Tel-quel,9/7/2025,9/22/2025,bldate,9/7/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,300,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
A547D4C5-F163-4B27-9A88-F66175AEF3E6,A547D4C5-F163-4B27-9A88-F66175AEF3E6,1893,25003,P25.006,SUMITOMO CORPORATION - PPC,USD,12/5/2024,NET 7,,NCSW,10,10,18000,22000,Saganoseki,Stockton,FOB,manual,,1893 / H2SO4 FY 2025 / Default,line,H2SO4-Japan,Japan,20000,Mt,72,20000 Mt of sulphuric acid - Tel-quel,10/1/2025,10/15/2025,bldate,10/1/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,300,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
14292C24-948C-4E7A-8E9C-85F9A0890877,14292C24-948C-4E7A-8E9C-85F9A0890877,1895,25008,P25.006,SUMITOMO CORPORATION - PPC,USD,12/5/2024,NET ,,NCSW,10,10,18000,22000,Hibi,Stockton,FOB,manual,,1895 / H2SO4 FY 2025 / Default,line,H2SO4-Japan,Japan,20000,Mt,64,20000 Mt of sulphuric acid - Tel-quel,11/1/2025,11/30/2025,bldate,11/1/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,300,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
694E3179-4DC2-4C9B-B3D3-B436BA304F28,694E3179-4DC2-4C9B-B3D3-B436BA304F28,1904,24990AB,P25.009 - 60kt,JINCHUAN,USD,12/16/2024,NET ,,NCSW,10,10,27000,33000,Fangcheng,Mejillones,FOB,manual,,1904 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,30000,Mt,35,30000 Mt of sulphuric acid - Tel-quel,9/10/2025,9/30/2025,bldate,9/10/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,9,350,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
EA973053-2D21-4D6C-915D-0212F9C92E94,EA973053-2D21-4D6C-915D-0212F9C92E94,1912,24975,P25.007 - 100kt,"JINLONG COPPER CO., LTD",USD,12/17/2024,NET ,,NCSW,10,10,9000,11000,Rugao,Isabel,FOB,manual,,1912 / H2SO4 FY 2025 / Default,line,H2SO4-China,China,10000,Mt,65.63,10000 Mt of sulphuric acid - Tel-quel,4/1/2025,4/15/2025,bldate,4/7/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,350,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
24306B99-A9C3-4E9D-9961-2E2B98C515AB,24306B99-A9C3-4E9D-9961-2E2B98C515AB,1913,24987,P25.007 - 100kt,"JINLONG COPPER CO., LTD",USD,12/17/2024,NET ,,NCSW,0,10,10000,11000,YIZHENG,Gladstone,FOB,manual,,1913 / H2SO4 FY 2025 / Default,line,H2SO4-China,China,10000,Mt,73.5,10000 Mt of sulphuric acid - Tel-quel,6/8/2025,6/18/2025,bldate,6/8/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,350,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
446ABDCD-C09A-4911-88D3-4CD8BDECBBF9,446ABDCD-C09A-4911-88D3-4CD8BDECBBF9,1914,24992,P25.007 - 100kt,"JINLONG COPPER CO., LTD",USD,12/17/2024,NET 30,,NCSW,10,10,9000,11000,Rugao,Tuticorin,FOB,manual,,1914 / H2SO4 FY 2025 / Default,line,H2SO4-China,China,10000,Mt,86.5,10000 Mt of sulphuric acid - Tel-quel,7/18/2025,7/30/2025,bldate,7/18/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,350,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
38B61B69-789C-4D9A-8A37-1B475BE69C50,38B61B69-789C-4D9A-8A37-1B475BE69C50,1915,24992,P25.007 - 100kt,"JINLONG COPPER CO., LTD",USD,12/17/2024,LC 30 DAYS,,NCSW,10,10,9000,11000,Rugao,Tuticorin,FOB,manual,,1915 / H2SO4 FY 2025 / Default,line,H2SO4-China,China,10000,Mt,91.19,10000 Mt of sulphuric acid - Tel-quel,7/18/2025,7/30/2025,bldate,7/18/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,350,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
169FEC9E-34DD-488E-9323-7EBE720A641F,169FEC9E-34DD-488E-9323-7EBE720A641F,1916,25006,P25.007 - 100kt,"JINLONG COPPER CO., LTD",USD,12/17/2024,NET ,,NCSW,5,5,9500,10500,Rugao,Isabel,FOB,manual,,1916 / H2SO4 FY 2025 / Default,line,H2SO4-China,China,10000,Mt,91.81,10000 Mt of sulphuric acid - Tel-quel,10/1/2025,10/15/2025,bldate,10/1/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,350,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
F14935F1-2D50-4167-9823-2DA248C23D7C,F14935F1-2D50-4167-9823-2DA248C23D7C,1917,25022A,P25.007 - 100kt,"JINLONG COPPER CO., LTD",USD,12/17/2024,NET ,,NCSW,22.58,22.58,6000,9500,YIZHENG,Visakhapatnam,FOB,manual,,1917 / H2SO4 FY 2025 / Default,line,H2SO4-China,China,7750,Mt,77.31,7750 Mt of sulphuric acid - Tel-quel,12/29/2025,1/5/2026,bldate,12/29/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,350,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
2A9D4883-8822-467D-8C1E-30ECC64C7000,2A9D4883-8822-467D-8C1E-30ECC64C7000,1919,24980ABC,P25.008,TONGLING NONFERROUS METALS GROUP CO. LTD,USD,12/17/2024,NET ,,NCSW,10,10,27000,33000,YIZHENG,Mejillones,FOB,manual,,1919 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,30000,Mt,73.63,30000 Mt of sulphuric acid - Tel-quel,5/30/2025,6/15/2025,bldate,6/2/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
A7285649-0E96-4640-A23B-1876E403F95E,A7285649-0E96-4640-A23B-1876E403F95E,1920,24994,P25.008,TONGLING NONFERROUS METALS GROUP CO. LTD,USD,12/17/2024,NET ,,NCSW,10,10,18000,22000,YIZHENG,Tuticorin,FOB,manual,,1920 / H2SO4 FY 2025 / Default,line,H2SO4-China,China,20000,Mt,92.94,20000 Mt of sulphuric acid - Tel-quel,8/16/2025,8/28/2025,bldate,8/16/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,350,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
66B2E095-336E-416C-AA63-55BDAAFAEE2C,66B2E095-336E-416C-AA63-55BDAAFAEE2C,1921,25001ABCD,P25.008,TONGLING NONFERROUS METALS GROUP CO. LTD,USD,12/17/2024,NET ,,NCSW,10,10,27000,33000,Rugao,Mejillones,FOB,manual,,1921 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,30000,Mt,73.125,30000 Mt of sulphuric acid - Tel-quel,10/1/2025,10/20/2025,bldate,10/1/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
ADB3789C-0844-46D8-B24C-B92A5DCEF5D0,ADB3789C-0844-46D8-B24C-B92A5DCEF5D0,1925,24988,P25.010,BOLIDEN HARJAVALTA OY,USD,12/20/2024,NET 30,,NCSW,5.26,5.26,18000,20000,Pori,,FOB,manual,,1925 / H2SO4 FY 2025 / Default,line,H2SO4-Finland,Finland,19000,Mt,84.57,19000 Mt of sulphuric acid - 100%,6/25/2025,7/4/2025,bldate,6/25/2025,Jeremie Collot, ,100,H2SO4 FY 2025,Default,Laycan,,0,6,550,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
C7B91036-E67E-49FA-AD5B-BBC5DA64E89F,C7B91036-E67E-49FA-AD5B-BBC5DA64E89F,1926,24997AB,P25.010,BOLIDEN HARJAVALTA OY,USD,12/20/2024,NET 30,,NCSW,5.26,5.26,18000,20000,Ronnskar,Beaumont,FOB,manual,,1926 / H2SO4 FY 2025 / Default,line,H2SO4-Finland,Finland,19000,Mt,88.91,19000 Mt of sulphuric acid - Tel-quel,8/22/2025,9/4/2025,bldate,9/3/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,550,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
8C22A21C-C3D8-4C09-9440-274E0546196D,8C22A21C-C3D8-4C09-9440-274E0546196D,1928,25011ABCDE,P25.010,BOLIDEN HARJAVALTA OY,USD,12/20/2024,NET 30,,NCSW,5.26,5.26,18000,20000,Pori,Mejillones,FOB,manual,,1928 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Finland,Finland,19000,Mt,63.49,19000 Mt of sulphuric acid - Tel-quel,11/16/2025,11/25/2025,bldate,11/16/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,550,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
23734B0E-5AC0-4364-8CBA-58505E3B33A1,23734B0E-5AC0-4364-8CBA-58505E3B33A1,1929,25005,P25.010,BOLIDEN HARJAVALTA OY,USD,12/20/2024,NET ,,NCSW,3.9,3.9,18500,20000,Ronnskar,Beaumont,FOB,manual,,1929 / H2SO4 FY 2025 / Default,line,H2SO4-Finland,Finland,19250,Mt,74.56,19250 Mt of sulphuric acid - Tel-quel,10/11/2025,10/20/2025,bldate,10/11/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,550,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
EB9CBF03-3B8E-4453-B6DB-1A234C1C8D4E,EB9CBF03-3B8E-4453-B6DB-1A234C1C8D4E,1933,24984,,SUMITOMO CORPORATION - PPC,USD,1/6/2025,NET 7,,NCSW,10,10,18000,22000,Saganoseki,Tuticorin,FOB,manual,,1933 / H2SO4 FY 2025 / Default,line,H2SO4-Japan,Japan,20000,Mt,42,20000 Mt of sulphuric acid - Tel-quel,6/9/2025,6/19/2025,bldate,6/12/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,300,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
E139786E-55C2-46AF-B4FA-0FB613FD14CD,E139786E-55C2-46AF-B4FA-0FB613FD14CD,1937,24983,P25.008,TONGLING NONFERROUS METALS GROUP CO. LTD,USD,1/10/2025,NET ,,NCSW,3.3,3.3,11000,11750,YIZHENG,,FOB,manual,,1937 / H2SO4 FY 2025 / Default,line,H2SO4-China,China,11375,Mt,72.19,11375 Mt of sulphuric acid - Tel-quel,5/15/2025,5/25/2025,bldate,5/15/2025,Stephane Monnard,Oliver Gysler,0,H2SO4 FY 2025,Default,Laycan,,0,6,300,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
C5047512-8D3A-4D0C-9187-51F361E8031F,C5047512-8D3A-4D0C-9187-51F361E8031F,1944,24974AB,P25.013,"TRICON ENERGY, LTD",USD,1/31/2025,NET 30,,NCSW,10.71,10.71,12500,15500,Ilo,Mejillones,CFR,manual,,1944 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Peru,Peru,14000,Mt,145.75,14000 Mt of sulphuric acid - Tel-quel,5/5/2025,5/11/2025,bldate,5/5/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
A78EF4D1-3579-4F0E-ABF6-484550F4361F,A78EF4D1-3579-4F0E-ABF6-484550F4361F,1949,24972B,S24.025,SUMITOMO CORPORATION - MMC,USD,2/26/2025,NET ,,NCSW,0,0,2700,2700,Onahama,Samut Prakan,FOB,manual,,1949 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,2700,Mt,33.36,2700 Mt of sulphuric acid - Tel-quel,3/20/2025,4/2/2025,bldate,4/2/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,300,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
730B0B84-3980-4A56-B259-BC24C3BE0766,730B0B84-3980-4A56-B259-BC24C3BE0766,1956,25002,P25.009 - 60kt,JINCHUAN,USD,3/19/2025,NET ,,NCSW,10,10,27000,33000,Fangcheng,Tuticorin,FOB,manual,,1956 / H2SO4 FY 2025 / Default,line,H2SO4-China,China,30000,Mt,35,30000 Mt of sulphuric acid - Tel-quel,10/10/2025,10/30/2025,bldate,10/26/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,9,350,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
4B20B434-6B9D-4A57-BFC2-2FD4EBB71919,4B20B434-6B9D-4A57-BFC2-2FD4EBB71919,1957,24981,P25.014,HEXAGON GROUP AG,USD,3/21/2025,NET ,,NCSW,22.33,22.33,10000,15750,Rugao,Mejillones,CFR,manual,,1957 / H2SO4 FY 2025 / Chile FY25,line,H2SO4,,12875,Mt,156,12875 Mt of sulphuric acid - Tel-quel,4/28/2025,5/7/2025,bldate,5/1/2025,Jeremie Collot,Gregory Gondeau,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
1B11F28C-7AC5-4C89-8444-8E38D04A07C6,1B11F28C-7AC5-4C89-8444-8E38D04A07C6,1959,24978,P25.015,"TRICON ENERGY, LTD",USD,3/28/2025,NET ,,NCSW,10,10,17100,20900,Bandirma,Beaumont,CFR,manual,,1959 / H2SO4 FY 2025 / Default,line,H2SO4-Turkey,Turkey,19000,Mt,138.9,19000 Mt of sulphuric acid - Tel-quel,4/28/2025,5/8/2025,bldate,5/1/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,300,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
C7E0CFA0-05C9-441C-975F-EFABDDD93198,C7E0CFA0-05C9-441C-975F-EFABDDD93198,1962,24973B,P25.004/1,NEXA RESOURCES CAJAMARQUILLA S.A.,USD,4/2/2025,NET ,,NCSW,0,0,20,20,Callao,Mejillones,CIF,manual,,1962 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Peru,Peru,20,Mt,155,20 Mt of sulphuric acid - Tel-quel,3/20/2025,4/4/2025,bldate,4/3/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,400,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
4412C861-90D3-43D2-B37A-A4BD54DB7416,4412C861-90D3-43D2-B37A-A4BD54DB7416,1970,24982/B,S24.025,SUMITOMO CORPORATION - MMC,USD,4/17/2025,NET 7,,NCSW,0,0,2350,2350,Onahama,Samut Prakan,FOB,manual,,1970 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,2350,Mt,45.25,2350 Mt of sulphuric acid - Tel-quel,5/9/2025,5/16/2025,bldate,5/9/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,0,300,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
23B0BD08-70B2-476F-B9E2-A272FAE41199,23B0BD08-70B2-476F-B9E2-A272FAE41199,1972,24982/A,S24.025,SUMITOMO CORPORATION - MMC,USD,4/17/2025,NET ,,NCSW,0,0,5000,5000,Onahama,Map Ta Phut,FOB,manual,,1972 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,5000,Mt,45.25,5000 Mt of sulphuric acid - Tel-quel,5/9/2025,5/16/2025,bldate,5/9/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,0,300,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
9B44DBC7-6AC0-4D07-A413-A0FB29DF03ED,9B44DBC7-6AC0-4D07-A413-A0FB29DF03ED,1986,24993,P25.017,"TRICON ENERGY, LTD",USD,6/19/2025,NET ,,NCSW,10,10,4950,6050,Onsan,Mejillones,CFR,manual,,1986 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-South Korea,South Korea,5500,Mt,169,5500 Mt of sulphuric acid - Tel-quel,8/7/2025,8/15/2025,bldate,8/7/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
85206D6D-4FDD-4D89-BF1F-301EC6CD73F9,85206D6D-4FDD-4D89-BF1F-301EC6CD73F9,1987,25009,P25.008,TONGLING NONFERROUS METALS GROUP CO. LTD,USD,6/24/2025,NET ,,NCSW,10,10,7200,8800,Rugao,LHOKSEUMAWE,FOB,manual,,1987 / H2SO4 FY 2025 / Default,line,H2SO4-China,China,8000,Mt,77.31,8000 Mt of sulphuric acid - Tel-quel,11/5/2025,11/11/2025,bldate,11/5/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,350,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
D49AC946-9F56-4B82-A3A1-2D49F66A5E31,D49AC946-9F56-4B82-A3A1-2D49F66A5E31,1989,24998,P25.018,SUMITOMO CORPORATION - MMC,USD,7/2/2025,NET 7,,NCSW,0,10,7000,7700,Onahama,LHOKSEUMAWE,FOB,manual,,1989 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,7000,Mt,64,7000 Mt of sulphuric acid - Tel-quel,8/21/2025,8/30/2025,bldate,8/21/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,300,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
1C27B4DA-D386-40EC-8A18-C8BE1E5AB673,1C27B4DA-D386-40EC-8A18-C8BE1E5AB673,1991,25007A,P25.018,SUMITOMO CORPORATION - MMC,USD,7/2/2025,NET 7,,NCSW,0,0,5000,5000,Naoshima,Map Ta Phut,FOB,manual,,1991 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,5000,Mt,51,5000 Mt of sulphuric acid - Tel-quel,10/1/2025,10/7/2025,bldate,10/1/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,300,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
6453C83B-FF65-4EFA-B123-341FA4B393B5,6453C83B-FF65-4EFA-B123-341FA4B393B5,1993,25013A,P25.018,SUMITOMO CORPORATION - MMC,USD,7/2/2025,NET ,,NCSW,0,0,5000,5000,Naoshima,Map Ta Phut,FOB,manual,,1993 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,5000,Mt,55.2,5000 Mt of sulphuric acid - Tel-quel,11/21/2025,12/3/2025,bldate,11/21/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,300,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
64D5642D-2B3B-48FB-AE6C-EF7109D0000C,64D5642D-2B3B-48FB-AE6C-EF7109D0000C,1995,25024A,P25.018,SUMITOMO CORPORATION - MMC,USD,7/2/2025,NET 7,,NCSW,0,0,5000,5000,Naoshima,Map Ta Phut,FOB,manual,,1995 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,5000,Mt,92,5000 Mt of sulphuric acid - Tel-quel,1/15/2026,1/24/2026,bldate,1/15/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,300,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
1B4518DD-0C0E-43DC-AF81-D36A71801CA8,1B4518DD-0C0E-43DC-AF81-D36A71801CA8,2001,24995,P25.020,"TRICON ENERGY, LTD",USD,7/11/2025,NET 30,,NCSW,22.22,22.22,3500,5500,Zhangjiagang,Mejillones,CFR,manual,,2001 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,4500,Mt,171,4500 Mt of sulphuric acid - Tel-quel,8/19/2025,8/26/2025,bldate,8/19/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
13C5150B-0D4A-49E4-9903-98DD1DA22336,13C5150B-0D4A-49E4-9903-98DD1DA22336,2028,25004,P25.021,SAS International LLC,USD,8/29/2025,NET ,,NCSW,5,5,6650,7350,Rugao,Mejillones,CFR,manual,,2028 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,7000,Mt,150,7000 Mt of sulphuric acid - Tel-quel,10/5/2025,10/14/2025,bldate,10/5/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
88C62D2D-19AB-49B7-8284-E8C641C26F5A,88C62D2D-19AB-49B7-8284-E8C641C26F5A,2034,25022B,P25.007 - 100kt,"JINLONG COPPER CO., LTD",USD,9/5/2025,NET ,,NCSW,10,10,8550,10450,YIZHENG,Kakinada,FOB,manual,,2034 / H2SO4 FY 2025 / Default,line,H2SO4-China,China,9500,Mt,114.29,9500 Mt of sulphuric acid - Tel-quel,12/29/2025,1/5/2026,bldate,12/29/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,350,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
CF3B673D-5B5E-4DA9-98BD-91CCDD586B34,CF3B673D-5B5E-4DA9-98BD-91CCDD586B34,2039,25015,P25.022,BOLIDEN HARJAVALTA OY,USD,9/26/2025,NET 30,,NCSW,5.26,5.26,18000,20000,Ronnskar,Beaumont,FOB,manual,,2039 / H2SO4 FY 2025 / Default,line,H2SO4-Finland,Finland,19000,Mt,65.83,19000 Mt of sulphuric acid - 100%,11/25/2025,12/4/2025,bldate,11/25/2025,Jeremie Collot, ,100,H2SO4 FY 2025,Default,Laycan,,0,6,550,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
1E2CD211-032B-4746-A9BE-0CAB195653A3,1E2CD211-032B-4746-A9BE-0CAB195653A3,2040,25010,P25.023,"TRICON ENERGY, LTD",USD,9/26/2025,NET 30,,NCSW,5,5,18050,19950,Bandirma,Tampa,CFR,manual,,2040 / H2SO4 FY 2025 / Default,line,H2SO4-Turkey,Turkey,19000,Mt,102,19000 Mt of sulphuric acid - Tel-quel,10/15/2025,10/25/2025,bldate,10/15/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,350,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
9AD52EA8-B7A3-42FE-B6EA-AF8F9624514F,9AD52EA8-B7A3-42FE-B6EA-AF8F9624514F,2043,25007B,P25.018,SUMITOMO CORPORATION - MMC,USD,9/26/2025,NET 7,,NCSW,20,20,1600,2400,Naoshima,Samut Prakan,FOB,manual,,2043 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,2000,Mt,51,2000 Mt of sulphuric acid - Tel-quel,10/1/2025,10/7/2025,bldate,10/1/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,300,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
F1121A5B-1CD9-4F69-9B1C-16AB21AE6566,F1121A5B-1CD9-4F69-9B1C-16AB21AE6566,2044,25007C,P25.018,SUMITOMO CORPORATION - MMC,USD,9/26/2025,NET 7,,NCSW,0,0,1000,1000,Naoshima,Samut Prakan,FOB,manual,,2044 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,1000,Mt,51,1000 Mt of sulphuric acid - Tel-quel,10/1/2025,10/7/2025,bldate,10/1/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,300,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
74CE5927-E06C-4EA6-81C3-FF56C560DA68,74CE5927-E06C-4EA6-81C3-FF56C560DA68,2047,25014,P25.024,HEXAGON GROUP AG,USD,9/26/2025,NET 20,,NCSW,5,5,18050,19950,Huelva,Tampa,CFR,manual,,2047 / H2SO4 FY 2025 / Default,line,H2SO4-Spain,Spain,19000,Mt,105.9,19000 Mt of sulphuric acid - Tel-quel,11/15/2025,11/20/2025,bldate,11/15/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,300,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
4CF28C0F-36D6-4C97-866B-C3132F69F3E4,4CF28C0F-36D6-4C97-866B-C3132F69F3E4,2050,25023,P26.001,ATLANTIC COPPER ,USD,10/3/2025,NET 15,,NCSW,5,5,18050,19950,Huelva,Beaumont,FOB,manual,,2050 / H2SO4 FY 2025 / Default,line,H2SO4-Spain,Spain,19000,Mt,84.5,19000 Mt of sulphuric acid - Tel-quel,1/13/2026,1/19/2026,bldate,1/13/2026,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,350,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
627F6B99-510F-41D6-B5C1-CA37024A50E0,627F6B99-510F-41D6-B5C1-CA37024A50E0,2053,25018,P25.025,SUMITOMO CORPORATION - MMC,USD,10/16/2025,NET 7,,NCSW,10,10,17100,20900,Naoshima,Stockton,FOB,manual,,2053 / H2SO4 FY 2025 / Default,line,H2SO4-Japan,Japan,19000,Mt,63,19000 Mt of sulphuric acid - Tel-quel,12/15/2025,12/24/2025,bldate,12/20/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,300,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
16F9F10A-D40D-42E9-BCA7-62DB34BFDDC3,16F9F10A-D40D-42E9-BCA7-62DB34BFDDC3,2057,25012,P25.026,HEXAGON GROUP AG,USD,10/27/2025,NET 5,,NCSW,0,0,6000,6000,Antwerpen,Mejillones,CFR,manual,,2057 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Switzerland,Switzerland,6000,Mt,159.59,6000 Mt of sulphuric acid - Tel-quel,11/10/2025,11/20/2025,bldate,11/10/2025,Jeremie Collot,Gregory Gondeau,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,0
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
DD7221A8-0922-463D-9D0E-BA89E41882B2,DD7221A8-0922-463D-9D0E-BA89E41882B2,2058,25013B,P25.018,SUMITOMO CORPORATION - MMC,USD,10/29/2025,NET 7,,NCSW,0,0,3600,3600,Naoshima,Samut Prakan,FOB,manual,,2058 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,3600,Mt,55.2,3600 Mt of sulphuric acid - Tel-quel,11/21/2025,12/3/2025,bldate,11/21/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,300,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
9616EB93-26B4-47D6-8D21-5B3A645496EE,9616EB93-26B4-47D6-8D21-5B3A645496EE,2060,25017,P25.027,SAS International LLC,USD,10/31/2025,NET ,,NCSW,5.26,5.26,9000,10000,Pori,Mejillones,CFR,manual,,2060 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Finland,Finland,9500,Mt,165,9500 Mt of sulphuric acid - Tel-quel,12/15/2025,12/31/2025,bldate,12/15/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
EB771CB4-9D09-47EA-922B-54DA025BD67C,EB771CB4-9D09-47EA-922B-54DA025BD67C,2084,25019A,P25.028,"PEIFENG TECHNOLOGY & FERTILIZERS CO., LTD.",USD,11/17/2025,NET ,,NCSW,10,10,6750,8250,Taichung,Gladstone,FOB,manual,,2084 / H2SO4 FY 2025 / Default,line,H2SO4-Taiwan,Taiwan,7500,Mt,101,7500 Mt of sulphuric acid - Tel-quel,12/24/2025,1/2/2026,bldate,12/24/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,200,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
02C94974-BCB9-4C4F-803D-CAB76EFED668,02C94974-BCB9-4C4F-803D-CAB76EFED668,2085,25026ABC,P26.003,NEXA RESOURCES CAJAMARQUILLA S.A.,USD,11/18/2025,NET 30,,NCSW,5,5,16150,17850,Callao,Mejillones,CIF,manual,,2085 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Peru,Peru,17000,Mt,171,17000 Mt of sulphuric acid - Tel-quel,1/29/2026,2/9/2026,bldate,1/29/2026,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,400,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
E0611902-DD4D-436C-8AA1-53E59FF7FA6C,E0611902-DD4D-436C-8AA1-53E59FF7FA6C,2093,25028ABC,P26.004,"Shandong Xiangying Chemical Import and Export CO.,LTD.",USD,12/1/2025,NET ,,NCSW,10,10,27000,33000,Laizhou,Mejillones,FOB,manual,,2093 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,30000,Mt,100,30000 Mt of sulphuric acid - Tel-quel,2/19/2026,2/24/2026,bldate,2/19/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,300,0,0
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
D5B7A728-7CB8-4FF7-B946-EBB9970C52F5,D5B7A728-7CB8-4FF7-B946-EBB9970C52F5,2097,25024B,P25.018,SUMITOMO CORPORATION - MMC,USD,12/3/2025,NET 7,,NCSW,0,0,1899.669,1899.669,Naoshima,Samut Prakan,FOB,manual,,2097 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,1899.67,Mt,55.2,1899.67 Mt of sulphuric acid - Tel-quel,1/15/2026,1/24/2026,bldate,1/15/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,300,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
E5CB510A-ACCB-4BC2-B657-7504DCDAC98D,E5CB510A-ACCB-4BC2-B657-7504DCDAC98D,2105,25024C,P26.011,SUMITOMO CORPORATION - MMC,USD,12/4/2025,NET 7,,NCSW,0,0,3600,3600,Naoshima,Samut Prakan,FOB,manual,,2105 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,3600,Mt,45,3600 Mt of sulphuric acid - Tel-quel,1/15/2026,1/24/2026,bldate,1/15/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,300,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
674FB2F0-A66B-4066-A80C-EAC3E4EDEBBE,674FB2F0-A66B-4066-A80C-EAC3E4EDEBBE,2107,MMC FEB LXML ,P26.011,SUMITOMO CORPORATION - MMC,USD,12/5/2025,NET ,,NCSW,0,0,5000,5000,Naoshima,Samut Prakan,FOB,manual,,2107 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,5000,Mt,0,5000 Mt of sulphuric acid - Tel-quel,3/1/2026,3/31/2026,bldate,3/1/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,300,1,0
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
DD5A61C0-ABC7-48A6-BFD9-7BD2337779A1,DD5A61C0-ABC7-48A6-BFD9-7BD2337779A1,2109,MMC MAR MWA buy price for NFC,P26.011,SUMITOMO CORPORATION - MMC,USD,12/5/2025,NET ,,NCSW,0,0,2400,2400,,Samut Prakan,FOB,manual,,2109 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,2400,Mt,0,2400 Mt of sulphuric acid - Tel-quel,3/1/2026,3/31/2026,bldate,3/1/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,300,1,0
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
C0B06F33-B62C-4935-B129-E77F9A223F9A,C0B06F33-B62C-4935-B129-E77F9A223F9A,2122,25021,P26.006,SUMITOMO CORPORATION - PPC,USD,12/10/2025,NET ,,NCSW,10,10,18000,22000,Saganoseki,Stockton,FOB,manual,,2122 / H2SO4 FY 2025 / Default,line,H2SO4-Japan,Japan,20000,Mt,71,20000 Mt of sulphuric acid - Tel-quel,1/7/2026,1/21/2026,bldate,1/7/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,300,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
0DA01A1B-5718-42A1-8C2B-8FB010DFDC53,0DA01A1B-5718-42A1-8C2B-8FB010DFDC53,2124,25025,P26.006,SUMITOMO CORPORATION - PPC,USD,12/18/2025,NET 7,,NCSW,10,10,18000,22000,Hibi,Stockton,FOB,manual,,2124 / H2SO4 FY 2025 / Default,line,H2SO4-Japan,Japan,20000,Mt,69,20000 Mt of sulphuric acid - Tel-quel,1/30/2026,2/13/2026,bldate,2/3/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,300,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
D2481F55-7696-4D2D-95BB-49F13CE400A5,D2481F55-7696-4D2D-95BB-49F13CE400A5,2126,25029,P26.006,SUMITOMO CORPORATION - PPC,USD,12/18/2025,NET 7,,NCSW,10,10,18000,22000,Saganoseki,Stockton,FOB,manual,,2126 / H2SO4 FY 2025 / Default,line,H2SO4-Japan,Japan,20000,Mt,71,20000 Mt of sulphuric acid - Tel-quel,2/26/2026,3/12/2026,bldate,2/26/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,300,0,0
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
1EE52682-41EF-4A02-BB55-B49B611110D1,1EE52682-41EF-4A02-BB55-B49B611110D1,2130,25027,P26.008,SAS International LLC,USD,12/22/2025,NET 15,,NCSW,5,5,12825,14175,Ilo,Mejillones,CFR,manual,,2130 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Peru,Peru,13500,Mt,184,13500 Mt of sulphuric acid - Tel-quel,2/15/2026,2/26/2026,bldate,2/15/2026,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,0,0
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
6EA11257-D4B3-4D82-9AE2-D759A0FC0495,6EA11257-D4B3-4D82-9AE2-D759A0FC0495,2131,MMC - Feb shipment ,P25.018,SUMITOMO CORPORATION - MMC,USD,12/29/2025,NET 7,,NCSW,0,0,2100,2100,Naoshima,Map Ta Phut,FOB,manual,,2131 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,2100,Mt,0,2100 Mt of sulphuric acid - Tel-quel,3/1/2026,3/31/2026,bldate,3/1/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,300,1,0
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
9789E145-8EEB-4E86-9805-64B158464B49,9789E145-8EEB-4E86-9805-64B158464B49,2151,25020E,P26.009 - 6kt,JINCHUAN,USD,1/5/2026,NET ,,NCSW,33.36,33.36,2996.46,5996.46,Fangcheng,Mejillones,FOB,manual,,2151 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,4496.46,Mt,160,4496.46 Mt of sulphuric acid - Tel-quel,12/21/2025,1/4/2026,bldate,1/5/2026,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,9,350,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
79E29B5D-57B9-4723-977A-771D581994CA,79E29B5D-57B9-4723-977A-771D581994CA,2153,25022C,P25.007 - 100kt,"JINLONG COPPER CO., LTD",USD,1/5/2026,NET ,,NCSW,4.76,4.76,3500,3849.787,YIZHENG,Kakinada,FOB,manual,,2153 / H2SO4 FY 2025 / Default,line,H2SO4-China,China,3674.89,Mt,77.31,3674.89 Mt of sulphuric acid - Tel-quel,12/29/2025,1/5/2026,bldate,12/29/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,350,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
EE1092B5-A611-4C21-BE22-FB08A91E9976,EE1092B5-A611-4C21-BE22-FB08A91E9976,2155,25019B,P25.028,"PEIFENG TECHNOLOGY & FERTILIZERS CO., LTD.",USD,1/6/2026,NET 5,,NCSW,10,10,2250,2750,Taichung,Gladstone,FOB,manual,,2155 / H2SO4 FY 2025 / Default,line,H2SO4-Taiwan,Taiwan,2500,Mt,101,2500 Mt of sulphuric acid - Tel-quel,12/24/2025,1/2/2026,bldate,12/24/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,200,0,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
9B3D44F0-1322-471E-ADBA-D74C134F9842,9B3D44F0-1322-471E-ADBA-D74C134F9842,2157,25020D,P26.009 - 6kt,JINCHUAN,USD,1/7/2026,NET ,,NCSW,0,0,3000,3000,Fangcheng,Mejillones,FOB,manual,,2157 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,3000,Mt,160,3000 Mt of sulphuric acid - Tel-quel,12/21/2025,1/4/2026,bldate,1/5/2026,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,9,350,1,1
|
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||||
|
|||||||
|
24
Reference Data/python_project/loaders/Purchase_Fees 2.csv
Normal file
24
Reference Data/python_project/loaders/Purchase_Fees 2.csv
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
contract_number,contract_ref,line_sequence,product,supplier,currency,p_r,mode,price,unit
|
||||||
|
1926,24997AB,1,Maritime Freight,ODFJELL TANKERS AS,USD,PAY,Per qt,2.25,MT
|
||||||
|
1926,24997AB,1,Inspection,INSPECTORATE (SUISSE) SA,USD,PAY,Per qt,0.65,MT
|
||||||
|
1926,24997AB,1,Finance,TBD Supplier,USD,PAY,Per qt,0.2,MT
|
||||||
|
1926,24997AB,1,Other,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
1926,24997AB,1,Maritime Freight,ODFJELL TANKERS AS,USD,PAY,Per qt,40,MT
|
||||||
|
2109,25030A,1,Address Commission,SU NAVIGATION PTE. LTD,USD,REC,Per qt,0.75,MT
|
||||||
|
2109,25030A,1,Demurrage,SU NAVIGATION PTE. LTD,USD,PAY,Per qt,3.8,MT
|
||||||
|
2109,25030A,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
2109,25030A,1,Profit sharing,SUMITOMO CORPORATION - MMC,USD,PAY,Per qt,0.5,MT
|
||||||
|
2109,25030A,1,Maritime Freight,SU NAVIGATION PTE. LTD,USD,PAY,Per qt,35,MT
|
||||||
|
2109,25030A,1,Finance,UBS SWITZERLAND AG,USD,PAY,Per qt,0.25,MT
|
||||||
|
2171,25030D,1,Demurrage,SU NAVIGATION PTE. LTD,USD,PAY,Per qt,3.8,MT
|
||||||
|
2171,25030D,1,Finance,TBD Supplier,USD,PAY,Per qt,0.25,MT
|
||||||
|
2171,25030D,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
2171,25030D,1,Profit sharing,SUMITOMO CORPORATION - MMC,USD,PAY,Per qt,0.5,MT
|
||||||
|
2171,25030D,1,Address Commission,SU NAVIGATION PTE. LTD,USD,REC,Per qt,0.75,MT
|
||||||
|
2171,25030D,1,Maritime Freight,SU NAVIGATION PTE. LTD,USD,PAY,Per qt,35,MT
|
||||||
|
2175,25030E,1,Finance,TBD Supplier,USD,PAY,Per qt,0.25,MT
|
||||||
|
2175,25030E,1,Maritime Freight,SU NAVIGATION PTE. LTD,USD,PAY,Per qt,35,MT
|
||||||
|
2175,25030E,1,Profit sharing,SUMITOMO CORPORATION - MMC,USD,PAY,Per qt,0.5,MT
|
||||||
|
2175,25030E,1,Demurrage,SU NAVIGATION PTE. LTD,USD,PAY,Per qt,3.8,MT
|
||||||
|
2175,25030E,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
2175,25030E,1,Address Commission,SU NAVIGATION PTE. LTD,USD,REC,Per qt,0.75,MT
|
||||||
|
@@ -1,6 +1,203 @@
|
|||||||
contract_number,contract_ref,line_sequence,product,supplier,currency,p_r,mode,price,unit
|
contract_number,contract_ref,line_sequence,product,supplier,currency,p_r,mode,price,unit
|
||||||
1881,24970,1,Maritime Freight,MOL CHEMICAL TANKERS PTE. LTD. OF SINGAPORE,USD,PAY,Per qt,74.5,MT
|
1904,24990AB,1,Maritime Freight,MOL CHEMICAL TANKERS PTE. LTD. OF SINGAPORE,USD,PAY,Per qt,90,MT
|
||||||
1881,24970,1,Profit sharing,SUMITOMO CORPORATION - PPC,USD,PAY,Per qt,0.5,MT
|
1904,24990AB,1,LC Fees,UBS SWITZERLAND AG,USD,PAY,Per qt,0.27,MT
|
||||||
1881,24970,1,BAF,MOL CHEMICAL TANKERS PTE. LTD. OF SINGAPORE,USD,REC,Per qt,2.43,MT
|
1904,24990AB,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
1881,24970,1,Finance,TBD Supplier,USD,PAY,Per qt,0.25,MT
|
1912,24975,1,Finance,TBD Supplier,USD,PAY,Per qt,0.1,MT
|
||||||
1881,24970,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
1913,24987,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
1913,24987,1,Maritime Freight,DORVAL SC TANKERS INC.,USD,PAY,Per qt,66,MT
|
||||||
|
1913,24987,1,Address Commission,DORVAL SC TANKERS INC.,USD,REC,Per qt,1.75,MT
|
||||||
|
1913,24987,1,Port Costs,DORVAL SC TANKERS INC.,USD,PAY,Per qt,5.01,MT
|
||||||
|
1913,24987,1,Finance,TBD Supplier,USD,PAY,Per qt,0.3,MT
|
||||||
|
1914,24992,1,LC Fees,UBS SWITZERLAND AG,USD,PAY,Per qt,0.25,MT
|
||||||
|
1914,24992,1,Maritime Freight,MOL CHEMICAL TANKERS PTE. LTD. OF SINGAPORE,USD,PAY,Per qt,44,MT
|
||||||
|
1915,24992,1,LC Fees,CREDIT SUISSE (SWITZERLAND) SA,USD,PAY,Per qt,0.27,MT
|
||||||
|
1915,24992,1,Maritime Freight,MOL CHEMICAL TANKERS PTE. LTD. OF SINGAPORE,USD,PAY,Per qt,44,MT
|
||||||
|
1916,25006,1,Maritime Freight,Xingtong Shipping (Singapore) Pte Ltd,USD,PAY,Per qt,32.75,MT
|
||||||
|
1916,25006,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
1917,25022A,1,LC Fees,UBS SWITZERLAND AG,USD,PAY,Per qt,0.45,MT
|
||||||
|
1917,25022A,1,Maritime Freight,GOLDEN STENA BAYCREST TANKERS PTE LTD,USD,PAY,Per qt,42,MT
|
||||||
|
1917,25022A,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
1919,24980ABC,1,LC Fees,CREDIT SUISSE (SWITZERLAND) SA,USD,PAY,Per qt,0.25,MT
|
||||||
|
1919,24980ABC,1,Maritime Freight,STOLT TANKERS B.V.,USD,PAY,Per qt,91.5,MT
|
||||||
|
1920,24994,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
1920,24994,1,Maritime Freight,SINOCHEM INTERNATIONAL CORP.,USD,PAY,Per qt,43.25,MT
|
||||||
|
1920,24994,1,LC Fees,UBS SWITZERLAND AG,USD,PAY,Per qt,0.25,MT
|
||||||
|
1921,25001ABCD,1,Maritime Freight,STOLT TANKERS B.V.,USD,PAY,Per qt,90,MT
|
||||||
|
1921,25001ABCD,1,LC Fees,UBS SWITZERLAND AG,USD,PAY,Per qt,0.27,MT
|
||||||
|
1925,24988,1,Inspection,INSPECTORATE (SUISSE) SA,USD,PAY,Per qt,0.65,MT
|
||||||
|
1926,24997AB,1,Maritime Freight,ODFJELL TANKERS AS,USD,PAY,Per qt,2.25,MT
|
||||||
|
1926,24997AB,1,Inspection,INSPECTORATE (SUISSE) SA,USD,PAY,Per qt,0.65,MT
|
||||||
|
1926,24997AB,1,Finance,TBD Supplier,USD,PAY,Per qt,0.2,MT
|
||||||
|
1926,24997AB,1,Other,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
1926,24997AB,1,Maritime Freight,ODFJELL TANKERS AS,USD,PAY,Per qt,40,MT
|
||||||
|
1928,25011ABCDE,1,Maritime Freight,ULTRATANK,USD,PAY,Per qt,81,MT
|
||||||
|
1928,25011ABCDE,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
1928,25011ABCDE,1,Inspection,INSPECTORATE (SUISSE) SA,USD,PAY,Per qt,0.65,MT
|
||||||
|
1929,25005,1,Inspection,INSPECTORATE (SUISSE) SA,USD,PAY,Per qt,0.65,MT
|
||||||
|
1929,25005,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
1929,25005,1,Finance,TBD Supplier,USD,PAY,Per qt,0.2,MT
|
||||||
|
1929,25005,1,Maritime Freight,KOYO KAIUN ASIA PTE. LTD,USD,PAY,Per qt,37.75,MT
|
||||||
|
1933,24984,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
1933,24984,1,Finance,TBD Supplier,USD,PAY,Per qt,0.25,MT
|
||||||
|
1933,24984,1,Profit sharing,SUMITOMO CORPORATION - PPC,USD,PAY,Per qt,0.5,MT
|
||||||
|
1933,24984,1,Maritime Freight,MOL CHEMICAL TANKERS PTE. LTD. OF SINGAPORE,USD,PAY,Per qt,42,MT
|
||||||
|
1937,24983,1,LC Fees,TBD Supplier,USD,PAY,Per qt,0.25,MT
|
||||||
|
1949,24972B,1,Finance,TBD Supplier,USD,PAY,Per qt,0.25,MT
|
||||||
|
1949,24972B,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
1949,24972B,1,Address Commission,ABO SINGAPORE PTE LTD,USD,REC,Per qt,1.15,MT
|
||||||
|
1949,24972B,1,Maritime Freight,ABO SINGAPORE PTE LTD,USD,PAY,Per qt,46.25,MT
|
||||||
|
1949,24972B,1,Maritime Freight,SUMITOMO CORPORATION TOKYO,USD,REC,Per qt,5,MT
|
||||||
|
1949,24972B,1,Profit sharing,SUMITOMO CORPORATION - MMC,USD,PAY,Per qt,0.5,MT
|
||||||
|
1956,25002,1,Maritime Freight,IINO SINGAPORE PTE. LTD,USD,PAY,Per qt,36.87,MT
|
||||||
|
1956,25002,1,LC Fees,UBS SWITZERLAND AG,USD,PAY,Per qt,0.15,MT
|
||||||
|
1962,24973B,1,Inspection,TBD Supplier,USD,PAY,Per qt,0.15,MT
|
||||||
|
1970,24982/B,1,Profit sharing,SUMITOMO CORPORATION - MMC,USD,PAY,Per qt,0.5,MT
|
||||||
|
1970,24982/B,1,Maritime Freight,SUMITOMO CORPORATION - MMC,USD,REC,Per qt,5.5,MT
|
||||||
|
1970,24982/B,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
1970,24982/B,1,Finance,TBD Supplier,USD,PAY,Per qt,0.25,MT
|
||||||
|
1970,24982/B,1,Address Commission,ASIA CHEMICAL TANKER ALLIANCE PTE LTD,USD,REC,Per qt,1.15,MT
|
||||||
|
1970,24982/B,1,Maritime Freight,ASIA CHEMICAL TANKER ALLIANCE PTE LTD,USD,PAY,Per qt,46.25,MT
|
||||||
|
1972,24982/A,1,Maritime Freight,ASIA CHEMICAL TANKER ALLIANCE PTE LTD,USD,PAY,Per qt,46.25,MT
|
||||||
|
1972,24982/A,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
1972,24982/A,1,Profit sharing,SUMITOMO CORPORATION - MMC,USD,PAY,Per qt,0.5,MT
|
||||||
|
1972,24982/A,1,Maritime Freight,SUMITOMO CORPORATION - MMC,USD,REC,Per qt,5.5,MT
|
||||||
|
1972,24982/A,1,Address Commission,ASIA CHEMICAL TANKER ALLIANCE PTE LTD,USD,REC,Per qt,1.15,MT
|
||||||
|
1972,24982/A,1,Finance,TBD Supplier,USD,PAY,Per qt,0.25,MT
|
||||||
|
1986,24993,1,Finance,TBD Supplier,USD,PAY,Per qt,0.1,MT
|
||||||
|
1987,25009,1,LC Fees,UBS SWITZERLAND AG,USD,PAY,Per qt,0.3,MT
|
||||||
|
1987,25009,1,Maritime Freight,SINOCHEM INTERNATIONAL CORP.,USD,PAY,Per qt,43.42,MT
|
||||||
|
1987,25009,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
1989,24998,1,Maritime Freight,SC SHIPPING SINGAPORE PTE LTD,USD,PAY,Per qt,50.01,MT
|
||||||
|
1989,24998,1,Finance,TBD Supplier,USD,PAY,Per qt,0.25,MT
|
||||||
|
1989,24998,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
1989,24998,1,Maritime Freight,SUMITOMO CORPORATION - MMC,USD,REC,Per qt,7,MT
|
||||||
|
1989,24998,1,Profit sharing,SUMITOMO CORPORATION - MMC,USD,PAY,Per qt,0.5,MT
|
||||||
|
1989,24998,1,Other,SUMITOMO CORPORATION THAILAND,USD,PAY,Per qt,8.5,MT
|
||||||
|
1991,25007A,1,Address Commission,"WOOJIN SHIPPING CO.,LTD",USD,REC,Per qt,0.93,MT
|
||||||
|
1991,25007A,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
1991,25007A,1,Maritime Freight,"WOOJIN SHIPPING CO.,LTD",USD,PAY,Per qt,37.5,MT
|
||||||
|
1991,25007A,1,Finance,TBD Supplier,USD,PAY,Per qt,0.25,MT
|
||||||
|
1991,25007A,1,Profit sharing,SUMITOMO CORPORATION - MMC,USD,PAY,Per qt,0.5,MT
|
||||||
|
1993,25013A,1,Address Commission,"WOOJIN SHIPPING CO.,LTD",USD,REC,Per qt,0.9,MT
|
||||||
|
1993,25013A,1,Maritime Freight,"WOOJIN SHIPPING CO.,LTD",USD,PAY,Per qt,36.5,MT
|
||||||
|
1993,25013A,1,Finance,TBD Supplier,USD,PAY,Per qt,0.25,MT
|
||||||
|
1993,25013A,1,Other,SUMITOMO CORPORATION TOKYO,USD,REC,Per qt,7.61,MT
|
||||||
|
1993,25013A,1,Profit sharing,SUMITOMO CORPORATION - MMC,USD,PAY,Per qt,0.5,MT
|
||||||
|
1993,25013A,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
1993,25013A,1,Other,SUMITOMO CORPORATION - MMC,USD,PAY,Per qt,16.28,MT
|
||||||
|
1995,25024A,1,Address Commission,ASIA CHEMICAL TANKER ALLIANCE PTE LTD,USD,REC,Per qt,0.85,MT
|
||||||
|
1995,25024A,1,Maritime Freight,ASIA CHEMICAL TANKER ALLIANCE PTE LTD,USD,PAY,Per qt,34,MT
|
||||||
|
1995,25024A,1,Profit sharing,SUMITOMO CORPORATION - MMC,USD,PAY,Per qt,0.5,MT
|
||||||
|
1995,25024A,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
1995,25024A,1,Finance,TBD Supplier,USD,PAY,Per qt,0.25,MT
|
||||||
|
2001,24995,1,Finance,TBD Supplier,USD,PAY,Per qt,0.1,MT
|
||||||
|
2028,25004,1,Finance,TBD Supplier,USD,PAY,Per qt,0.1,MT
|
||||||
|
2034,25022B,1,LC Fees,UBS SWITZERLAND AG,USD,PAY,Per qt,0.45,MT
|
||||||
|
2034,25022B,1,Maritime Freight,GOLDEN STENA BAYCREST TANKERS PTE LTD,USD,PAY,Per qt,42,MT
|
||||||
|
2034,25022B,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
2039,25015,1,Maritime Freight,WOMAR LOGISTICS PTE LTD,USD,PAY,Per qt,1.33,MT
|
||||||
|
2039,25015,1,Inspection,TBD Supplier,USD,PAY,Per qt,0.65,MT
|
||||||
|
2039,25015,1,Maritime Freight,WOMAR LOGISTICS PTE LTD,USD,PAY,Per qt,39,MT
|
||||||
|
2039,25015,1,Other,TBD Supplier,USD,PAY,Per qt,1.15,MT
|
||||||
|
2040,25010,1,Finance,TBD Supplier,USD,PAY,Per qt,0.2,MT
|
||||||
|
2043,25007B,1,Maritime Freight,"WOOJIN SHIPPING CO.,LTD",USD,PAY,Per qt,37.5,MT
|
||||||
|
2043,25007B,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
2043,25007B,1,Address Commission,"WOOJIN SHIPPING CO.,LTD",USD,REC,Per qt,0.93,MT
|
||||||
|
2043,25007B,1,Finance,TBD Supplier,USD,PAY,Per qt,0.25,MT
|
||||||
|
2043,25007B,1,Profit sharing,SUMITOMO CORPORATION - MMC,USD,PAY,Per qt,0.5,MT
|
||||||
|
2044,25007C,1,Maritime Freight,"WOOJIN SHIPPING CO.,LTD",USD,PAY,Per qt,37.5,MT
|
||||||
|
2044,25007C,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
2044,25007C,1,Address Commission,"WOOJIN SHIPPING CO.,LTD",USD,REC,Per qt,0.93,MT
|
||||||
|
2044,25007C,1,Finance,TBD Supplier,USD,PAY,Per qt,0.25,MT
|
||||||
|
2044,25007C,1,Profit sharing,SUMITOMO CORPORATION - MMC,USD,PAY,Per qt,0.5,MT
|
||||||
|
2047,25014,1,Finance,TBD Supplier,USD,PAY,Per qt,0.2,MT
|
||||||
|
2050,25023,1,Maritime Freight,MOL CHEMICAL TANKERS PTE. LTD. OF SINGAPORE,USD,PAY,Per qt,32,MT
|
||||||
|
2050,25023,1,Finance,TBD Supplier,USD,PAY,Per qt,0.15,MT
|
||||||
|
2050,25023,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
2050,25023,1,Inspection,SGS ESPANOLA DE CONTROL,USD,PAY,Per qt,0.4,MT
|
||||||
|
2053,25018,1,Profit sharing,SUMITOMO CORPORATION - MMC,USD,PAY,Per qt,0.5,MT
|
||||||
|
2053,25018,1,Maritime Freight,WOMAR LOGISTICS PTE LTD,USD,PAY,Per qt,75.11,MT
|
||||||
|
2053,25018,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
2053,25018,1,Finance,TBD Supplier,USD,PAY,Per qt,0.25,MT
|
||||||
|
2058,25013B,1,Other,SUMITOMO CORPORATION TOKYO,USD,REC,Per qt,7.61,MT
|
||||||
|
2058,25013B,1,Other,SUMITOMO CORPORATION - MMC,USD,PAY,Per qt,16.28,MT
|
||||||
|
2058,25013B,1,Maritime Freight,"WOOJIN SHIPPING CO.,LTD",USD,PAY,Per qt,36.5,MT
|
||||||
|
2058,25013B,1,Profit sharing,SUMITOMO CORPORATION - MMC,USD,PAY,Per qt,0.5,MT
|
||||||
|
2058,25013B,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
2058,25013B,1,Address Commission,"WOOJIN SHIPPING CO.,LTD",USD,REC,Per qt,0.9,MT
|
||||||
|
2058,25013B,1,Finance,TBD Supplier,USD,PAY,Per qt,0.25,MT
|
||||||
|
2060,25017,1,Finance,TBD Supplier,USD,PAY,Per qt,0.12,MT
|
||||||
|
2084,25019A,1,Address Commission,DORVAL SC TANKERS INC.,USD,REC,Per qt,1.91,MT
|
||||||
|
2084,25019A,1,Commission,SUMITOMO CORPORATION TAIWAN LTD,USD,PAY,Per qt,0.25,MT
|
||||||
|
2084,25019A,1,Maritime Freight,DORVAL SC TANKERS INC.,USD,PAY,Per qt,76.5,MT
|
||||||
|
2084,25019A,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
2085,25026ABC,1,Inspection,SAG Surveyors Alliance Group,USD,PAY,Per qt,0.1,MT
|
||||||
|
2093,25028ABC,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
2093,25028ABC,1,Commission,SUMITOMO CORPORATION (SHANGHAI) LTD,USD,PAY,Per qt,0.5,MT
|
||||||
|
2093,25028ABC,1,Demurrage,ACE TANKERS MANAGEMENT B.V.,USD,PAY,Per qt,1,MT
|
||||||
|
2093,25028ABC,1,Maritime Freight,ACE TANKERS MANAGEMENT B.V.,USD,PAY,Per qt,83,MT
|
||||||
|
2093,25028ABC,1,LC Fees,UBS SWITZERLAND AG,USD,PAY,Per qt,0.35,MT
|
||||||
|
2097,25024B,1,Address Commission,ASIA CHEMICAL TANKER ALLIANCE PTE LTD,USD,REC,Per qt,0.85,MT
|
||||||
|
2097,25024B,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
2097,25024B,1,Finance,TBD Supplier,USD,PAY,Per qt,0.25,MT
|
||||||
|
2097,25024B,1,Maritime Freight,ASIA CHEMICAL TANKER ALLIANCE PTE LTD,USD,PAY,Per qt,34,MT
|
||||||
|
2097,25024B,1,Profit sharing,SUMITOMO CORPORATION - MMC,USD,PAY,Per qt,0.5,MT
|
||||||
|
2105,25024C,1,Profit sharing,SUMITOMO CORPORATION - MMC,USD,PAY,Per qt,0.5,MT
|
||||||
|
2105,25024C,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
2105,25024C,1,Maritime Freight,ASIA CHEMICAL TANKER ALLIANCE PTE LTD,USD,PAY,Per qt,34,MT
|
||||||
|
2105,25024C,1,Finance,UBS SWITZERLAND AG,USD,PAY,Per qt,0.25,MT
|
||||||
|
2105,25024C,1,Address Commission,ASIA CHEMICAL TANKER ALLIANCE PTE LTD,USD,REC,Per qt,0.85,MT
|
||||||
|
2107,25030C,1,Finance,UBS SWITZERLAND AG,USD,PAY,Per qt,0.25,MT
|
||||||
|
2107,25030C,1,Demurrage,SU NAVIGATION PTE. LTD,USD,PAY,Per qt,4.8,MT
|
||||||
|
2107,25030C,1,Address Commission,SU NAVIGATION PTE. LTD,USD,REC,Per qt,0.75,MT
|
||||||
|
2107,25030C,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
2107,25030C,1,Maritime Freight,SU NAVIGATION PTE. LTD,USD,PAY,Per qt,36,MT
|
||||||
|
2107,25030C,1,Profit sharing,SUMITOMO CORPORATION - MMC,USD,PAY,Per qt,0.5,MT
|
||||||
|
2109,25030A,1,Address Commission,SU NAVIGATION PTE. LTD,USD,REC,Per qt,0.75,MT
|
||||||
|
2109,25030A,1,Demurrage,SU NAVIGATION PTE. LTD,USD,PAY,Per qt,4.8,MT
|
||||||
|
2109,25030A,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
2109,25030A,1,Profit sharing,SUMITOMO CORPORATION - MMC,USD,PAY,Per qt,0.5,MT
|
||||||
|
2109,25030A,1,Maritime Freight,SU NAVIGATION PTE. LTD,USD,PAY,Per qt,36,MT
|
||||||
|
2109,25030A,1,Finance,UBS SWITZERLAND AG,USD,PAY,Per qt,0.25,MT
|
||||||
|
2122,25021,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
2122,25021,1,Profit sharing,SUMITOMO CORPORATION - PPC,USD,PAY,Per qt,0.5,MT
|
||||||
|
2122,25021,1,Finance,TBD Supplier,USD,PAY,Per qt,0.25,MT
|
||||||
|
2122,25021,1,Maritime Freight,MOL CHEMICAL TANKERS PTE. LTD. OF SINGAPORE,USD,PAY,Per qt,63.22,MT
|
||||||
|
2124,25025,1,Finance,TBD Supplier,USD,PAY,Per qt,0.25,MT
|
||||||
|
2124,25025,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
2124,25025,1,Profit sharing,SUMITOMO CORPORATION - PPC,USD,PAY,Per qt,0.5,MT
|
||||||
|
2124,25025,1,Maritime Freight,MOL CHEMICAL TANKERS PTE. LTD. OF SINGAPORE,USD,PAY,Per qt,66.5,MT
|
||||||
|
2126,25029,1,Maritime Freight,MOL CHEMICAL TANKERS PTE. LTD. OF SINGAPORE,USD,PAY,Per qt,64.5,MT
|
||||||
|
2126,25029,1,Finance,TBD Supplier,USD,PAY,Per qt,0.25,MT
|
||||||
|
2126,25029,1,Profit sharing,SUMITOMO CORPORATION - PPC,USD,PAY,Per qt,0.5,MT
|
||||||
|
2126,25029,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
2130,25027,1,Finance,TBD Supplier,USD,PAY,Per qt,0.13,MT
|
||||||
|
2131,25030B,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
2131,25030B,1,Profit sharing,SUMITOMO CORPORATION - MMC,USD,PAY,Per qt,0.5,MT
|
||||||
|
2131,25030B,1,Finance,UBS SWITZERLAND AG,USD,PAY,Per qt,0.25,MT
|
||||||
|
2131,25030B,1,Demurrage,SU NAVIGATION PTE. LTD,USD,PAY,Per qt,4.8,MT
|
||||||
|
2131,25030B,1,Address Commission,SU NAVIGATION PTE. LTD,USD,REC,Per qt,0.75,MT
|
||||||
|
2131,25030B,1,Maritime Freight,SU NAVIGATION PTE. LTD,USD,PAY,Per qt,36,MT
|
||||||
|
2151,25020E,1,Maritime Freight,TBD Supplier,USD,PAY,Per qt,87,MT
|
||||||
|
2151,25020E,1,LC Fees,TBD Supplier,USD,PAY,Per qt,0.55,MT
|
||||||
|
2151,25020E,1,BAF,TBD Supplier,USD,REC,Per qt,0.61,MT
|
||||||
|
2151,25020E,1,Maritime Freight,TBD Supplier,USD,PAY,Per qt,5,MT
|
||||||
|
2151,25020E,1,P&I charterer's liability,TBD Supplier,USD,PAY,Per qt,0.06,MT
|
||||||
|
2153,25022C,1,LC Fees,UBS SWITZERLAND AG,USD,PAY,Per qt,0.45,MT
|
||||||
|
2153,25022C,1,Maritime Freight,GOLDEN STENA BAYCREST TANKERS PTE LTD,USD,PAY,Per qt,42,MT
|
||||||
|
2153,25022C,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
2155,25019B,1,Maritime Freight,DORVAL SC TANKERS INC.,USD,PAY,Per qt,76.5,MT
|
||||||
|
2155,25019B,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
2155,25019B,1,Address Commission,DORVAL SC TANKERS INC.,USD,REC,Per qt,1.91,MT
|
||||||
|
2155,25019B,1,Commission,SUMITOMO CORPORATION TAIWAN LTD,USD,PAY,Per qt,0.25,MT
|
||||||
|
2157,25020D,1,BAF,TBD Supplier,USD,REC,Per qt,0.61,MT
|
||||||
|
2157,25020D,1,Maritime Freight,TBD Supplier,USD,PAY,Per qt,87,MT
|
||||||
|
2157,25020D,1,Maritime Freight,TBD Supplier,USD,PAY,Per qt,5,MT
|
||||||
|
2157,25020D,1,P&I charterer's liability,TBD Supplier,USD,PAY,Per qt,0.06,MT
|
||||||
|
2157,25020D,1,LC Fees,TBD Supplier,USD,PAY,Per qt,0.55,MT
|
||||||
|
2171,25030D,1,Demurrage,SU NAVIGATION PTE. LTD,USD,PAY,Per qt,4.8,MT
|
||||||
|
2171,25030D,1,Finance,TBD Supplier,USD,PAY,Per qt,0.25,MT
|
||||||
|
2171,25030D,1,P&I charterer's liability,FILHET - ALLARD MARITIME,USD,PAY,Per qt,0.06,MT
|
||||||
|
2171,25030D,1,Profit sharing,SUMITOMO CORPORATION - MMC,USD,PAY,Per qt,0.5,MT
|
||||||
|
2171,25030D,1,Address Commission,SU NAVIGATION PTE. LTD,USD,REC,Per qt,0.75,MT
|
||||||
|
2171,25030D,1,Maritime Freight,SU NAVIGATION PTE. LTD,USD,PAY,Per qt,36,MT
|
||||||
|
|||||||
|
@@ -1,97 +1,4 @@
|
|||||||
source_id,source_line_id,number,reference,our_reference,party_name,currency_code,sale_date,payment_term,warehouse_code,weight_basis,tol_min_pct,tol_max_pct,tol_min_qty,tol_max_qty,from_location_name,to_location_name,incoterm_name,invoice_method,description,comment,line_type,line_product_code,origin,line_quantity,line_unit_code,line_price,line_description,line_from_del,line_to_del,pricing_trigger,pricing_estimated_date,trader,operator,concentration,book,strategy,period_at,demurrage,laytime_hours,nor_extra_hours,pumping_rate,use_only_min_max,drop_remaining_quantity
|
source_id,source_line_id,number,reference,our_reference,party_name,currency_code,sale_date,payment_term,warehouse_code,weight_basis,tol_min_pct,tol_max_pct,tol_min_qty,tol_max_qty,from_location_name,to_location_name,incoterm_name,invoice_method,description,comment,line_type,line_product_code,origin,line_quantity,line_unit_code,line_price,line_description,line_from_del,line_to_del,pricing_trigger,pricing_estimated_date,trader,operator,concentration,book,strategy,period_at,demurrage,laytime_hours,nor_extra_hours,pumping_rate,use_only_min_max,drop_remaining_quantity
|
||||||
66D5F597-97BD-4EFD-A2A9-038BF6C73226,66D5F597-97BD-4EFD-A2A9-038BF6C73226,2059,25013B,S25.022,SUMITOMO CORPORATION THAILAND LTD.,USD,10/29/2025,NET 30,,NCSW,0,0,3600,3600,Naoshima,Samut Prakan,CFR,manual,,2059 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,3600,Mt,92.63,3600 Mt of sulphuric acid - Tel-quel,11/21/2025,12/3/2025,bldate,11/21/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,250,1,1
|
d5499f8c-8623-4c97-ade2-186e34dd1f31,d5499f8c-8623-4c97-ade2-186e34dd1f31,2172,25030D,S25.022,SUMITOMO CORPORATION THAILAND LTD.,USD,3/3/2026,NET ,,NCSW,0,0,598.977,598.977,Naoshima,Samut Prakan,CFR,manual,,2172 / H2SO4 FY 2025 / Thailand FY25,line,JP-H2SO4,Japan,598.98,Mt,130.32,598.977 Mt of sulphuric acid - Tel-quel,3/13/2026,3/22/2026,bldate,3/13/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,250,TRUE,FALSE
|
||||||
54D2F300-3171-44F0-AED3-06CE02EB52CD,54D2F300-3171-44F0-AED3-06CE02EB52CD,1979,24980C,S25.009,INTERACID TRADING (CHILE) S.A.,USD,5/15/2025,NET ,,NCSW,0.15,0.15,6800,6820.844,YIZHENG,Mejillones,CFR,manual,,1979 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,6810.42,Mt,151,6810.42 Mt of sulphuric acid - Tel-quel,5/30/2025,6/15/2025,bldate,6/2/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
40ccc41f-157d-40a2-9a76-60aa220e33e1,40ccc41f-157d-40a2-9a76-60aa220e33e1,2176,25030E,S25.022,SUMITOMO CORPORATION THAILAND LTD.,USD,3/11/2026,NET 30,,NCSW,0,0,401.023,401.023,Naoshima,Samut Prakan,CFR,manual,,2176 / H2SO4 FY 2025 / Thailand FY25,line,JP-H2SO4,Japan,401.02,Mt,130.32,401.023 Mt of sulphuric acid - Tel-quel,3/13/2026,3/22/2026,bldate,3/13/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,250,TRUE,FALSE
|
||||||
E26CDF3E-2D71-4BA7-9F44-0754E467AEE4,E26CDF3E-2D71-4BA7-9F44-0754E467AEE4,1990,24998,S25.022,PT PUPUK ISKANDAR MUDA (PIM),USD,7/2/2025,NET ,,NCSW,0,10,7000,7700,Onahama,LHOKSEUMAWE,CFR,manual,,1990 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,7000,Mt,122,7000 Mt of sulphuric acid - Tel-quel,8/21/2025,8/30/2025,bldate,8/21/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,150,0,1
|
eefcd785-af5b-4212-8b1f-a448e946c443,eefcd785-af5b-4212-8b1f-a448e946c443,2178,25030F,S25.022,SUMITOMO CORPORATION THAILAND LTD.,USD,3/12/2026,NET 30,,NCSW,0,0,800,800,Naoshima,Samut Prakan,CFR,manual,,2178 / H2SO4 FY 2025 / Thailand FY25,line,JP-H2SO4,Japan,800,Mt,125.77,800 Mt of sulphuric acid - Tel-quel,3/13/2026,3/22/2026,bldate,3/13/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,250,TRUE,FALSE
|
||||||
A81C611E-4FB4-4424-AF6F-09288C5DA260,A81C611E-4FB4-4424-AF6F-09288C5DA260,1865,24993,S25.007 - 5'400MT,INTERACID TRADING (CHILE) S.A.,USD,12/2/2024,NET ,,NCSW,3.8,3.8,5004.264,5400,Onsan,Mejillones,CFR,manual,,1865 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-South Korea,South Korea,5202.13,Mt,155.25,5202.13 Mt of sulphuric acid - Tel-quel,8/7/2025,8/15/2025,bldate,8/7/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
1337C892-B044-4D49-A407-10A48642248B,1337C892-B044-4D49-A407-10A48642248B,2029,25004,S25.009,INTERACID TRADING (CHILE) S.A.,USD,8/29/2025,NET ,,NCSW,0,0,7000,7000,,Mejillones,CFR,manual,,2029 / H2SO4 FY 2025 / Chile FY25,line,H2SO4,,7000,Mt,151,7000 Mt of sulphuric acid - Tel-quel,10/5/2025,10/14/2025,bldate,10/5/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
E8649BF7-509E-4331-B68E-11ADCD4D47BD,E8649BF7-509E-4331-B68E-11ADCD4D47BD,1857,24984,S25.002 - 2/4,WILSON INTERNATIONAL TRADING PRIVATE LTD,USD,11/18/2024,NET ,,NCSW,10,10,18000,22000,Saganoseki,Tuticorin,CFR,manual,,1857 / H2SO4 FY 2025 / Default,line,H2SO4-Japan,Japan,20000,Mt,89.5,20000 Mt of sulphuric acid - Tel-quel,6/9/2025,6/19/2025,bldate,6/12/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,250,0,1
|
|
||||||
A0212DCA-F052-41B9-8E65-12C02F7DAD93,A0212DCA-F052-41B9-8E65-12C02F7DAD93,2024,25002B,S25.030,WILSON INTERNATIONAL TRADING PRIVATE LTD,USD,8/14/2025,NET ,,NCSW,0,0,10000,10000,Fangcheng,Tuticorin,CFR,manual,,2024 / H2SO4 FY 2025 / Default,line,H2SO4-China,China,10000,Mt,109,10000 Mt of sulphuric acid - Tel-quel,10/10/2025,10/30/2025,bldate,10/26/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,250,1,1
|
|
||||||
C37652E5-6428-4FA0-A96F-15B4FD202D8C,C37652E5-6428-4FA0-A96F-15B4FD202D8C,2154,25022BC,,COROMANDEL INTERNATIONAL LTD,USD,1/5/2026,NET ,,NCSW,2.62,2.62,13000,13699.574,YIZHENG,Kakinada,CFR,manual,,2154 / H2SO4 FY 2025 / Default,line,H2SO4-China,China,13349.79,Mt,150,13349.8 Mt of sulphuric acid - Tel-quel,11/20/2025,1/5/2026,bldate,11/29/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,300,1,1
|
|
||||||
1878BFAA-DD1E-4DDE-AFD6-16A140779834,1878BFAA-DD1E-4DDE-AFD6-16A140779834,1872,24990B,S25.009,INTERACID TRADING (CHILE) S.A.,USD,12/5/2024,NET ,,NCSW,0,0,18000,18000,Fangcheng,Mejillones,CFR,manual,,1872 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,18000,Mt,151,18000 Mt of sulphuric acid - Tel-quel,9/1/2025,9/30/2025,bldate,9/1/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
6479690A-1F96-40C6-9BF5-18EF976F1A23,6479690A-1F96-40C6-9BF5-18EF976F1A23,1981,24987,,SUMITOMO AUSTRALIA,USD,5/15/2025,NET 30,,NCSW,0,10,10000,11000,YIZHENG,Gladstone,CFR,manual,,1981 / H2SO4 FY 2025 / Default,line,H2SO4-China,China,10000,Mt,156,10000 Mt of sulphuric acid - Tel-quel,6/8/2025,6/18/2025,bldate,6/8/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,350,0,1
|
|
||||||
5CF1D8F3-B422-4A75-BDAE-1906180D0686,5CF1D8F3-B422-4A75-BDAE-1906180D0686,1863,25001B,S25.006,INTERACID TRADING (CHILE) S.A.,USD,12/2/2024,NET ,,NCSW,0,0,3013.861,3013.861,Rugao,Mejillones,CFR,manual,,1863 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,3013.86,Mt,153.75,3013.86 Mt of sulphuric acid - Tel-quel,10/1/2025,10/20/2025,bldate,10/1/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
8DFF92DE-7487-464C-8AFC-19968680C1A6,8DFF92DE-7487-464C-8AFC-19968680C1A6,2035,25020B,S25.027,INTERACID TRADING (CHILE) S.A.,USD,9/5/2025,NET 30,,NCSW,0,0,1000,1000,Fangcheng,Mejillones,CFR,manual,,2035 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,1000,Mt,166.5,1000 Mt of sulphuric acid - Tel-quel,12/24/2025,1/5/2026,bldate,1/5/2026,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
98E12607-43B1-4CDE-B90D-1CE85520DC5B,98E12607-43B1-4CDE-B90D-1CE85520DC5B,2010,25019A,,SUMITOMO AUSTRALIA,USD,7/23/2025,NET ,,NCSW,10,10,6750,8250,Taichung,Gladstone,CFR,manual,,2010 / H2SO4 FY 2025 / Default,line,H2SO4,,7500,Mt,188,7500 Mt of sulphuric acid - Tel-quel,12/24/2025,1/2/2026,bldate,12/24/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,0,350,0,1
|
|
||||||
62DF7DF0-B346-4D51-B68B-1F60D3D156FF,62DF7DF0-B346-4D51-B68B-1F60D3D156FF,1860,24991,S25.003,INTERACID TRADING (CHILE) S.A.,USD,11/18/2024,NET 30,,NCSW,10,10,13500,16500,Callao,Mejillones,CFR,manual,,1860 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Peru,Peru,15000,Mt,154,15000 Mt of sulphuric acid - Tel-quel,7/1/2025,7/10/2025,bldate,7/1/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,400,0,1
|
|
||||||
7AE95778-8A2E-4C29-9A7F-20D97E96135D,7AE95778-8A2E-4C29-9A7F-20D97E96135D,1864,24986B,S25.005,INTERACID TRADING (CHILE) S.A.,USD,12/2/2024,NET 30,,NCSW,0,0,7002.904,7002.904,Fangcheng,Mejillones,CFR,manual,,1864 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,7002.9,Mt,151.5,7002.9 Mt of sulphuric acid - Tel-quel,7/5/2025,7/20/2025,bldate,7/5/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
B235588D-27C5-4BA0-BEBE-2118CE9E4066,B235588D-27C5-4BA0-BEBE-2118CE9E4066,2055,25012,S25.028,INTERACID TRADING (CHILE) S.A.,USD,10/27/2025,NET ,,NCSW,0,0,6000,6000,Antwerpen,Mejillones,CFR,manual,,2055 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Switzerland,Switzerland,6000,Mt,166.5,6000 Mt of sulphuric acid - Tel-quel,11/1/2025,11/30/2025,bldate,11/1/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,0
|
|
||||||
6E2B3633-FD54-48E1-AB85-21CA60985DB5,6E2B3633-FD54-48E1-AB85-21CA60985DB5,2022,25011E,S25.028,INTERACID TRADING (CHILE) S.A.,USD,8/13/2025,NET 30,,NCSW,0,0,3761.818,3761.818,Pori,Mejillones,CFR,manual,,2022 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Finland,Finland,3761.82,Mt,166.5,3761.82 Mt of sulphuric acid - Tel-quel,11/16/2025,11/25/2025,bldate,11/16/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
8A8829E9-FDFC-4313-A2ED-2247AE21DF9E,8A8829E9-FDFC-4313-A2ED-2247AE21DF9E,1882,24970,S25.008,"INTERACID NORTH AMERICA, INC (Stockton)",USD,12/5/2024,NET 30,,NCSW,10,10,18000,22000,Saganoseki,Stockton,CFR,manual,,1882 / H2SO4 FY 2025 / Default,line,H2SO4-Japan,Japan,20000,Mt,112.07,20000 Mt of sulphuric acid - Tel-quel,4/1/2025,4/15/2025,bldate,4/1/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,12,350,0,1
|
|
||||||
E3939A75-BA84-4372-95F6-229A1B93E0FD,E3939A75-BA84-4372-95F6-229A1B93E0FD,2036,24997B,S25.013,"INTERACID NORTH AMERICA, INC (Beaumont)",USD,9/8/2025,NET 30,,NCSW,0,0,16991.693,16991.693,Pori,Beaumont,CFR,manual,,2036 / H2SO4 FY 2025 / Default,line,H2SO4-Finland,Finland,16991.69,Mt,134.16,16991.7 Mt of sulphuric acid - Tel-quel,8/22/2025,9/4/2025,bldate,9/4/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,300,1,1
|
|
||||||
95054417-F7E7-4B2E-8C30-2326D09A2A7F,95054417-F7E7-4B2E-8C30-2326D09A2A7F,1969,24988,S25.020,"TRICON ENERGY, LTD",USD,4/16/2025,NET 30,,NCSW,5,5,18050,19950,Pori,Pori,FOB,manual,,1969 / H2SO4 FY 2025 / Default,line,H2SO4-Finland,Finland,19000,Mt,100.5,19000 Mt of sulphuric acid - Tel-quel,6/25/2025,7/1/2025,bldate,6/25/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,450,0,1
|
|
||||||
D1D5873F-AEE8-4FC3-8E3E-246C0690E421,D1D5873F-AEE8-4FC3-8E3E-246C0690E421,2041,25010,S25.032,"INTERACID NORTH AMERICA, INC (Tampa)",USD,9/26/2025,NET 30,,NCSW,5,5,18050,19950,Bandirma,Tampa,CFR,manual,,2041 / H2SO4 FY 2025 / Default,line,H2SO4-Turkey,Turkey,19000,Mt,105,19000 Mt of sulphuric acid - Tel-quel,10/15/2025,10/25/2025,bldate,10/15/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,350,0,1
|
|
||||||
750C37B2-488A-4649-A246-2B1F75D1E973,750C37B2-488A-4649-A246-2B1F75D1E973,1900,24980A,S25.011,INTERACID TRADING (CHILE) S.A.,USD,12/5/2024,NET 30,,NCSW,5,5,19000,21000,YIZHENG,Mejillones,CFR,manual,,1900 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,20000,Mt,179,20000 Mt of sulphuric acid - Tel-quel,5/30/2025,6/15/2025,bldate,6/2/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,0,1
|
|
||||||
1E35F517-989C-41A2-9A31-2B22AD6CC378,1E35F517-989C-41A2-9A31-2B22AD6CC378,2011,25022A,,COROMANDEL INTERNATIONAL LTD,USD,7/23/2025,NET ,,NCSW,0,0,6000,6000,YIZHENG,Visakhapatnam,CFR,manual,,2011 / H2SO4 FY 2025 / Default,line,H2SO4-China,China,6000,Mt,150,6000 Mt of sulphuric acid - Tel-quel,11/20/2025,1/5/2026,bldate,11/29/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,300,1,1
|
|
||||||
8C859564-DBBD-4B8B-8D05-2B545E56759F,8C859564-DBBD-4B8B-8D05-2B545E56759F,2108,LXML FEB 2026,S25.010,SUMITOMO CORPORATION THAILAND LTD.,USD,12/5/2025,NET ,,NCSW,0,0,5000,5000,Naoshima,Samut Prakan,CFR,manual,,2108 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,5000,Mt,0,5000 Mt of sulphuric acid - Tel-quel,3/1/2026,3/31/2026,bldate,3/1/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,250,1,0
|
|
||||||
F98601FE-6702-45D5-8162-2EC487DFB70F,F98601FE-6702-45D5-8162-2EC487DFB70F,1899,24971A,S25.011,INTERACID TRADING (CHILE) S.A.,USD,12/5/2024,NET 30,,NCSW,5,5,19000,21000,Fangcheng,Mejillones,CFR,manual,,1899 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,20000,Mt,168.5367,20000 Mt of sulphuric acid - Tel-quel,4/13/2025,5/2/2025,bldate,4/13/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,0,1
|
|
||||||
0CD8121A-C444-4A99-B628-325C172F8BCE,0CD8121A-C444-4A99-B628-325C172F8BCE,1886,24985,S25.008,"INTERACID NORTH AMERICA, INC (Stockton)",USD,12/5/2024,NET 30,,NCSW,10,10,18000,22000,Saganoseki,Stockton,CFR,manual,,1886 / H2SO4 FY 2025 / Default,line,H2SO4-Japan,Japan,20000,Mt,113.6,20000 Mt of sulphuric acid - Tel-quel,6/15/2025,6/30/2025,bldate,6/17/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,12,350,0,1
|
|
||||||
1D38048B-3374-47B2-BF0D-33107388AB66,1D38048B-3374-47B2-BF0D-33107388AB66,1974,24983,,SAS International LLC,USD,4/22/2025,NET 20,,NCSW,3.3,3.3,11000,11750,YIZHENG,Jorf Lasfar,FOB,manual,,1974 / H2SO4 FY 2025 / Default,line,H2SO4-China,China,11375,Mt,74,11375 Mt of sulphuric acid - Tel-quel,5/15/2025,5/24/2025,bldate,5/15/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,0,300,1,1
|
|
||||||
B68DEB06-187A-4254-A4DF-334F1BCB36AC,B68DEB06-187A-4254-A4DF-334F1BCB36AC,2054,25018,S25.008,"INTERACID NORTH AMERICA, INC (Stockton)",USD,10/16/2025,NET 30,,NCSW,10,10,17100,20900,Naoshima,Stockton,CFR,manual,,2054 / H2SO4 FY 2025 / Default,line,H2SO4-Japan,Japan,19000,Mt,141.11,19000 Mt of sulphuric acid - Tel-quel,12/15/2025,12/24/2025,bldate,12/20/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,12,350,0,1
|
|
||||||
80856C25-A3C3-48A7-A4F3-3539EF7361C1,80856C25-A3C3-48A7-A4F3-3539EF7361C1,2075,25020C,S26.003,INTERACID TRADING (CHILE) S.A.,USD,11/17/2025,NET 30,,NCSW,0,0,6000,6000,Fangcheng,Mejillones,CFR,manual,,2075 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,6000,Mt,173,6000 Mt of sulphuric acid - Tel-quel,12/25/2025,1/5/2026,bldate,1/5/2026,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
EE5C012C-90A6-482A-8A2F-354016B9F912,EE5C012C-90A6-482A-8A2F-354016B9F912,2163,25026B,S26.010,INTERACID TRADING (CHILE) S.A.,USD,1/19/2026,NET ,,NCSW,0,0,2761.818,2761.818,Callao,Mejillones,CFR,manual,,2163 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Peru,Peru,2761.82,Mt,172,2761.82 Mt of sulphuric acid - Tel-quel,1/29/2026,2/9/2026,bldate,1/29/2026,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,400,1,1
|
|
||||||
2C2E3879-D5F1-4039-A2D1-35C1F243DCDC,2C2E3879-D5F1-4039-A2D1-35C1F243DCDC,2026,25011C,S25.003,INTERACID TRADING (CHILE) S.A.,USD,8/25/2025,NET 30,,NCSW,0,0,989.659,989.659,Callao,Mejillones,CFR,manual,,2026 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Finland,Finland,989.66,Mt,154,989.659 Mt of sulphuric acid - Tel-quel,11/16/2025,11/25/2025,bldate,11/16/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
DB8FA818-430A-4783-91A7-41B4A9D82C7B,DB8FA818-430A-4783-91A7-41B4A9D82C7B,1982,25001C,S25.023,INTERACID TRADING (CHILE) S.A.,USD,6/2/2025,NET ,,NCSW,0,0,5000,5000,Rugao,Mejillones,CFR,manual,,1982 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,5000,Mt,161.5,5000 Mt of sulphuric acid - Tel-quel,10/1/2025,10/20/2025,bldate,10/1/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
956A2622-D5C4-4EB0-9780-4227829661DD,956A2622-D5C4-4EB0-9780-4227829661DD,1952,24977,S25.006,INTERACID TRADING (CHILE) S.A.,USD,3/3/2025,NET 30,,NCSW,1.69,1.69,14500,15000,Callao,Mejillones,CIF,manual,,1952 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Peru,Peru,14750,Mt,153.75,14750 Mt of sulphuric acid - Tel-quel,4/18/2025,4/28/2025,bldate,4/18/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,400,1,1
|
|
||||||
92423C06-CBEB-4032-B848-4634C7640B46,92423C06-CBEB-4032-B848-4634C7640B46,2037,25011D,S25.031,INTERACID TRADING (CHILE) S.A.,USD,9/23/2025,NET 30,,NCSW,0,0,5000,5000,Pori,Mejillones,CFR,manual,,2037 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Finland,Finland,5000,Mt,150,5000 Mt of sulphuric acid - Tel-quel,11/16/2025,11/25/2025,bldate,11/16/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
5B7A5B00-78A5-48E4-BB20-467AC75FA58C,5B7A5B00-78A5-48E4-BB20-467AC75FA58C,2152,25020E,S26.012,INTERACID TRADING (CHILE) S.A.,USD,1/5/2026,NET 30,,NCSW,33.39,33.39,2996.46,6000,Fangcheng,Mejillones,CFR,manual,,2152 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,4498.23,Mt,172,4498.23 Mt of sulphuric acid - Tel-quel,12/25/2025,1/5/2026,bldate,1/5/2026,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
3746BE78-C40E-44C9-9435-4997BED9B2E5,3746BE78-C40E-44C9-9435-4997BED9B2E5,1923,24974A,S25.012,INTERACID TRADING (CHILE) S.A.,USD,12/19/2024,NET 30,,NCSW,0,0,12000,12000,Ilo,Mejillones,CFR,manual,,1923 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Mexico,Mexico,12000,Mt,145,12000 Mt of sulphuric acid - Tel-quel,5/5/2025,5/11/2025,bldate,5/5/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
B0D34AB6-6D63-48A7-9A44-4D70E76DC9DF,B0D34AB6-6D63-48A7-9A44-4D70E76DC9DF,2169,NFC - PROMMITR Feb/mar,S25.022,NFC PUBLIC COMPANY LTD - PROMMITR,USD,2/11/2026,NET ,,NCSW,0,0,2100,2100,Naoshima,Map Ta Phut,CFR,manual,,2169 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,2100,Mt,0,2100 Mt of sulphuric acid - Tel-quel,3/1/2026,3/31/2026,bldate,3/1/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,250,1,0
|
|
||||||
0BDB0387-1BD5-4089-997E-4E65C3159FC9,0BDB0387-1BD5-4089-997E-4E65C3159FC9,2089,25015,S26.007,"INTERACID NORTH AMERICA, INC (Tampa)",USD,11/21/2025,NET 30,,NCSW,5,5,18050,19950,Ronnskar,Beaumont,CFR,manual,,2089 / H2SO4 FY 2025 / Default,line,H2SO4-Finland,Finland,19000,Mt,133,19000 Mt of sulphuric acid - Tel-quel,11/25/2025,12/4/2025,bldate,11/25/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,350,0,1
|
|
||||||
F1443208-2B7D-4608-97F5-54E286DED73B,F1443208-2B7D-4608-97F5-54E286DED73B,2164,25027,S26.010,INTERACID TRADING (CHILE) S.A.,USD,1/19/2026,NET 30,,NCSW,0,0,13500,13500,Laizhou,Mejillones,CFR,manual,,2164 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,13500,Mt,172,13500 Mt of sulphuric acid - Tel-quel,2/15/2026,2/26/2026,bldate,2/15/2026,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,0
|
|
||||||
8504C8B4-FA3D-472F-A480-598E8603025B,8504C8B4-FA3D-472F-A480-598E8603025B,2023,25006,S25.016,"Agrifields DMCC, Dubai",USD,8/14/2025,NET ,,NCSW,5,5,9500,10500,Rugao,Isabel,CIF,manual,,2023 / H2SO4 FY 2025 / Default,line,H2SO4-China,China,10000,Mt,110,10000 Mt of sulphuric acid - Tel-quel,10/1/2025,10/15/2025,bldate,10/1/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,200,0,1
|
|
||||||
F7599096-F3E6-4C9B-8BBF-5AE632CD5BC7,F7599096-F3E6-4C9B-8BBF-5AE632CD5BC7,2119,25020D,S26.003,INTERACID TRADING (CHILE) S.A.,USD,12/9/2025,NET 30,,NCSW,0,0,3000,3000,Fangcheng,Mejillones,CFR,manual,,2119 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,3000,Mt,173,3000 Mt of sulphuric acid - Tel-quel,12/25/2025,1/6/2026,bldate,1/5/2026,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
64BC5C49-3E1C-4539-883D-61B88878FD68,64BC5C49-3E1C-4539-883D-61B88878FD68,2074,25026,S26.004,INTERACID TRADING (CHILE) S.A.,USD,11/12/2025,NET 30,,NCSW,0,0,14000,14000,,Mejillones,CFR,manual,,2074 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Peru,Peru,14000,Mt,168.75,14000 Mt of sulphuric acid - Tel-quel,1/29/2026,2/9/2026,bldate,1/29/2026,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,400,1,1
|
|
||||||
24B02E69-1AEA-43D8-B61B-61D530C93990,24B02E69-1AEA-43D8-B61B-61D530C93990,1669,24986A,S25.009,INTERACID TRADING (CHILE) S.A.,USD,2/29/2024,NET 30,,NCSW,0,0,20997.096,20997.096,Fangcheng,Mejillones,CFR,manual,,1669 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,20997.1,Mt,151,20997.1 Mt of sulphuric acid - Tel-quel,7/5/2025,7/20/2025,bldate,7/5/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
DA1CF8A6-AF4B-4CA8-AD7F-626E8CA9BAB2,DA1CF8A6-AF4B-4CA8-AD7F-626E8CA9BAB2,1961,24973B,S25.009 - 120kt,INTERACID TRADING (CHILE) S.A.,USD,4/2/2025,NET 30,,NCSW,0,0,20,20,Callao,Mejillones,CFR,manual,,1961 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Peru,Peru,20,Mt,151,20 Mt of sulphuric acid - Tel-quel,3/20/2025,4/4/2025,bldate,4/3/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,400,1,1
|
|
||||||
A146D2F0-B3BD-46D1-860F-6372963A9E34,A146D2F0-B3BD-46D1-860F-6372963A9E34,1996,25024A,S25.022,NFC PUBLIC COMPANY LTD - PROMMITR,USD,7/2/2025,NET 30,,NCSW,0,0,5000,5000,Naoshima,Map Ta Phut,CFR,manual,,1996 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,5000,Mt,132.91,5000 Mt of sulphuric acid - Tel-quel,1/15/2026,1/24/2026,bldate,1/15/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,250,1,1
|
|
||||||
C5B9F1F5-9A11-429B-8D6F-63BA7EFB01C1,C5B9F1F5-9A11-429B-8D6F-63BA7EFB01C1,1874,25011A,S25.009,INTERACID TRADING (CHILE) S.A.,USD,12/5/2024,NET 30,,NCSW,0,0,8090.858,8090.858,Pori,Mejillones,CFR,manual,,1874 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Finland,Finland,8090.86,Mt,151,8090.86 Mt of sulphuric acid - Tel-quel,11/16/2025,11/25/2025,bldate,11/16/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
95E2978F-EE5F-4DA8-A68C-63CE130FDB3C,95E2978F-EE5F-4DA8-A68C-63CE130FDB3C,2021,25016,S25.027,INTERACID TRADING (CHILE) S.A.,USD,8/12/2025,NET 30,,NCSW,3.33,3.33,14500,15500,Callao,Mejillones,CFR,manual,,2021 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Peru,Peru,15000,Mt,166.5,15000 Mt of sulphuric acid - Tel-quel,12/3/2025,12/13/2025,bldate,12/3/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,400,1,1
|
|
||||||
58F2BAC4-54FE-4FB7-A986-67490F1F2362,58F2BAC4-54FE-4FB7-A986-67490F1F2362,2004,25020A,S26.005,INTERACID TRADING (CHILE) S.A.,USD,11/17/2025,NET 30,,NCSW,5.26,5.26,18000,20000,Fangcheng,Mejillones,CFR,manual,,2004 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,19000,Mt,178,19000 Mt of sulphuric acid - Tel-quel,12/24/2025,1/5/2026,bldate,1/5/2026,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
2F8EBC2B-DA6C-4317-9709-6A6E8DA0E7D7,2F8EBC2B-DA6C-4317-9709-6A6E8DA0E7D7,2020,25001D,S25.009,INTERACID TRADING (CHILE) S.A.,USD,8/11/2025,NET ,,NCSW,18.64,18.64,2400,3500,Rugao,Mejillones,CFR,manual,,2020 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,2950,Mt,151,2950 Mt of sulphuric acid - Tel-quel,10/1/2025,10/20/2025,bldate,10/1/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
6720D794-1509-42A2-8C30-6BFC83E30CC8,6720D794-1509-42A2-8C30-6BFC83E30CC8,1994,25013A,S25.022,NFC PUBLIC COMPANY LTD - PROMMITR,USD,7/2/2025,NET ,,NCSW,0,0,5000,5000,Naoshima,Map Ta Phut,CFR,manual,,1994 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,5000,Mt,89.62,5000 Mt of sulphuric acid - Tel-quel,11/21/2025,12/3/2025,bldate,11/21/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,250,1,1
|
|
||||||
F858EE88-3AF3-45AB-99F4-6CE3A3B5C388,F858EE88-3AF3-45AB-99F4-6CE3A3B5C388,2165,25028C,S26.006,INTERACID TRADING (CHILE) S.A.,USD,1/19/2026,NET 30,,NCSW,0,0,6770.364,6770.364,,Mejillones,CFR,manual,,2165 / H2SO4 FY 2025 / Chile FY25,line,H2SO4,,6770.36,Mt,172.5,6770.36 Mt of sulphuric acid - Tel-quel,2/19/2026,2/28/2026,bldate,2/19/2026,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,400,1,0
|
|
||||||
4915E268-8C1A-4D13-A41C-6D7727F888DF,4915E268-8C1A-4D13-A41C-6D7727F888DF,2092,25028B,S26.008 - 5'100MT,INTERACID TRADING (CHILE) S.A.,USD,12/1/2025,NET 30,,NCSW,0,0,5100,5100,,Mejillones,CFR,manual,,2092 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Finland,Finland,5100,Mt,174.75,5100 Mt of sulphuric acid - Tel-quel,2/20/2026,2/28/2026,bldate,2/20/2026,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,400,1,0
|
|
||||||
8133993D-4139-489E-BCC7-724984D2E9A8,8133993D-4139-489E-BCC7-724984D2E9A8,1960,24978,S25.018,"INTERACID NORTH AMERICA, INC (Beaumont)",USD,3/28/2025,NET 30,,NCSW,10,10,17100,20900,Bandirma,Beaumont,CFR,manual,,1960 / H2SO4 FY 2025 / Default,line,H2SO4-Turkey,Turkey,19000,Mt,141.9,19000 Mt of sulphuric acid - Tel-quel,4/28/2025,5/8/2025,bldate,5/1/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,300,0,1
|
|
||||||
E254C586-E637-4ED8-B518-74555103DBB1,E254C586-E637-4ED8-B518-74555103DBB1,1948,24972B,S24.025,SUMITOMO CORPORATION THAILAND LTD.,USD,2/26/2025,NET ,,NCSW,0,0,2700,2700,Onahama,Samut Prakan,CFR,manual,,1948 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,2700,Mt,82.85,2700 Mt of sulphuric acid - Tel-quel,3/20/2025,4/2/2025,bldate,4/2/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,250,1,1
|
|
||||||
4A840D36-9667-4627-87BB-774990BEA3EA,4A840D36-9667-4627-87BB-774990BEA3EA,1950,24971B,S25.005,INTERACID TRADING (CHILE) S.A.,USD,3/3/2025,NET 30,,NCSW,13.04,13.04,10000,13000,Fangcheng,Mejillones,CFR,manual,,1950 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,11500,Mt,151.5,11500 Mt of sulphuric acid - Tel-quel,4/13/2025,5/2/2025,bldate,4/13/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
D3624F6F-03B4-4C34-A059-790D82BEDF14,D3624F6F-03B4-4C34-A059-790D82BEDF14,1951,24974B,S25.006,INTERACID TRADING (CHILE) S.A.,USD,3/3/2025,NET ,,NCSW,0,0,2479.256,2479.256,Ilo,Mejillones,CFR,manual,,1951 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Mexico,Mexico,2479.26,Mt,153.75,2479.26 Mt of sulphuric acid - Tel-quel,5/5/2025,5/11/2025,bldate,5/5/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
A644740E-F2FA-4057-862A-7A109E2C24B7,A644740E-F2FA-4057-862A-7A109E2C24B7,1858,24992,S25.002 - 3/4,WILSON INTERNATIONAL TRADING PRIVATE LTD,USD,11/18/2024,NET 30,,NCSW,10,10,18000,22000,Rugao,Tuticorin,CFR,manual,,1858 / H2SO4 FY 2025 / Default,line,H2SO4-China,China,20000,Mt,89.5,20000 Mt of sulphuric acid - Tel-quel,7/18/2025,7/30/2025,bldate,7/18/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,250,0,1
|
|
||||||
C3FA8621-31AA-4F00-A27F-7A1E856AC0E4,C3FA8621-31AA-4F00-A27F-7A1E856AC0E4,1762,24972A,S24.025,NFC PUBLIC COMPANY LTD - PROMMITR,USD,5/15/2024,NET ,,NCSW,0,0,5000,5000,,Map Ta Phut,CFR,manual,,1762 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,5000,Mt,86.3,5000 Mt of sulphuric acid - Tel-quel,3/20/2025,4/2/2025,bldate,4/2/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,250,1,1
|
|
||||||
1BE70D36-8272-405A-9820-7AF8F7B70D95,1BE70D36-8272-405A-9820-7AF8F7B70D95,2132,NFC - PROMMITR Feb,S25.022,NFC PUBLIC COMPANY LTD - PROMMITR,USD,12/29/2025,NET 30,,NCSW,0,0,2400,2400,,Map Ta Phut,CFR,manual,,2132 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,2400,Mt,0,2400 Mt of sulphuric acid - Tel-quel,3/1/2026,3/31/2026,bldate,3/1/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,250,1,0
|
|
||||||
B3A78D90-FADD-4004-A50C-7CCA6FB8A785,B3A78D90-FADD-4004-A50C-7CCA6FB8A785,2046,25007C,S25.022,SUMITOMO CORPORATION THAILAND LTD.,USD,9/26/2025,NET 30,,NCSW,0,0,1000,1000,Naoshima,Samut Prakan,CFR,manual,,2046 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,1000,Mt,91.93,1000 Mt of sulphuric acid - Tel-quel,9/30/2025,10/5/2025,bldate,10/1/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,250,1,1
|
|
||||||
5A0514CB-E74F-4149-A4CE-82367A3F75C8,5A0514CB-E74F-4149-A4CE-82367A3F75C8,2025,25011B,S25.007 - 5'400MT,INTERACID TRADING (CHILE) S.A.,USD,8/18/2025,NET ,,NCSW,0,0,395.746,395.746,Pori,Mejillones,CFR,manual,,2025 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Finland,Finland,395.75,Mt,155.25,395.746 Mt of sulphuric acid - Tel-quel,11/16/2025,11/25/2025,bldate,11/16/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
22557B77-FE65-455C-B6D0-8764AD98F44F,22557B77-FE65-455C-B6D0-8764AD98F44F,1892,24999,S25.008,"INTERACID NORTH AMERICA, INC (Stockton)",USD,12/5/2024,NET 30,,NCSW,10,10,18000,22000,Hibi,Stockton,CFR,manual,,1892 / H2SO4 FY 2025 / Default,line,H2SO4-Japan,Japan,20000,Mt,111.25,20000 Mt of sulphuric acid - Tel-quel,9/7/2025,9/22/2025,bldate,9/7/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,12,350,0,1
|
|
||||||
5D7BCD40-5B9B-4916-BCFC-879853C515A2,5D7BCD40-5B9B-4916-BCFC-879853C515A2,2048,25014,S25.034,"INTERACID NORTH AMERICA, INC (Tampa)",USD,9/26/2025,NET 30,,NCSW,5,5,18050,19950,Huelva,Tampa,CFR,manual,,2048 / H2SO4 FY 2025 / Default,line,H2SO4-Spain,Spain,19000,Mt,108.9,19000 Mt of sulphuric acid - Tel-quel,11/14/2025,11/20/2025,bldate,11/14/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,300,0,1
|
|
||||||
476625FC-678E-4C66-A624-8E19B7CD62B1,476625FC-678E-4C66-A624-8E19B7CD62B1,2002,24995,S25.023,INTERACID TRADING (CHILE) S.A.,USD,7/21/2025,NET 30,,NCSW,0,0,5500,5500,YIZHENG,Mejillones,CFR,manual,,2002 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,5500,Mt,161.5,5500 Mt of sulphuric acid - Tel-quel,8/19/2025,8/26/2025,bldate,8/19/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
B71AD060-A147-4C3E-8862-99F6074CA991,B71AD060-A147-4C3E-8862-99F6074CA991,2056,25026C,S25.028,INTERACID TRADING (CHILE) S.A.,USD,10/27/2025,NET 20,,NCSW,0,0,238.182,238.182,Pori,Mejillones,CFR,manual,,2056 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Finland,Finland,238.18,Mt,166.5,238.182 Mt of sulphuric acid - Tel-quel,1/1/2026,1/31/2026,bldate,1/1/2026,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
F667050F-DCF4-469D-A929-9A29664F47E8,F667050F-DCF4-469D-A929-9A29664F47E8,1927,24997A,S25.013,"INTERACID NORTH AMERICA, INC (Beaumont)",USD,12/20/2024,NET ,,NCSW,0,0,7000,7000,Pori,Tampa,CFR,manual,,1927 / H2SO4 FY 2025 / Default,line,H2SO4-Finland,Finland,7000,Mt,134.16,7000 Mt of sulphuric acid - Tel-quel,8/22/2025,9/4/2025,bldate,9/4/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,300,1,1
|
|
||||||
D810DBBB-905E-4CEB-B51A-9FF1B74E9E8B,D810DBBB-905E-4CEB-B51A-9FF1B74E9E8B,2106,25024C,S25.010,SUMITOMO CORPORATION THAILAND LTD.,USD,12/4/2025,NET 30,,NCSW,0,0,3600,3600.2,Naoshima,Samut Prakan,CFR,manual,,2106 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,3600.1,Mt,82.4,3600.1 Mt of sulphuric acid - Tel-quel,1/15/2026,1/24/2026,bldate,1/15/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,250,1,1
|
|
||||||
CA5FAFBE-D721-4475-BE14-A8CAE2F722FF,CA5FAFBE-D721-4475-BE14-A8CAE2F722FF,1992,25007A,S25.022,NFC PUBLIC COMPANY LTD - PROMMITR,USD,7/2/2025,NET 30,,NCSW,0,0,5000,5000,Naoshima,Map Ta Phut,CFR,manual,,1992 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,5000,Mt,92.29,5000 Mt of sulphuric acid - Tel-quel,9/30/2025,10/5/2025,bldate,10/1/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,250,1,1
|
|
||||||
561448D8-F135-4120-AE13-A92FEC264793,561448D8-F135-4120-AE13-A92FEC264793,1985,24994,S25.025,WILSON INTERNATIONAL TRADING PRIVATE LTD,USD,6/10/2025,NET ,,NCSW,16.28,16.28,18000,25000,YIZHENG,Tuticorin,CFR,manual,,1985 / H2SO4 FY 2025 / Default,line,H2SO4-China,China,21500,Mt,127.5,21500 Mt of sulphuric acid - Tel-quel,8/16/2025,8/28/2025,bldate,8/16/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,250,1,1
|
|
||||||
2CDC3D15-AA94-4E61-A0E3-B099028D3820,2CDC3D15-AA94-4E61-A0E3-B099028D3820,1890,24989,S25.008,"INTERACID NORTH AMERICA, INC (Stockton)",USD,12/5/2024,NET 30,,NCSW,10,10,18000,22000,Hibi,Stockton,CFR,manual,,1890 / H2SO4 FY 2025 / Default,line,H2SO4-Japan,Japan,20000,Mt,111,20000 Mt of sulphuric acid - Tel-quel,7/12/2025,7/25/2025,bldate,7/12/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,12,350,0,1
|
|
||||||
B2E3C472-214E-44AA-90C8-B3F724BCECCC,B2E3C472-214E-44AA-90C8-B3F724BCECCC,1901,25001A,S25.011,INTERACID TRADING (CHILE) S.A.,USD,12/5/2024,NET ,,NCSW,5,5,19000,21000,Rugao,Mejillones,CFR,manual,,1901 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,20000,Mt,144.5,20000 Mt of sulphuric acid - Tel-quel,10/1/2025,10/20/2025,bldate,10/1/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,0,1
|
|
||||||
A1F4F994-9973-4C9B-8388-B73C867BBA4E,A1F4F994-9973-4C9B-8388-B73C867BBA4E,1859,25002A,S25.002 - 4/4,WILSON INTERNATIONAL TRADING PRIVATE LTD,USD,11/18/2024,NET ,,NCSW,10,10,18000,22000,Fangcheng,Tuticorin,CFR,manual,,1859 / H2SO4 FY 2025 / Default,line,H2SO4-China,China,20000,Mt,89.5,20000 Mt of sulphuric acid - Tel-quel,10/10/2025,10/30/2025,bldate,10/26/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,250,0,1
|
|
||||||
535991DB-A1C1-468A-A0FD-BBDC2A472D10,535991DB-A1C1-468A-A0FD-BBDC2A472D10,1930,25005,S25.013,"INTERACID NORTH AMERICA, INC (Beaumont)",USD,12/20/2024,NET 30,,NCSW,3.9,3.9,18500,20000,Ronnskar,Beaumont,CFR,manual,,1930 / H2SO4 FY 2025 / Default,line,H2SO4-Finland,Finland,19250,Mt,115.31,19250 Mt of sulphuric acid - Tel-quel,10/11/2025,10/20/2025,bldate,10/11/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,350,1,1
|
|
||||||
31E490C4-9FDC-49FA-8FC6-BE2492F40E8F,31E490C4-9FDC-49FA-8FC6-BE2492F40E8F,1955,24975,S25.016,"Agrifields DMCC, Dubai",USD,3/19/2025,NET ,,NCSW,10,10,9000,11000,Rugao,Isabel,CIF,manual,,1955 / H2SO4 FY 2025 / Default,line,H2SO4-China,China,10000,Mt,98.5,10000 Mt of sulphuric acid - Tel-quel,4/1/2025,4/15/2025,bldate,4/7/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,200,0,1
|
|
||||||
596AB953-7CF3-4D54-A1BB-C166D124DA0D,596AB953-7CF3-4D54-A1BB-C166D124DA0D,2098,25024B,S25.022,SUMITOMO CORPORATION THAILAND LTD.,USD,12/3/2025,NET 30,,NCSW,0,0,1899.669,1899.669,Naoshima,Samut Prakan,CFR,manual,,2098 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,1899.67,Mt,97.63,1899.67 Mt of sulphuric acid - Tel-quel,1/15/2026,1/24/2026,bldate,1/15/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,250,1,1
|
|
||||||
D8EC09D9-A4D6-454B-A28F-C2D4EE6DA43B,D8EC09D9-A4D6-454B-A28F-C2D4EE6DA43B,2045,25007B,S25.022,SUMITOMO CORPORATION THAILAND LTD.,USD,9/26/2025,NET 30,,NCSW,20,20,1600,2400,Naoshima,Samut Prakan,CFR,manual,,2045 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,2000,Mt,91.56,2000 Mt of sulphuric acid - Tel-quel,9/30/2025,10/5/2025,bldate,10/1/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,250,1,1
|
|
||||||
2EE91F22-B849-45EA-B730-C46E5ADF0A42,2EE91F22-B849-45EA-B730-C46E5ADF0A42,1968,24980B,S25.019,INTERACID TRADING (CHILE) S.A.,USD,4/6/2025,NET ,,NCSW,0,0,4000,4000,YIZHENG,Mejillones,CFR,manual,,1968 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,4000,Mt,166.5,4000 Mt of sulphuric acid - Tel-quel,5/30/2025,6/15/2025,bldate,6/2/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
AD02F6AD-7BC9-4C74-A0DB-C522F8849811,AD02F6AD-7BC9-4C74-A0DB-C522F8849811,1940,24986C,S25.015,INTERACID TRADING (CHILE) S.A.,USD,1/23/2025,NET ,,NCSW,0,0,5000,5000,Fangcheng,Mejillones,CFR,manual,,1940 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,5000,Mt,151,5000 Mt of sulphuric acid - Tel-quel,7/5/2025,7/20/2025,bldate,7/5/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
2866889F-60E9-4F99-A683-C61DFC477384,2866889F-60E9-4F99-A683-C61DFC477384,2123,25021,S26.014,"INTERACID NORTH AMERICA, INC (Stockton)",USD,12/10/2025,NET ,,NCSW,10,10,18000,22000,Saganoseki,Stockton,CFR,manual,,2123 / H2SO4 FY 2025 / Default,line,H2SO4-Japan,Japan,20000,Mt,137.22,20000 Mt of sulphuric acid - Tel-quel,1/7/2026,1/21/2026,bldate,1/7/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,12,350,0,1
|
|
||||||
55170A07-EF66-444B-BA8B-C8DBEC2B798C,55170A07-EF66-444B-BA8B-C8DBEC2B798C,1888,24996,S25.008,"INTERACID NORTH AMERICA, INC (Stockton)",USD,12/5/2024,NET 30,,NCSW,10,10,18000,22000,Hibi,Stockton,CFR,manual,,1888 / H2SO4 FY 2025 / Default,line,H2SO4-Japan,Japan,20000,Mt,110.65,20000 Mt of sulphuric acid - Tel-quel,8/15/2025,8/29/2025,bldate,8/15/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,12,350,0,1
|
|
||||||
514D2631-3EE9-4823-AFF9-D35FD04FA837,514D2631-3EE9-4823-AFF9-D35FD04FA837,1973,24982/A,,NFC PUBLIC COMPANY LTD - PROMMITR,USD,4/17/2025,NET ,,NCSW,0,0,5000,5000,Onahama,Map Ta Phut,CFR,manual,,1973 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,5000,Mt,81.55,5000 Mt of sulphuric acid - Tel-quel,5/8/2025,5/16/2025,bldate,5/9/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,250,1,0
|
|
||||||
38807FED-CFCB-46A4-92CB-D486FF03A0E9,38807FED-CFCB-46A4-92CB-D486FF03A0E9,2127,25029,S26.014,"INTERACID NORTH AMERICA, INC (Stockton)",USD,12/18/2025,NET 30,,NCSW,10,10,18000,22000,Saganoseki,Stockton,CFR,manual,,2127 / H2SO4 FY 2025 / Default,line,H2SO4-Japan,Japan,20000,Mt,138.5,20000 Mt of sulphuric acid - Tel-quel,2/26/2026,3/12/2026,bldate,2/26/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,12,350,0,0
|
|
||||||
AA26D240-DE88-4CFB-8F10-D87906F8F06D,AA26D240-DE88-4CFB-8F10-D87906F8F06D,1884,24979,S25.008,"INTERACID NORTH AMERICA, INC (Stockton)",USD,12/5/2024,NET 30,,NCSW,10,10,18000,22000,Saganoseki,Stockton,CFR,manual,,1884 / H2SO4 FY 2025 / Default,line,H2SO4-Japan,Japan,20000,Mt,115,20000 Mt of sulphuric acid - Tel-quel,5/18/2025,5/31/2025,bldate,5/18/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,12,350,0,1
|
|
||||||
2AD80800-2F9D-4385-A450-DAFAC03161DC,2AD80800-2F9D-4385-A450-DAFAC03161DC,2078,25028A,S26.005,INTERACID TRADING (CHILE) S.A.,USD,11/17/2025,NET 30,,NCSW,0,0,20000,20000,Longkou,Mejillones,CFR,manual,,2078 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Finland,Finland,20000,Mt,185,20000 Mt of sulphuric acid - 100%,2/18/2026,2/28/2026,bldate,2/18/2026,Jeremie Collot, ,100,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,400,1,0
|
|
||||||
B8E115F4-A2F0-4A69-9321-DBF8BEC5D4D8,B8E115F4-A2F0-4A69-9321-DBF8BEC5D4D8,2042,25009,S25.033,PT PUPUK ISKANDAR MUDA (PIM),USD,9/26/2025,NET ,,NCSW,10,10,7200,8800,Onahama,LHOKSEUMAWE,CFR,manual,,2042 / H2SO4 FY 2025 / Default,line,H2SO4-China,China,8000,Mt,99,8000 Mt of sulphuric acid - Tel-quel,11/5/2025,11/15/2025,bldate,11/5/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,150,0,1
|
|
||||||
49A55704-7DD9-4E46-8CAF-DC5CDF378831,49A55704-7DD9-4E46-8CAF-DC5CDF378831,2049,25023,S26.001,"INTERACID NORTH AMERICA, INC (Tampa)",USD,10/3/2025,NET 30,,NCSW,5,5,18050,19950,Huelva,Beaumont,CFR,manual,,2049 / H2SO4 FY 2025 / Default,line,H2SO4-Spain,Spain,19000,Mt,119.5,19000 Mt of sulphuric acid - Tel-quel,1/12/2026,1/20/2026,bldate,1/12/2026,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,350,0,1
|
|
||||||
06ABB5D2-FBE7-40C8-9AB1-DE08949B4AFB,06ABB5D2-FBE7-40C8-9AB1-DE08949B4AFB,1861,25000,S25.003,INTERACID TRADING (CHILE) S.A.,USD,11/18/2024,NET ,,NCSW,10,10,13500,16500,Callao,Mejillones,CFR,manual,,1861 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,15000,Mt,154,15000 Mt of sulphuric acid - Tel-quel,8/20/2025,8/30/2025,bldate,8/20/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,400,0,1
|
|
||||||
E657EC0E-1B75-4358-BE49-DE5E92D1C2EE,E657EC0E-1B75-4358-BE49-DE5E92D1C2EE,1850,24976,S25.001,"INTERACID NORTH AMERICA, INC (Tampa)",USD,11/1/2024,NET 30,,NCSW,5,5,18050,19950,Huelva,Tampa,CFR,manual,,1850 / H2SO4 FY 2025 / Default,line,H2SO4-Spain,Spain,19000,Mt,130.25,19000 Mt of sulphuric acid - Tel-quel,4/15/2025,4/21/2025,bldate,4/15/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,6,350,0,1
|
|
||||||
1F3BE955-ECEF-4EA9-A017-DF317957E602,1F3BE955-ECEF-4EA9-A017-DF317957E602,1971,24982/B,,SUMITOMO CORPORATION THAILAND LTD.,USD,4/17/2025,NET 30,,NCSW,0,0,2350,2350,Onahama,Samut Prakan,CFR,manual,,1971 / H2SO4 FY 2025 / Thailand FY25,line,H2SO4-Japan,Japan,2350,Mt,86.13,2350 Mt of sulphuric acid - Tel-quel,5/8/2025,5/16/2025,bldate,5/9/2025,Stephane Monnard, ,0,H2SO4 FY 2025,Thailand FY25,Laycan,,0,6,250,1,1
|
|
||||||
A733030D-A266-4551-BF33-E6364A4EDA36,A733030D-A266-4551-BF33-E6364A4EDA36,2156,25019B,,SUMITOMO AUSTRALIA,USD,1/6/2026,NET 30,,NCSW,10,10,2250,2750,Taichung,Gladstone,CFR,manual,,2156 / H2SO4 FY 2025 / Default,line,H2SO4,,2500,Mt,179,2500 Mt of sulphuric acid - Tel-quel,12/24/2025,1/2/2026,bldate,12/24/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,0,350,0,0
|
|
||||||
1E8C4039-E74B-4728-B2F6-E8A42FFACEC5,1E8C4039-E74B-4728-B2F6-E8A42FFACEC5,1924,24981,S25.005,INTERACID TRADING (CHILE) S.A.,USD,12/19/2024,NET 30,,NCSW,22.33,22.33,10000,15750,Rugao,Mejillones,CFR,manual,,1924 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,12875,Mt,151.5,12875 Mt of sulphuric acid - Tel-quel,4/28/2025,5/7/2025,bldate,5/1/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
68013CF3-A4A1-4BE7-96FA-EFF922BDBF62,68013CF3-A4A1-4BE7-96FA-EFF922BDBF62,1958,24990A,S25.017,INTERACID TRADING (CHILE) S.A.,USD,3/21/2025,NET ,,NCSW,0,0,15000,15000,Fangcheng,Mejillones,CFR,manual,,1958 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-China,China,15000,Mt,159,15000 Mt of sulphuric acid - Tel-quel,9/1/2025,9/30/2025,bldate,9/1/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
10994DA8-B0C7-4847-874D-F2E049D618CA,10994DA8-B0C7-4847-874D-F2E049D618CA,2091,25017,S26.009,"TRICON ENERGY, LTD",USD,12/1/2025,NET 30,,NCSW,5.26,5.26,9000,10000,Pori,Mejillones,CFR,manual,,2091 / H2SO4 FY 2025 / Chile FY25,line,H2SO4-Finland,Finland,9500,Mt,172.5,9500 Mt of sulphuric acid - Tel-quel,12/1/2025,12/31/2025,bldate,12/1/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Chile FY25,Laycan,,0,6,350,1,1
|
|
||||||
2BF69450-9BF0-4EEB-A235-F518F4B300DB,2BF69450-9BF0-4EEB-A235-F518F4B300DB,1894,25003,S25.008,"INTERACID NORTH AMERICA, INC (Stockton)",USD,12/5/2024,NET 30,,NCSW,10,10,18000,22000,Saganoseki,Stockton,CFR,manual,,1894 / H2SO4 FY 2025 / Default,line,H2SO4-Japan,Japan,20000,Mt,146.23,20000 Mt of sulphuric acid - Tel-quel,10/1/2025,10/15/2025,bldate,10/1/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,12,350,0,1
|
|
||||||
5C4CA64F-F7A1-4599-8B69-F699B4605669,5C4CA64F-F7A1-4599-8B69-F699B4605669,2125,25025,S26.014,"INTERACID NORTH AMERICA, INC (Stockton)",USD,12/18/2025,NET 30,,NCSW,10,10,18000,22000,Saganoseki,Stockton,CFR,manual,,2125 / H2SO4 FY 2025 / Default,line,H2SO4-Japan,Japan,20000,Mt,138.5,20000 Mt of sulphuric acid - Tel-quel,1/30/2026,2/13/2026,bldate,2/3/2026,Stephane Monnard, ,0,H2SO4 FY 2025,Default,Laycan,,0,12,350,0,1
|
|
||||||
03D21F99-0AA1-4690-8C51-FC6F6FA25BE3,03D21F99-0AA1-4690-8C51-FC6F6FA25BE3,1897,25008,S25.008,"INTERACID NORTH AMERICA, INC (Stockton)",USD,12/5/2024,NET ,,NCSW,10,10,18000,22000,Hibi,Stockton,CFR,manual,,1897 / H2SO4 FY 2025 / Default,line,H2SO4-Japan,Japan,20000,Mt,140.32,20000 Mt of sulphuric acid - Tel-quel,11/1/2025,11/30/2025,bldate,11/1/2025,Jeremie Collot, ,0,H2SO4 FY 2025,Default,Laycan,,0,12,350,0,1
|
|
||||||
|
|||||||
|
33
Reference Data/python_project/loaders/Sale_Fees.csv
Normal file
33
Reference Data/python_project/loaders/Sale_Fees.csv
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
contract_number,contract_ref,line_sequence,product,supplier,currency,p_r,mode,price,unit
|
||||||
|
1990,24998,1,Commission,SUMITOMO CORPORATION INDONESIA (SSRI),USD,PAY,Per qt,0.5,MT
|
||||||
|
1990,24998,1,LC Fees,UBS SWITZERLAND AG,USD,PAY,Per qt,0.25,MT
|
||||||
|
2010,25019A,1,Commission,SUMITOMO AUSTRALIA,USD,PAY,Per qt,0.7,MT
|
||||||
|
2011,25022A,1,Commission,SUMITOMO CORPORATION INDIA PVT LTD,USD,PAY,Per qt,0.75,MT
|
||||||
|
2023,25006,1,LC Fees,UBS SWITZERLAND AG,USD,PAY,Per qt,0.35,MT
|
||||||
|
2023,25006,1,Insurance,Marsh / Navigators Insurance Company,USD,PAY,Per qt,0.05,MT
|
||||||
|
2024,25002B,1,Commission,SUMITOMO CORPORATION INDIA PVT LTD,USD,PAY,Per qt,0.75,MT
|
||||||
|
2024,25002B,1,LC Fees,UBS SWITZERLAND AG,USD,PAY,Per qt,0.25,MT
|
||||||
|
2025,25011B,1,Finance,TBD Supplier,USD,PAY,Per qt,0.2,MT
|
||||||
|
2026,25011C,1,Finance,TBD Supplier,USD,PAY,Per qt,0.2,MT
|
||||||
|
2035,25020B,1,Finance,TBD Supplier,USD,PAY,Per qt,0.2,MT
|
||||||
|
2042,25009,1,Commission,SUMITOMO CORPORATION INDONESIA (SSRI),USD,PAY,Per qt,0.49,MT
|
||||||
|
2042,25009,1,LC Fees,UBS SWITZERLAND AG,USD,PAY,Per qt,0.35,MT
|
||||||
|
2055,25012,1,Finance,TBD Supplier,USD,PAY,Per qt,0.3,MT
|
||||||
|
2056,25026C,1,Finance,TBD Supplier,USD,PAY,Per qt,0.2,MT
|
||||||
|
2074,25026A,1,Finance,TBD Supplier,USD,PAY,Per qt,0.2,MT
|
||||||
|
2075,25020C,1,Finance,TBD Supplier,USD,PAY,Per qt,0.25,MT
|
||||||
|
2079,BHP Q3 2026 contract,1,Other,TBD Supplier,USD,PAY,Per qt,1,MT
|
||||||
|
2080,BHP Q4 2026 contract,1,Other,TBD Supplier,USD,PAY,Per qt,1,MT
|
||||||
|
2092,25028B,1,Finance,TBD Supplier,USD,PAY,Per qt,0.2,MT
|
||||||
|
2102,Las Cenizas / Franke 2H 2026 contract,1,Finance,TBD Supplier,USD,PAY,Per qt,0.15,MT
|
||||||
|
2103,Las Cenizas / Franke 2H 2026 contract,1,Finance,TBD Supplier,USD,PAY,Per qt,0.15,MT
|
||||||
|
2104,Las Cenizas / Franke 2H 2026 contract,1,Finance,TBD Supplier,USD,PAY,Per qt,0.15,MT
|
||||||
|
2121,Grace (MDL) spot contract 2026,1,Finance,TBD Supplier,USD,PAY,Per qt,0.2,MT
|
||||||
|
2152,25020E,1,Finance,TBD Supplier,USD,PAY,Per qt,0.25,MT
|
||||||
|
2154,25022BC,1,Commission,TBD Supplier,USD,PAY,Per qt,0.75,MT
|
||||||
|
2163,25026B,1,Finance,TBD Supplier,USD,PAY,Per qt,0.15,MT
|
||||||
|
2164,25027,1,Finance,TBD Supplier,USD,PAY,Per qt,0.15,MT
|
||||||
|
2165,25028C,1,Finance,TBD Supplier,USD,PAY,Per qt,0.2,MT
|
||||||
|
2168,Cosaych 2026 contract,1,Finance,TBD Supplier,USD,PAY,Per qt,0.15,MT
|
||||||
|
2170,PPC FD MAY TO INDIA,1,Commission,SUMITOMO CORPORATION INDIA PVT LTD,USD,PAY,Per qt,0.75,MT
|
||||||
|
2170,PPC FD MAY TO INDIA,1,LC Fees,UBS SWITZERLAND AG,USD,PAY,Per qt,0.5,MT
|
||||||
|
1997
Reference Data/python_project/schema_analysis_columns.txt
Normal file
1997
Reference Data/python_project/schema_analysis_columns.txt
Normal file
File diff suppressed because it is too large
Load Diff
870
Reference Data/python_project/schema_analysis_keys_counts.txt
Normal file
870
Reference Data/python_project/schema_analysis_keys_counts.txt
Normal file
@@ -0,0 +1,870 @@
|
|||||||
|
=== PRIMARY KEYS ===
|
||||||
|
back_to_back: PK(id)
|
||||||
|
commission: PK(id)
|
||||||
|
commission_agent: PK(id)
|
||||||
|
commission_plan: PK(id)
|
||||||
|
commission_plan_line: PK(id)
|
||||||
|
currency_currency: PK(id)
|
||||||
|
currency_currency_rate: PK(id)
|
||||||
|
derivative_derivative: PK(id)
|
||||||
|
derivative_match: PK(id)
|
||||||
|
fee_fee: PK(id)
|
||||||
|
fee_lots: PK(id)
|
||||||
|
forex_bi: PK(id)
|
||||||
|
forex_category: PK(id)
|
||||||
|
forex_cover_fees: PK(id)
|
||||||
|
forex_cover_physical_contract: PK(id)
|
||||||
|
forex_cover_physical_sale: PK(id)
|
||||||
|
forex_cron: PK(id)
|
||||||
|
forex_forex: PK(id)
|
||||||
|
lc_letter_incoming: PK(id)
|
||||||
|
lc_letter_outgoing: PK(id)
|
||||||
|
lc_mt700: PK(id)
|
||||||
|
lot_accounting: PK(id)
|
||||||
|
lot_fcr: PK(id)
|
||||||
|
lot_lot: PK(id)
|
||||||
|
lot_move: PK(id)
|
||||||
|
lot_qt: PK(id)
|
||||||
|
lot_qt_hist: PK(id)
|
||||||
|
lot_qt_type: PK(id)
|
||||||
|
lot_split_merge: PK(id)
|
||||||
|
mtm_component: PK(id)
|
||||||
|
mtm_scenario: PK(id)
|
||||||
|
mtm_snapshot: PK(id)
|
||||||
|
mtm_strategy: PK(id)
|
||||||
|
open_position: PK(id)
|
||||||
|
optional_scenario: PK(id)
|
||||||
|
party_party: PK(id)
|
||||||
|
pnl_bi: PK(id)
|
||||||
|
position_bi: PK(id)
|
||||||
|
price_area: PK(id)
|
||||||
|
price_calendar: PK(id)
|
||||||
|
price_calendar_line: PK(id)
|
||||||
|
price_composite: PK(id)
|
||||||
|
price_composition: PK(id)
|
||||||
|
price_cron: PK(id)
|
||||||
|
price_fixtype: PK(id)
|
||||||
|
price_matrix: PK(id)
|
||||||
|
price_matrix_line: PK(id)
|
||||||
|
price_price: PK(id)
|
||||||
|
price_price_value: PK(id)
|
||||||
|
price_product: PK(id)
|
||||||
|
pricing_component: PK(id)
|
||||||
|
pricing_estimated: PK(id)
|
||||||
|
pricing_period: PK(id)
|
||||||
|
pricing_pricing: PK(id)
|
||||||
|
pricing_summary: PK(id)
|
||||||
|
pricing_trigger: PK(id)
|
||||||
|
product_product: PK(id)
|
||||||
|
product_template: PK(id)
|
||||||
|
purchase_association: PK(id)
|
||||||
|
purchase_certification: PK(id)
|
||||||
|
purchase_component: PK(id)
|
||||||
|
purchase_crop: PK(id)
|
||||||
|
purchase_derivative: PK(id)
|
||||||
|
purchase_estimated: PK(id)
|
||||||
|
purchase_fee: PK(id)
|
||||||
|
purchase_fee_lots: PK(id)
|
||||||
|
purchase_line: PK(id)
|
||||||
|
purchase_lot: PK(id)
|
||||||
|
purchase_lot_qt: PK(id)
|
||||||
|
purchase_period: PK(id)
|
||||||
|
purchase_pricing: PK(id)
|
||||||
|
purchase_purchase: PK(id)
|
||||||
|
purchase_qt_type: PK(id)
|
||||||
|
purchase_strategy: PK(id)
|
||||||
|
purchase_trade_payment_term_component: PK(id)
|
||||||
|
purchase_trigger: PK(id)
|
||||||
|
purchase_valuation: PK(id)
|
||||||
|
purchase_weight_basis: PK(id)
|
||||||
|
risk_perf: PK(id)
|
||||||
|
risk_position: PK(id)
|
||||||
|
risk_position_var: PK(id)
|
||||||
|
risk_var: PK(id)
|
||||||
|
risk_var_line: PK(id)
|
||||||
|
risk_var_values: PK(id)
|
||||||
|
sale_derivative: PK(id)
|
||||||
|
sale_fee: PK(id)
|
||||||
|
sale_invoice_line: PK(id)
|
||||||
|
sale_line: PK(id)
|
||||||
|
sale_opportunity: PK(id)
|
||||||
|
sale_opportunity_line: PK(id)
|
||||||
|
sale_sale: PK(id)
|
||||||
|
sale_strategy: PK(id)
|
||||||
|
sale_valuation: PK(id)
|
||||||
|
shipment_wr: PK(id)
|
||||||
|
stock_location: PK(id)
|
||||||
|
stock_move: PK(id)
|
||||||
|
stock_shipment_drop: PK(id)
|
||||||
|
stock_shipment_in: PK(id)
|
||||||
|
stock_shipment_in_return: PK(id)
|
||||||
|
stock_shipment_out: PK(id)
|
||||||
|
stock_shipment_out_return: PK(id)
|
||||||
|
trade_vessel: PK(id)
|
||||||
|
valuation_valuation: PK(id)
|
||||||
|
valuation_valuation_line: PK(id)
|
||||||
|
|
||||||
|
=== FOREIGN KEY RELATIONSHIPS ===
|
||||||
|
account_account.second_currency -> currency_currency.id [account_account_second_currency_fkey]
|
||||||
|
account_invoice.agent -> commission_agent.id [account_invoice_agent_fkey]
|
||||||
|
account_invoice.currency -> currency_currency.id [account_invoice_currency_fkey]
|
||||||
|
account_invoice.party -> party_party.id [account_invoice_party_fkey]
|
||||||
|
account_invoice_alternative_payee.party -> party_party.id [account_invoice_alternative_payee_party_fkey]
|
||||||
|
account_invoice_line.currency -> currency_currency.id [account_invoice_line_currency_fkey]
|
||||||
|
account_invoice_line.fee -> fee_fee.id [account_invoice_line_fee_fkey]
|
||||||
|
account_invoice_line.lot -> lot_lot.id [account_invoice_line_lot_fkey]
|
||||||
|
account_invoice_line.party -> party_party.id [account_invoice_line_party_fkey]
|
||||||
|
account_invoice_line.principal -> commission_agent.id [account_invoice_line_principal_fkey]
|
||||||
|
account_invoice_line.product -> product_product.id [account_invoice_line_product_fkey]
|
||||||
|
account_invoice_line-stock_move.stock_move -> stock_move.id [account_invoice_line-stock_move_stock_move_fkey]
|
||||||
|
account_invoice_payment_term_line.currency -> currency_currency.id [account_invoice_payment_term_line_currency_fkey]
|
||||||
|
account_landed_cost-product_product.product -> product_product.id [account_landed_cost-product_product_product_fkey]
|
||||||
|
account_landed_cost-stock_shipment_in.shipment -> stock_shipment_in.id [account_landed_cost-stock_shipment_in_shipment_fkey]
|
||||||
|
account_move_line.fee -> fee_fee.id [account_move_line_fee_fkey]
|
||||||
|
account_move_line.lot -> lot_lot.id [account_move_line_lot_fkey]
|
||||||
|
account_move_line.party -> party_party.id [account_move_line_party_fkey]
|
||||||
|
account_move_line.second_currency -> currency_currency.id [account_move_line_second_currency_fkey]
|
||||||
|
account_payment.party -> party_party.id [account_payment_party_fkey]
|
||||||
|
account_payment_journal.currency -> currency_currency.id [account_payment_journal_currency_fkey]
|
||||||
|
account_shipment_cost-stock_shipment_out.shipment -> stock_shipment_out.id [account_shipment_cost-stock_shipment_out_shipment_fkey]
|
||||||
|
account_shipment_cost-stock_shipment_out_return.shipment -> stock_shipment_out_return.id [account_shipment_cost-stock_shipment_out_return_shipment_fkey]
|
||||||
|
analytic_account_rule.party -> party_party.id [analytic_account_rule_party_fkey]
|
||||||
|
analytic_account_rule.product -> product_product.id [analytic_account_rule_product_fkey]
|
||||||
|
analytic_dimension_assignment.purchase -> purchase_purchase.id [analytic_dimension_assignment_purchase_fkey]
|
||||||
|
analytic_dimension_assignment.sale -> sale_sale.id [analytic_dimension_assignment_sale_fkey]
|
||||||
|
bank.party -> party_party.id [bank_party_fkey]
|
||||||
|
bank_account.currency -> currency_currency.id [bank_account_currency_fkey]
|
||||||
|
bank_account-party_party.owner -> party_party.id [bank_account-party_party_owner_fkey]
|
||||||
|
carrier.carrier_product -> product_product.id [carrier_carrier_product_fkey]
|
||||||
|
carrier.party -> party_party.id [carrier_party_fkey]
|
||||||
|
commission.agent -> commission_agent.id [commission_agent_fkey]
|
||||||
|
commission.invoice_line -> account_invoice_line.id [commission_invoice_line_fkey]
|
||||||
|
commission.product -> product_product.id [commission_product_fkey]
|
||||||
|
commission_agent.company -> company_company.id [commission_agent_company_fkey]
|
||||||
|
commission_agent.currency -> currency_currency.id [commission_agent_currency_fkey]
|
||||||
|
commission_agent.party -> party_party.id [commission_agent_party_fkey]
|
||||||
|
commission_agent.plan -> commission_plan.id [commission_agent_plan_fkey]
|
||||||
|
commission_agent_selection.agent -> commission_agent.id [commission_agent_selection_agent_fkey]
|
||||||
|
commission_agent_selection.party -> party_party.id [commission_agent_selection_party_fkey]
|
||||||
|
commission_plan.commission_product -> product_product.id [commission_plan_commission_product_fkey]
|
||||||
|
commission_plan_line.category -> product_category.id [commission_plan_line_category_fkey]
|
||||||
|
commission_plan_line.plan -> commission_plan.id [commission_plan_line_plan_fkey]
|
||||||
|
commission_plan_line.product -> product_product.id [commission_plan_line_product_fkey]
|
||||||
|
company_company.currency -> currency_currency.id [company_company_currency_fkey]
|
||||||
|
company_company.party -> party_party.id [company_company_party_fkey]
|
||||||
|
company_employee.party -> party_party.id [company_employee_party_fkey]
|
||||||
|
contract_document_type.lc_in -> lc_letter_incoming.id [contract_document_type_lc_in_fkey]
|
||||||
|
contract_document_type.lc_out -> lc_letter_outgoing.id [contract_document_type_lc_out_fkey]
|
||||||
|
contract_document_type.purchase -> purchase_purchase.id [contract_document_type_purchase_fkey]
|
||||||
|
contract_document_type.sale -> sale_sale.id [contract_document_type_sale_fkey]
|
||||||
|
currency_cron.currency -> currency_currency.id [currency_cron_currency_fkey]
|
||||||
|
currency_cron-currency_currency.currency -> currency_currency.id [currency_cron-currency_currency_currency_fkey]
|
||||||
|
currency_currency_rate.currency -> currency_currency.id [currency_currency_rate_currency_fkey]
|
||||||
|
currency_linked.currency -> currency_currency.id [currency_linked_currency_fkey]
|
||||||
|
derivative_derivative.line -> purchase_line.id [derivative_derivative_line_fkey]
|
||||||
|
derivative_derivative.party -> party_party.id [derivative_derivative_party_fkey]
|
||||||
|
derivative_derivative.price_index -> price_price.id [derivative_derivative_price_index_fkey]
|
||||||
|
derivative_derivative.product -> product_product.id [derivative_derivative_product_fkey]
|
||||||
|
derivative_derivative.purchase -> purchase_purchase.id [derivative_derivative_purchase_fkey]
|
||||||
|
derivative_derivative.sale -> sale_sale.id [derivative_derivative_sale_fkey]
|
||||||
|
derivative_derivative.sale_line -> sale_line.id [derivative_derivative_sale_line_fkey]
|
||||||
|
derivative_match.long_position -> derivative_derivative.id [derivative_match_long_position_fkey]
|
||||||
|
derivative_match.short_position -> derivative_derivative.id [derivative_match_short_position_fkey]
|
||||||
|
document_incoming_configuration.default_supplier -> party_party.id [document_incoming_configuration_default_supplier_fkey]
|
||||||
|
fee_fee.currency -> currency_currency.id [fee_fee_currency_fkey]
|
||||||
|
fee_fee.line -> purchase_line.id [fee_fee_line_fkey]
|
||||||
|
fee_fee.product -> product_product.id [fee_fee_product_fkey]
|
||||||
|
fee_fee.purchase -> purchase_purchase.id [fee_fee_purchase_fkey]
|
||||||
|
fee_fee.qt_state -> lot_qt_type.id [fee_fee_qt_state_fkey]
|
||||||
|
fee_fee.sale_line -> sale_line.id [fee_fee_sale_line_fkey]
|
||||||
|
fee_fee.shipment_in -> stock_shipment_in.id [fee_fee_shipment_in_fkey]
|
||||||
|
fee_fee.shipment_internal -> stock_shipment_internal.id [fee_fee_shipment_internal_fkey]
|
||||||
|
fee_fee.shipment_out -> stock_shipment_out.id [fee_fee_shipment_out_fkey]
|
||||||
|
fee_fee.supplier -> party_party.id [fee_fee_supplier_fkey]
|
||||||
|
fee_fee.unit -> product_uom.id [fee_fee_unit_fkey]
|
||||||
|
fee_lots.fee -> fee_fee.id [fee_lots_fee_fkey]
|
||||||
|
fee_lots.line -> purchase_line.id [fee_lots_line_fkey]
|
||||||
|
fee_lots.lot -> lot_lot.id [fee_lots_lot_fkey]
|
||||||
|
fee_lots.sale_line -> sale_line.id [fee_lots_sale_line_fkey]
|
||||||
|
forex_cover_fees.currency -> currency_currency.id [forex_cover_fees_currency_fkey]
|
||||||
|
forex_cover_fees.forex -> forex_forex.id [forex_cover_fees_forex_fkey]
|
||||||
|
forex_cover_physical_contract.contract -> purchase_purchase.id [forex_cover_physical_contract_contract_fkey]
|
||||||
|
forex_cover_physical_contract.forex -> forex_forex.id [forex_cover_physical_contract_forex_fkey]
|
||||||
|
forex_cover_physical_contract.unit -> product_uom.id [forex_cover_physical_contract_unit_fkey]
|
||||||
|
forex_cover_physical_sale.contract -> sale_sale.id [forex_cover_physical_sale_contract_fkey]
|
||||||
|
forex_cover_physical_sale.forex -> forex_forex.id [forex_cover_physical_sale_forex_fkey]
|
||||||
|
forex_cover_physical_sale.unit -> product_uom.id [forex_cover_physical_sale_unit_fkey]
|
||||||
|
forex_forex.bank -> bank.id [forex_forex_bank_fkey]
|
||||||
|
forex_forex.buy_currency -> currency_currency.id [forex_forex_buy_currency_fkey]
|
||||||
|
forex_forex.company -> company_company.id [forex_forex_company_fkey]
|
||||||
|
forex_forex.for_currency -> currency_currency.id [forex_forex_for_currency_fkey]
|
||||||
|
forex_forex.invoice_line -> account_invoice_line.id [forex_forex_invoice_line_fkey]
|
||||||
|
forex_forex.move -> account_move.id [forex_forex_move_fkey]
|
||||||
|
forex_forex.reason -> forex_category.id [forex_forex_reason_fkey]
|
||||||
|
lc_discrepancy.lc -> lc_letter_incoming.id [lc_discrepancy_lc_fkey]
|
||||||
|
lc_document_prepared.lc -> lc_letter_incoming.id [lc_document_prepared_lc_fkey]
|
||||||
|
lc_document_received.lc -> lc_letter_outgoing.id [lc_document_received_lc_fkey]
|
||||||
|
lc_letter-document_type.lc_in -> lc_letter_incoming.id [lc_letter-document_type_lc_in_fkey]
|
||||||
|
lc_letter-document_type.lc_out -> lc_letter_outgoing.id [lc_letter-document_type_lc_out_fkey]
|
||||||
|
lc_letter-document_type.purchase -> purchase_purchase.id [lc_letter-document_type_purchase_fkey]
|
||||||
|
lc_letter-document_type.sale -> sale_sale.id [lc_letter-document_type_sale_fkey]
|
||||||
|
lc_letter_incoming.advising_bank -> party_party.id [lc_letter_incoming_advising_bank_fkey]
|
||||||
|
lc_letter_incoming.applicant -> party_party.id [lc_letter_incoming_applicant_fkey]
|
||||||
|
lc_letter_incoming.beneficiary -> party_party.id [lc_letter_incoming_beneficiary_fkey]
|
||||||
|
lc_letter_incoming.company -> company_company.id [lc_letter_incoming_company_fkey]
|
||||||
|
lc_letter_incoming.confirming_bank -> party_party.id [lc_letter_incoming_confirming_bank_fkey]
|
||||||
|
lc_letter_incoming.currency -> currency_currency.id [lc_letter_incoming_currency_fkey]
|
||||||
|
lc_letter_incoming.final_destination -> stock_location.id [lc_letter_incoming_final_destination_fkey]
|
||||||
|
lc_letter_incoming.incoterm -> incoterm_incoterm.id [lc_letter_incoming_incoterm_fkey]
|
||||||
|
lc_letter_incoming.issuing_bank -> party_party.id [lc_letter_incoming_issuing_bank_fkey]
|
||||||
|
lc_letter_incoming.port_of_discharge -> stock_location.id [lc_letter_incoming_port_of_discharge_fkey]
|
||||||
|
lc_letter_incoming.port_of_loading -> stock_location.id [lc_letter_incoming_port_of_loading_fkey]
|
||||||
|
lc_letter_incoming.presentation_bank -> party_party.id [lc_letter_incoming_presentation_bank_fkey]
|
||||||
|
lc_letter_incoming.purchase -> purchase_purchase.id [lc_letter_incoming_purchase_fkey]
|
||||||
|
lc_letter_incoming.receiving_bank -> party_party.id [lc_letter_incoming_receiving_bank_fkey]
|
||||||
|
lc_letter_incoming.reimbursing_bank -> party_party.id [lc_letter_incoming_reimbursing_bank_fkey]
|
||||||
|
lc_letter_incoming.sale -> sale_sale.id [lc_letter_incoming_sale_fkey]
|
||||||
|
lc_letter_incoming.swift_file -> document_incoming.id [lc_letter_incoming_swift_file_fkey]
|
||||||
|
lc_letter_outgoing.advising_bank -> party_party.id [lc_letter_outgoing_advising_bank_fkey]
|
||||||
|
lc_letter_outgoing.applicant -> party_party.id [lc_letter_outgoing_applicant_fkey]
|
||||||
|
lc_letter_outgoing.beneficiary -> party_party.id [lc_letter_outgoing_beneficiary_fkey]
|
||||||
|
lc_letter_outgoing.company -> company_company.id [lc_letter_outgoing_company_fkey]
|
||||||
|
lc_letter_outgoing.confirming_bank -> party_party.id [lc_letter_outgoing_confirming_bank_fkey]
|
||||||
|
lc_letter_outgoing.currency -> currency_currency.id [lc_letter_outgoing_currency_fkey]
|
||||||
|
lc_letter_outgoing.final_destination -> stock_location.id [lc_letter_outgoing_final_destination_fkey]
|
||||||
|
lc_letter_outgoing.incoterm -> incoterm_incoterm.id [lc_letter_outgoing_incoterm_fkey]
|
||||||
|
lc_letter_outgoing.issuing_bank -> party_party.id [lc_letter_outgoing_issuing_bank_fkey]
|
||||||
|
lc_letter_outgoing.port_of_discharge -> stock_location.id [lc_letter_outgoing_port_of_discharge_fkey]
|
||||||
|
lc_letter_outgoing.port_of_loading -> stock_location.id [lc_letter_outgoing_port_of_loading_fkey]
|
||||||
|
lc_letter_outgoing.purchase -> purchase_purchase.id [lc_letter_outgoing_purchase_fkey]
|
||||||
|
lc_letter_outgoing.reimbursing_bank -> party_party.id [lc_letter_outgoing_reimbursing_bank_fkey]
|
||||||
|
lc_letter_outgoing.sale -> sale_sale.id [lc_letter_outgoing_sale_fkey]
|
||||||
|
lc_letter_outgoing.swift_file -> document_incoming.id [lc_letter_outgoing_swift_file_fkey]
|
||||||
|
lc_template-product.product -> product_product.id [lc_template-product_product_fkey]
|
||||||
|
lot_accounting.lot -> lot_lot.id [lot_accounting_lot_fkey]
|
||||||
|
lot_fcr.lot_counterparty -> party_party.id [lot_fcr_lot_counterparty_fkey]
|
||||||
|
lot_fcr.lot_linked -> lot_lot.id [lot_fcr_lot_linked_fkey]
|
||||||
|
lot_fcr.lot_origin -> country_country.id [lot_fcr_lot_origin_fkey]
|
||||||
|
lot_fcr.lot_product -> product_product.id [lot_fcr_lot_product_fkey]
|
||||||
|
lot_fcr.lot_unit -> product_uom.id [lot_fcr_lot_unit_fkey]
|
||||||
|
lot_fcr.lot_unit_line -> product_uom.id [lot_fcr_lot_unit_line_fkey]
|
||||||
|
lot_lot.dashboard -> purchase_dashboard.id [lot_lot_dashboard_fkey]
|
||||||
|
lot_lot.invoice_line -> account_invoice_line.id [lot_lot_invoice_line_fkey]
|
||||||
|
lot_lot.invoice_line_prov -> account_invoice_line.id [lot_lot_invoice_line_prov_fkey]
|
||||||
|
lot_lot.line -> purchase_line.id [lot_lot_line_fkey]
|
||||||
|
lot_lot.lot_himself -> lot_lot.id [lot_lot_lot_himself_fkey]
|
||||||
|
lot_lot.lot_parent -> lot_lot.id [lot_lot_lot_parent_fkey]
|
||||||
|
lot_lot.lot_product -> product_product.id [lot_lot_lot_product_fkey]
|
||||||
|
lot_lot.lot_shipment -> stock_shipment_in.id [lot_lot_lot_shipment_fkey]
|
||||||
|
lot_lot.lot_shipment_in -> stock_shipment_in.id [lot_lot_lot_shipment_in_fkey]
|
||||||
|
lot_lot.lot_shipment_internal -> stock_shipment_internal.id [lot_lot_lot_shipment_internal_fkey]
|
||||||
|
lot_lot.lot_shipment_out -> stock_shipment_out.id [lot_lot_lot_shipment_out_fkey]
|
||||||
|
lot_lot.lot_state -> lot_qt_type.id [lot_lot_lot_state_fkey]
|
||||||
|
lot_lot.lot_unit -> product_uom.id [lot_lot_lot_unit_fkey]
|
||||||
|
lot_lot.lot_unit_line -> product_uom.id [lot_lot_lot_unit_line_fkey]
|
||||||
|
lot_lot.move -> stock_move.id [lot_lot_move_fkey]
|
||||||
|
lot_lot.sale_invoice_line -> account_invoice_line.id [lot_lot_sale_invoice_line_fkey]
|
||||||
|
lot_lot.sale_invoice_line_prov -> account_invoice_line.id [lot_lot_sale_invoice_line_prov_fkey]
|
||||||
|
lot_lot.sale_line -> sale_line.id [lot_lot_sale_line_fkey]
|
||||||
|
lot_move.lot -> lot_lot.id [lot_move_lot_fkey]
|
||||||
|
lot_move.move -> stock_move.id [lot_move_move_fkey]
|
||||||
|
lot_qt.lot -> lot_lot.id [lot_qt_lot_fkey]
|
||||||
|
lot_qt.lot_move -> stock_move.id [lot_qt_lot_move_fkey]
|
||||||
|
lot_qt.lot_p -> lot_lot.id [lot_qt_lot_p_fkey]
|
||||||
|
lot_qt.lot_s -> lot_lot.id [lot_qt_lot_s_fkey]
|
||||||
|
lot_qt.lot_shipment -> stock_shipment_in.id [lot_qt_lot_shipment_fkey]
|
||||||
|
lot_qt.lot_shipment_in -> stock_shipment_in.id [lot_qt_lot_shipment_in_fkey]
|
||||||
|
lot_qt.lot_shipment_internal -> stock_shipment_internal.id [lot_qt_lot_shipment_internal_fkey]
|
||||||
|
lot_qt.lot_shipment_out -> stock_shipment_out.id [lot_qt_lot_shipment_out_fkey]
|
||||||
|
lot_qt.lot_unit -> product_uom.id [lot_qt_lot_unit_fkey]
|
||||||
|
lot_qt.quantity_type -> lot_qt_type.id [lot_qt_quantity_type_fkey]
|
||||||
|
lot_qt_hist.lot -> lot_lot.id [lot_qt_hist_lot_fkey]
|
||||||
|
lot_qt_hist.quantity_type -> lot_qt_type.id [lot_qt_hist_quantity_type_fkey]
|
||||||
|
lot_split_merge.reversed_by -> lot_split_merge.id [lot_split_merge_reversed_by_fkey]
|
||||||
|
lot_split_merge.source_lot -> lot_lot.id [lot_split_merge_source_lot_fkey]
|
||||||
|
lot_split_merge.target_lot -> lot_lot.id [lot_split_merge_target_lot_fkey]
|
||||||
|
mtm_component.currency -> currency_currency.id [mtm_component_currency_fkey]
|
||||||
|
mtm_component.fix_type -> price_fixtype.id [mtm_component_fix_type_fkey]
|
||||||
|
mtm_component.line -> purchase_line.id [mtm_component_line_fkey]
|
||||||
|
mtm_component.price_index -> price_price.id [mtm_component_price_index_fkey]
|
||||||
|
mtm_component.price_matrix -> price_matrix.id [mtm_component_price_matrix_fkey]
|
||||||
|
mtm_component.sale_line -> sale_line.id [mtm_component_sale_line_fkey]
|
||||||
|
mtm_component.strategy -> mtm_strategy.id [mtm_component_strategy_fkey]
|
||||||
|
mtm_scenario.calendar -> price_calendar.id [mtm_scenario_calendar_fkey]
|
||||||
|
mtm_snapshot.currency -> currency_currency.id [mtm_snapshot_currency_fkey]
|
||||||
|
mtm_snapshot.strategy -> mtm_strategy.id [mtm_snapshot_strategy_fkey]
|
||||||
|
mtm_strategy.currency -> currency_currency.id [mtm_strategy_currency_fkey]
|
||||||
|
mtm_strategy.scenario -> mtm_scenario.id [mtm_strategy_scenario_fkey]
|
||||||
|
open_position.client -> party_party.id [open_position_client_fkey]
|
||||||
|
open_position.currency -> currency_currency.id [open_position_currency_fkey]
|
||||||
|
open_position.curve -> price_price.id [open_position_curve_fkey]
|
||||||
|
open_position.line -> purchase_line.id [open_position_line_fkey]
|
||||||
|
open_position.product -> product_product.id [open_position_product_fkey]
|
||||||
|
open_position.purchase -> purchase_purchase.id [open_position_purchase_fkey]
|
||||||
|
open_position.sale -> sale_sale.id [open_position_sale_fkey]
|
||||||
|
open_position.sale_line -> sale_line.id [open_position_sale_line_fkey]
|
||||||
|
open_position.supplier -> party_party.id [open_position_supplier_fkey]
|
||||||
|
open_position.uom -> product_uom.id [open_position_uom_fkey]
|
||||||
|
optional_scenario.from_location -> stock_location.id [optional_scenario_from_location_fkey]
|
||||||
|
optional_scenario.incoterm -> incoterm_incoterm.id [optional_scenario_incoterm_fkey]
|
||||||
|
optional_scenario.line -> purchase_line.id [optional_scenario_line_fkey]
|
||||||
|
optional_scenario.to_location -> stock_location.id [optional_scenario_to_location_fkey]
|
||||||
|
party_acceptable_currency.currency -> currency_currency.id [party_acceptable_currency_currency_fkey]
|
||||||
|
party_acceptable_currency.party -> party_party.id [party_acceptable_currency_party_fkey]
|
||||||
|
party_address.party -> party_party.id [party_address_party_fkey]
|
||||||
|
party_contact_mechanism.party -> party_party.id [party_contact_mechanism_party_fkey]
|
||||||
|
party_execution.party -> party_party.id [party_execution_party_fkey]
|
||||||
|
party_execution_place.currency -> currency_currency.id [party_execution_place_currency_fkey]
|
||||||
|
party_execution_place.location -> stock_location.id [party_execution_place_location_fkey]
|
||||||
|
party_execution_sla.party -> party_party.id [party_execution_sla_party_fkey]
|
||||||
|
party_execution_sla.product -> product_product.id [party_execution_sla_product_fkey]
|
||||||
|
party_identifier.party -> party_party.id [party_identifier_party_fkey]
|
||||||
|
party_incoterm.party -> party_party.id [party_incoterm_party_fkey]
|
||||||
|
party_insurance_limit.currency -> currency_currency.id [party_insurance_limit_currency_fkey]
|
||||||
|
party_insurance_limit.party -> party_party.id [party_insurance_limit_party_fkey]
|
||||||
|
party_internal_limit.currency -> currency_currency.id [party_internal_limit_currency_fkey]
|
||||||
|
party_internal_limit.party -> party_party.id [party_internal_limit_party_fkey]
|
||||||
|
party_party.association -> purchase_association.id [party_party_association_fkey]
|
||||||
|
party_party.credit_currency -> currency_currency.id [party_party_credit_currency_fkey]
|
||||||
|
party_party.replaced_by -> party_party.id [party_party_replaced_by_fkey]
|
||||||
|
party_party.wb -> purchase_weight_basis.id [party_party_wb_fkey]
|
||||||
|
party_party-delivered_to-stock_location.location -> stock_location.id [party_party-delivered_to-stock_location_location_fkey]
|
||||||
|
party_party-delivered_to-stock_location.party -> party_party.id [party_party-delivered_to-stock_location_party_fkey]
|
||||||
|
party_party-party_category.party -> party_party.id [party_party-party_category_party_fkey]
|
||||||
|
party_party_account.party -> party_party.id [party_party_account_party_fkey]
|
||||||
|
party_party_customer_code.party -> party_party.id [party_party_customer_code_party_fkey]
|
||||||
|
party_party_customer_currency.customer_currency -> currency_currency.id [party_party_customer_currency_customer_currency_fkey]
|
||||||
|
party_party_customer_currency.party -> party_party.id [party_party_customer_currency_party_fkey]
|
||||||
|
party_party_lang.party -> party_party.id [party_party_lang_party_fkey]
|
||||||
|
party_party_location.customer_location -> stock_location.id [party_party_location_customer_location_fkey]
|
||||||
|
party_party_location.party -> party_party.id [party_party_location_party_fkey]
|
||||||
|
party_party_location.supplier_location -> stock_location.id [party_party_location_supplier_location_fkey]
|
||||||
|
party_party_payment_direct_debit.party -> party_party.id [party_party_payment_direct_debit_party_fkey]
|
||||||
|
party_party_payment_term.party -> party_party.id [party_party_payment_term_party_fkey]
|
||||||
|
party_party_purchase_invoice_line_standalone.party -> party_party.id [party_party_purchase_invoice_line_standalone_party_fkey]
|
||||||
|
party_party_reception_direct_debit.party -> party_party.id [party_party_reception_direct_debit_party_fkey]
|
||||||
|
party_party_sale_method.party -> party_party.id [party_party_sale_method_party_fkey]
|
||||||
|
party_party_supplier_currency.party -> party_party.id [party_party_supplier_currency_party_fkey]
|
||||||
|
party_party_supplier_currency.supplier_currency -> currency_currency.id [party_party_supplier_currency_supplier_currency_fkey]
|
||||||
|
party_party_supplier_lead_time.party -> party_party.id [party_party_supplier_lead_time_party_fkey]
|
||||||
|
party_payment_condition.party -> party_party.id [party_payment_condition_party_fkey]
|
||||||
|
price_calendar_line.calendar -> price_calendar.id [price_calendar_line_calendar_fkey]
|
||||||
|
price_composite.price -> price_price.id [price_composite_price_fkey]
|
||||||
|
price_composite.price_add -> price_price.id [price_composite_price_add_fkey]
|
||||||
|
price_composition.line -> purchase_line.id [price_composition_line_fkey]
|
||||||
|
price_composition.sale_line -> sale_line.id [price_composition_sale_line_fkey]
|
||||||
|
price_matrix.calendar -> price_calendar.id [price_matrix_calendar_fkey]
|
||||||
|
price_matrix.currency -> currency_currency.id [price_matrix_currency_fkey]
|
||||||
|
price_matrix.unit -> product_uom.id [price_matrix_unit_fkey]
|
||||||
|
price_matrix_line.destination -> stock_location.id [price_matrix_line_destination_fkey]
|
||||||
|
price_matrix_line.matrix -> price_matrix.id [price_matrix_line_matrix_fkey]
|
||||||
|
price_matrix_line.origin -> stock_location.id [price_matrix_line_origin_fkey]
|
||||||
|
price_matrix_line.product -> product_product.id [price_matrix_line_product_fkey]
|
||||||
|
price_matrix_line.quality -> product_category.id [price_matrix_line_quality_fkey]
|
||||||
|
price_price.price -> price_price.id [price_price_price_fkey]
|
||||||
|
price_price.price_area -> price_area.id [price_price_price_area_fkey]
|
||||||
|
price_price.price_calendar -> price_calendar.id [price_price_price_calendar_fkey]
|
||||||
|
price_price.price_currency -> currency_currency.id [price_price_price_currency_fkey]
|
||||||
|
price_price.price_period -> product_month.id [price_price_price_period_fkey]
|
||||||
|
price_price.price_type -> price_fixtype.id [price_price_price_type_fkey]
|
||||||
|
price_price.price_unit -> product_uom.id [price_price_price_unit_fkey]
|
||||||
|
price_price_value.price -> price_price.id [price_price_value_price_fkey]
|
||||||
|
price_product.price -> price_price.id [price_product_price_fkey]
|
||||||
|
price_product.product -> product_product.id [price_product_product_fkey]
|
||||||
|
pricing_component.calendar -> price_calendar.id [pricing_component_calendar_fkey]
|
||||||
|
pricing_component.fix_type -> price_fixtype.id [pricing_component_fix_type_fkey]
|
||||||
|
pricing_component.line -> purchase_line.id [pricing_component_line_fkey]
|
||||||
|
pricing_component.price_index -> price_price.id [pricing_component_price_index_fkey]
|
||||||
|
pricing_component.price_matrix -> price_matrix.id [pricing_component_price_matrix_fkey]
|
||||||
|
pricing_component.sale_line -> sale_line.id [pricing_component_sale_line_fkey]
|
||||||
|
pricing_component.strategy -> mtm_strategy.id [pricing_component_strategy_fkey]
|
||||||
|
pricing_estimated.line -> purchase_line.id [pricing_estimated_line_fkey]
|
||||||
|
pricing_estimated.purchase -> purchase_purchase.id [pricing_estimated_purchase_fkey]
|
||||||
|
pricing_estimated.sale_line -> sale_line.id [pricing_estimated_sale_line_fkey]
|
||||||
|
pricing_estimated.shipment_in -> stock_shipment_in.id [pricing_estimated_shipment_in_fkey]
|
||||||
|
pricing_estimated.shipment_internal -> stock_shipment_internal.id [pricing_estimated_shipment_internal_fkey]
|
||||||
|
pricing_estimated.shipment_out -> stock_shipment_out.id [pricing_estimated_shipment_out_fkey]
|
||||||
|
pricing_pricing.line -> purchase_line.id [pricing_pricing_line_fkey]
|
||||||
|
pricing_pricing.price_component -> pricing_component.id [pricing_pricing_price_component_fkey]
|
||||||
|
pricing_pricing.sale_line -> sale_line.id [pricing_pricing_sale_line_fkey]
|
||||||
|
pricing_summary.price_component -> pricing_component.id [pricing_summary_price_component_fkey]
|
||||||
|
pricing_trigger.application_period -> pricing_period.id [pricing_trigger_application_period_fkey]
|
||||||
|
pricing_trigger.component -> pricing_component.id [pricing_trigger_component_fkey]
|
||||||
|
pricing_trigger.pricing_period -> pricing_period.id [pricing_trigger_pricing_period_fkey]
|
||||||
|
product_cost_price.product -> product_product.id [product_cost_price_product_fkey]
|
||||||
|
product_cost_price_method.template -> product_template.id [product_cost_price_method_template_fkey]
|
||||||
|
product_cost_price_revision.product -> product_product.id [product_cost_price_revision_product_fkey]
|
||||||
|
product_cost_price_revision.template -> product_template.id [product_cost_price_revision_template_fkey]
|
||||||
|
product_identifier.product -> product_product.id [product_identifier_product_fkey]
|
||||||
|
product_image.product -> product_product.id [product_image_product_fkey]
|
||||||
|
product_image.template -> product_template.id [product_image_template_fkey]
|
||||||
|
product_lead_time.template -> product_template.id [product_lead_time_template_fkey]
|
||||||
|
product_list_price.template -> product_template.id [product_list_price_template_fkey]
|
||||||
|
product_product.template -> product_template.id [product_product_template_fkey]
|
||||||
|
product_product_month.product -> product_product.id [product_product_month_product_fkey]
|
||||||
|
product_template.account_category -> product_category.id [product_template_account_category_fkey]
|
||||||
|
product_template.attribute_set -> product_attribute_set.id [product_template_attribute_set_fkey]
|
||||||
|
product_template.default_uom -> product_uom.id [product_template_default_uom_fkey]
|
||||||
|
product_template.height_uom -> product_uom.id [product_template_height_uom_fkey]
|
||||||
|
product_template.length_uom -> product_uom.id [product_template_length_uom_fkey]
|
||||||
|
product_template.purchase_uom -> product_uom.id [product_template_purchase_uom_fkey]
|
||||||
|
product_template.sale_uom -> product_uom.id [product_template_sale_uom_fkey]
|
||||||
|
product_template.volume_uom -> product_uom.id [product_template_volume_uom_fkey]
|
||||||
|
product_template.weight_uom -> product_uom.id [product_template_weight_uom_fkey]
|
||||||
|
product_template.width_uom -> product_uom.id [product_template_width_uom_fkey]
|
||||||
|
product_template-commission_agent.agent -> commission_agent.id [product_template-commission_agent_agent_fkey]
|
||||||
|
product_template-commission_agent.template -> product_template.id [product_template-commission_agent_template_fkey]
|
||||||
|
product_template-product_category.template -> product_template.id [product_template-product_category_template_fkey]
|
||||||
|
project_work.party -> party_party.id [project_work_party_fkey]
|
||||||
|
purchase_association.party -> party_party.id [purchase_association_party_fkey]
|
||||||
|
purchase_component.calendar -> price_calendar.id [purchase_component_calendar_fkey]
|
||||||
|
purchase_component.fix_type -> price_fixtype.id [purchase_component_fix_type_fkey]
|
||||||
|
purchase_component.line -> purchase_line.id [purchase_component_line_fkey]
|
||||||
|
purchase_component.price_index -> price_price.id [purchase_component_price_index_fkey]
|
||||||
|
purchase_configuration_purchase_drop_location.purchase_drop_location -> stock_location.id [974e93b742683997ddf146d80a9a19b1a228f47a592b925c7b3ac4b61790141]
|
||||||
|
purchase_derivative.currency -> currency_currency.id [purchase_derivative_currency_fkey]
|
||||||
|
purchase_derivative.line -> purchase_line.id [purchase_derivative_line_fkey]
|
||||||
|
purchase_derivative.party -> party_party.id [purchase_derivative_party_fkey]
|
||||||
|
purchase_derivative.price_index -> price_price.id [purchase_derivative_price_index_fkey]
|
||||||
|
purchase_derivative.product -> product_product.id [purchase_derivative_product_fkey]
|
||||||
|
purchase_derivative.purchase -> purchase_purchase.id [purchase_derivative_purchase_fkey]
|
||||||
|
purchase_derivative.unit -> product_uom.id [purchase_derivative_unit_fkey]
|
||||||
|
purchase_estimated.line -> purchase_line.id [purchase_estimated_line_fkey]
|
||||||
|
purchase_fee.currency -> currency_currency.id [purchase_fee_currency_fkey]
|
||||||
|
purchase_fee.line -> purchase_line.id [purchase_fee_line_fkey]
|
||||||
|
purchase_fee.product -> product_product.id [purchase_fee_product_fkey]
|
||||||
|
purchase_fee.purchase -> purchase_purchase.id [purchase_fee_purchase_fkey]
|
||||||
|
purchase_fee.shipment_in -> stock_shipment_in.id [purchase_fee_shipment_in_fkey]
|
||||||
|
purchase_fee.shipment_internal -> stock_shipment_internal.id [purchase_fee_shipment_internal_fkey]
|
||||||
|
purchase_fee.supplier -> party_party.id [purchase_fee_supplier_fkey]
|
||||||
|
purchase_fee.unit -> product_uom.id [purchase_fee_unit_fkey]
|
||||||
|
purchase_fee_lots.fee -> purchase_fee.id [purchase_fee_lots_fee_fkey]
|
||||||
|
purchase_fee_lots.lot -> lot_lot.id [purchase_fee_lots_lot_fkey]
|
||||||
|
purchase_line.certif -> purchase_certification.id [purchase_line_certif_fkey]
|
||||||
|
purchase_line.company -> company_company.id [purchase_line_company_fkey]
|
||||||
|
purchase_line.currency_ -> currency_currency.id [purchase_line_currency__fkey]
|
||||||
|
purchase_line.del_period -> product_month.id [purchase_line_del_period_fkey]
|
||||||
|
purchase_line.fee_ -> fee_fee.id [purchase_line_fee__fkey]
|
||||||
|
purchase_line.linked_currency -> currency_linked.id [purchase_line_linked_currency_fkey]
|
||||||
|
purchase_line.linked_unit -> product_uom.id [purchase_line_linked_unit_fkey]
|
||||||
|
purchase_line.product -> product_product.id [purchase_line_product_fkey]
|
||||||
|
purchase_line.product_supplier -> purchase_product_supplier.id [purchase_line_product_supplier_fkey]
|
||||||
|
purchase_line.purchase -> purchase_purchase.id [purchase_line_purchase_fkey]
|
||||||
|
purchase_line.purchase_line -> purchase_line.id [purchase_line_purchase_line_fkey]
|
||||||
|
purchase_line.supplier_ -> party_party.id [purchase_line_supplier__fkey]
|
||||||
|
purchase_line.unit -> product_uom.id [purchase_line_unit_fkey]
|
||||||
|
purchase_line-account_tax.line -> purchase_line.id [purchase_line-account_tax_line_fkey]
|
||||||
|
purchase_line-ignored-stock_move.move -> stock_move.id [purchase_line-ignored-stock_move_move_fkey]
|
||||||
|
purchase_line-ignored-stock_move.purchase_line -> purchase_line.id [purchase_line-ignored-stock_move_purchase_line_fkey]
|
||||||
|
purchase_line-recreated-stock_move.move -> stock_move.id [purchase_line-recreated-stock_move_move_fkey]
|
||||||
|
purchase_line-recreated-stock_move.purchase_line -> purchase_line.id [purchase_line-recreated-stock_move_purchase_line_fkey]
|
||||||
|
purchase_lot.line -> purchase_line.id [purchase_lot_line_fkey]
|
||||||
|
purchase_lot.lot_himself -> purchase_lot.id [purchase_lot_lot_himself_fkey]
|
||||||
|
purchase_lot.lot_parent -> purchase_lot.id [purchase_lot_lot_parent_fkey]
|
||||||
|
purchase_lot.lot_product -> product_product.id [purchase_lot_lot_product_fkey]
|
||||||
|
purchase_lot.lot_shipment -> stock_shipment_in.id [purchase_lot_lot_shipment_fkey]
|
||||||
|
purchase_lot.lot_unit -> product_uom.id [purchase_lot_lot_unit_fkey]
|
||||||
|
purchase_lot.sale_line -> sale_line.id [purchase_lot_sale_line_fkey]
|
||||||
|
purchase_lot_qt.lot -> purchase_lot.id [purchase_lot_qt_lot_fkey]
|
||||||
|
purchase_lot_qt.quantity_type -> purchase_qt_type.id [purchase_lot_qt_quantity_type_fkey]
|
||||||
|
purchase_pricing.line -> purchase_line.id [purchase_pricing_line_fkey]
|
||||||
|
purchase_pricing.price_component -> purchase_component.id [purchase_pricing_price_component_fkey]
|
||||||
|
purchase_product_supplier.currency -> currency_currency.id [purchase_product_supplier_currency_fkey]
|
||||||
|
purchase_product_supplier.party -> party_party.id [purchase_product_supplier_party_fkey]
|
||||||
|
purchase_product_supplier.product -> product_product.id [purchase_product_supplier_product_fkey]
|
||||||
|
purchase_product_supplier.template -> product_template.id [purchase_product_supplier_template_fkey]
|
||||||
|
purchase_purchase.association -> purchase_association.id [purchase_purchase_association_fkey]
|
||||||
|
purchase_purchase.broker -> party_party.id [purchase_purchase_broker_fkey]
|
||||||
|
purchase_purchase.btb -> back_to_back.id [purchase_purchase_btb_fkey]
|
||||||
|
purchase_purchase.certif -> purchase_certification.id [purchase_purchase_certif_fkey]
|
||||||
|
purchase_purchase.company -> company_company.id [purchase_purchase_company_fkey]
|
||||||
|
purchase_purchase.confirmed_by -> company_employee.id [purchase_purchase_confirmed_by_fkey]
|
||||||
|
purchase_purchase.contact -> party_contact_mechanism.id [purchase_purchase_contact_fkey]
|
||||||
|
purchase_purchase.crop -> purchase_crop.id [purchase_purchase_crop_fkey]
|
||||||
|
purchase_purchase.currency -> currency_currency.id [purchase_purchase_currency_fkey]
|
||||||
|
purchase_purchase.customer -> party_party.id [purchase_purchase_customer_fkey]
|
||||||
|
purchase_purchase.delivery_address -> party_address.id [purchase_purchase_delivery_address_fkey]
|
||||||
|
purchase_purchase.doc_template -> doc_template.id [purchase_purchase_doc_template_fkey]
|
||||||
|
purchase_purchase.drop_location -> stock_location.id [purchase_purchase_drop_location_fkey]
|
||||||
|
purchase_purchase.from_location -> stock_location.id [purchase_purchase_from_location_fkey]
|
||||||
|
purchase_purchase.incoterm -> incoterm_incoterm.id [purchase_purchase_incoterm_fkey]
|
||||||
|
purchase_purchase.incoterm_location -> party_address.id [purchase_purchase_incoterm_location_fkey]
|
||||||
|
purchase_purchase.invoice_address -> party_address.id [purchase_purchase_invoice_address_fkey]
|
||||||
|
purchase_purchase.invoice_party -> party_party.id [purchase_purchase_invoice_party_fkey]
|
||||||
|
purchase_purchase.operator -> party_party.id [purchase_purchase_operator_fkey]
|
||||||
|
purchase_purchase.party -> party_party.id [purchase_purchase_party_fkey]
|
||||||
|
purchase_purchase.payment_term -> account_invoice_payment_term.id [purchase_purchase_payment_term_fkey]
|
||||||
|
purchase_purchase.plan -> workflow_plan.id [purchase_purchase_plan_fkey]
|
||||||
|
purchase_purchase.quoted_by -> company_employee.id [purchase_purchase_quoted_by_fkey]
|
||||||
|
purchase_purchase.shipment_in -> stock_shipment_in.id [purchase_purchase_shipment_in_fkey]
|
||||||
|
purchase_purchase.to_location -> stock_location.id [purchase_purchase_to_location_fkey]
|
||||||
|
purchase_purchase.trader -> party_party.id [purchase_purchase_trader_fkey]
|
||||||
|
purchase_purchase.warehouse -> stock_location.id [purchase_purchase_warehouse_fkey]
|
||||||
|
purchase_purchase.wb -> purchase_weight_basis.id [purchase_purchase_wb_fkey]
|
||||||
|
purchase_purchase-ignored-account_invoice.purchase -> purchase_purchase.id [purchase_purchase-ignored-account_invoice_purchase_fkey]
|
||||||
|
purchase_purchase-ignored-account_invoice_line.purchase -> purchase_purchase.id [purchase_purchase-ignored-account_invoice_line_purchase_fkey]
|
||||||
|
purchase_purchase-recreated-account_invoice.purchase -> purchase_purchase.id [purchase_purchase-recreated-account_invoice_purchase_fkey]
|
||||||
|
purchase_request.customer -> party_party.id [purchase_request_customer_fkey]
|
||||||
|
purchase_request.party -> party_party.id [purchase_request_party_fkey]
|
||||||
|
purchase_request.product -> product_product.id [purchase_request_product_fkey]
|
||||||
|
purchase_request.purchase_line -> purchase_line.id [purchase_request_purchase_line_fkey]
|
||||||
|
purchase_request.warehouse -> stock_location.id [purchase_request_warehouse_fkey]
|
||||||
|
purchase_strategy.line -> purchase_line.id [purchase_strategy_line_fkey]
|
||||||
|
purchase_strategy.strategy -> mtm_strategy.id [purchase_strategy_strategy_fkey]
|
||||||
|
purchase_trade_payment_term_component.line -> account_invoice_payment_term_line.id [purchase_trade_payment_term_component_line_fkey]
|
||||||
|
purchase_trade_payment_term_component.payment_term -> account_invoice_payment_term.id [purchase_trade_payment_term_component_payment_term_fkey]
|
||||||
|
purchase_trigger.application_period -> purchase_period.id [purchase_trigger_application_period_fkey]
|
||||||
|
purchase_trigger.component -> purchase_component.id [purchase_trigger_component_fkey]
|
||||||
|
purchase_trigger.pricing_period -> purchase_period.id [purchase_trigger_pricing_period_fkey]
|
||||||
|
purchase_valuation.counterparty -> party_party.id [purchase_valuation_counterparty_fkey]
|
||||||
|
purchase_valuation.currency -> currency_currency.id [purchase_valuation_currency_fkey]
|
||||||
|
purchase_valuation.line -> purchase_line.id [purchase_valuation_line_fkey]
|
||||||
|
purchase_valuation.lot -> lot_lot.id [purchase_valuation_lot_fkey]
|
||||||
|
purchase_valuation.product -> product_product.id [purchase_valuation_product_fkey]
|
||||||
|
purchase_valuation.purchase -> purchase_purchase.id [purchase_valuation_purchase_fkey]
|
||||||
|
purchase_valuation.unit -> product_uom.id [purchase_valuation_unit_fkey]
|
||||||
|
purchase_weight_basis.qt_type -> lot_qt_type.id [purchase_weight_basis_qt_type_fkey]
|
||||||
|
quality_control.product -> product_product.id [quality_control_product_fkey]
|
||||||
|
res_user.warehouse -> stock_location.id [res_user_warehouse_fkey]
|
||||||
|
risk_perf.line -> risk_var_line.id [risk_perf_line_fkey]
|
||||||
|
risk_perf.price_index -> price_price.id [risk_perf_price_index_fkey]
|
||||||
|
risk_position_var.position -> risk_position.id [risk_position_var_position_fkey]
|
||||||
|
risk_position_var.var -> risk_var.id [risk_position_var_var_fkey]
|
||||||
|
risk_var.party -> party_party.id [risk_var_party_fkey]
|
||||||
|
risk_var.product -> product_product.id [risk_var_product_fkey]
|
||||||
|
risk_var_line.curve -> price_price.id [risk_var_line_curve_fkey]
|
||||||
|
risk_var_line.var -> risk_var.id [risk_var_line_var_fkey]
|
||||||
|
risk_var_values.party -> party_party.id [risk_var_values_party_fkey]
|
||||||
|
risk_var_values.product -> product_product.id [risk_var_values_product_fkey]
|
||||||
|
risk_var_values.var -> risk_var.id [risk_var_values_var_fkey]
|
||||||
|
sale_configuration_sale_drop_location.sale_drop_location -> stock_location.id [sale_configuration_sale_drop_location_sale_drop_location_fkey]
|
||||||
|
sale_derivative.party -> party_party.id [sale_derivative_party_fkey]
|
||||||
|
sale_derivative.price_index -> price_price.id [sale_derivative_price_index_fkey]
|
||||||
|
sale_derivative.product -> product_product.id [sale_derivative_product_fkey]
|
||||||
|
sale_derivative.sale -> sale_sale.id [sale_derivative_sale_fkey]
|
||||||
|
sale_derivative.sale_line -> sale_line.id [sale_derivative_sale_line_fkey]
|
||||||
|
sale_fee.currency -> currency_currency.id [sale_fee_currency_fkey]
|
||||||
|
sale_fee.product -> product_product.id [sale_fee_product_fkey]
|
||||||
|
sale_fee.sale -> sale_sale.id [sale_fee_sale_fkey]
|
||||||
|
sale_fee.sale_line -> sale_line.id [sale_fee_sale_line_fkey]
|
||||||
|
sale_fee.shipment_in -> stock_shipment_in.id [sale_fee_shipment_in_fkey]
|
||||||
|
sale_fee.shipment_out -> stock_shipment_out.id [sale_fee_shipment_out_fkey]
|
||||||
|
sale_fee.supplier -> party_party.id [sale_fee_supplier_fkey]
|
||||||
|
sale_fee.unit -> product_uom.id [sale_fee_unit_fkey]
|
||||||
|
sale_invoice_line.invoice_address -> party_address.id [sale_invoice_line_invoice_address_fkey]
|
||||||
|
sale_invoice_line.invoice_party -> party_party.id [sale_invoice_line_invoice_party_fkey]
|
||||||
|
sale_invoice_line.sale_line -> sale_line.id [sale_invoice_line_sale_line_fkey]
|
||||||
|
sale_invoice_line.shipment_address -> party_address.id [sale_invoice_line_shipment_address_fkey]
|
||||||
|
sale_invoice_line.shipment_party -> party_party.id [sale_invoice_line_shipment_party_fkey]
|
||||||
|
sale_line.certif -> purchase_certification.id [sale_line_certif_fkey]
|
||||||
|
sale_line.del_period -> product_month.id [sale_line_del_period_fkey]
|
||||||
|
sale_line.fee_ -> fee_fee.id [sale_line_fee__fkey]
|
||||||
|
sale_line.linked_currency -> currency_linked.id [sale_line_linked_currency_fkey]
|
||||||
|
sale_line.linked_unit -> product_uom.id [sale_line_linked_unit_fkey]
|
||||||
|
sale_line.principal -> commission_agent.id [sale_line_principal_fkey]
|
||||||
|
sale_line.product -> product_product.id [sale_line_product_fkey]
|
||||||
|
sale_line.purchase_request -> purchase_request.id [sale_line_purchase_request_fkey]
|
||||||
|
sale_line.sale -> sale_sale.id [sale_line_sale_fkey]
|
||||||
|
sale_line.unit -> product_uom.id [sale_line_unit_fkey]
|
||||||
|
sale_line-account_tax.line -> sale_line.id [sale_line-account_tax_line_fkey]
|
||||||
|
sale_line-ignored-stock_move.move -> stock_move.id [sale_line-ignored-stock_move_move_fkey]
|
||||||
|
sale_line-ignored-stock_move.sale_line -> sale_line.id [sale_line-ignored-stock_move_sale_line_fkey]
|
||||||
|
sale_line-recreated-stock_move.move -> stock_move.id [sale_line-recreated-stock_move_move_fkey]
|
||||||
|
sale_line-recreated-stock_move.sale_line -> sale_line.id [sale_line-recreated-stock_move_sale_line_fkey]
|
||||||
|
sale_opportunity.address -> party_address.id [sale_opportunity_address_fkey]
|
||||||
|
sale_opportunity.company -> company_company.id [sale_opportunity_company_fkey]
|
||||||
|
sale_opportunity.contact -> party_contact_mechanism.id [sale_opportunity_contact_fkey]
|
||||||
|
sale_opportunity.converted_by -> company_employee.id [sale_opportunity_converted_by_fkey]
|
||||||
|
sale_opportunity.currency -> currency_currency.id [sale_opportunity_currency_fkey]
|
||||||
|
sale_opportunity.employee -> company_employee.id [sale_opportunity_employee_fkey]
|
||||||
|
sale_opportunity.incoterm -> incoterm_incoterm.id [sale_opportunity_incoterm_fkey]
|
||||||
|
sale_opportunity.incoterm_location -> party_address.id [sale_opportunity_incoterm_location_fkey]
|
||||||
|
sale_opportunity.party -> party_party.id [sale_opportunity_party_fkey]
|
||||||
|
sale_opportunity.payment_term -> account_invoice_payment_term.id [sale_opportunity_payment_term_fkey]
|
||||||
|
sale_opportunity_line.opportunity -> sale_opportunity.id [sale_opportunity_line_opportunity_fkey]
|
||||||
|
sale_opportunity_line.product -> product_product.id [sale_opportunity_line_product_fkey]
|
||||||
|
sale_opportunity_line.unit -> product_uom.id [sale_opportunity_line_unit_fkey]
|
||||||
|
sale_sale.agent -> commission_agent.id [sale_sale_agent_fkey]
|
||||||
|
sale_sale.association -> purchase_association.id [sale_sale_association_fkey]
|
||||||
|
sale_sale.broker -> party_party.id [sale_sale_broker_fkey]
|
||||||
|
sale_sale.btb -> back_to_back.id [sale_sale_btb_fkey]
|
||||||
|
sale_sale.carrier -> carrier.id [sale_sale_carrier_fkey]
|
||||||
|
sale_sale.certif -> purchase_certification.id [sale_sale_certif_fkey]
|
||||||
|
sale_sale.company -> company_company.id [sale_sale_company_fkey]
|
||||||
|
sale_sale.confirmed_by -> company_employee.id [sale_sale_confirmed_by_fkey]
|
||||||
|
sale_sale.contact -> party_contact_mechanism.id [sale_sale_contact_fkey]
|
||||||
|
sale_sale.crop -> purchase_crop.id [sale_sale_crop_fkey]
|
||||||
|
sale_sale.currency -> currency_currency.id [sale_sale_currency_fkey]
|
||||||
|
sale_sale.doc_template -> doc_template.id [sale_sale_doc_template_fkey]
|
||||||
|
sale_sale.drop_location -> stock_location.id [sale_sale_drop_location_fkey]
|
||||||
|
sale_sale.from_location -> stock_location.id [sale_sale_from_location_fkey]
|
||||||
|
sale_sale.incoterm -> incoterm_incoterm.id [sale_sale_incoterm_fkey]
|
||||||
|
sale_sale.incoterm_location -> party_address.id [sale_sale_incoterm_location_fkey]
|
||||||
|
sale_sale.invoice_address -> party_address.id [sale_sale_invoice_address_fkey]
|
||||||
|
sale_sale.invoice_party -> party_party.id [sale_sale_invoice_party_fkey]
|
||||||
|
sale_sale.operator -> party_party.id [sale_sale_operator_fkey]
|
||||||
|
sale_sale.party -> party_party.id [sale_sale_party_fkey]
|
||||||
|
sale_sale.payment_term -> account_invoice_payment_term.id [sale_sale_payment_term_fkey]
|
||||||
|
sale_sale.quoted_by -> company_employee.id [sale_sale_quoted_by_fkey]
|
||||||
|
sale_sale.shipment_address -> party_address.id [sale_sale_shipment_address_fkey]
|
||||||
|
sale_sale.shipment_out -> stock_shipment_out.id [sale_sale_shipment_out_fkey]
|
||||||
|
sale_sale.shipment_party -> party_party.id [sale_sale_shipment_party_fkey]
|
||||||
|
sale_sale.to_location -> stock_location.id [sale_sale_to_location_fkey]
|
||||||
|
sale_sale.trader -> party_party.id [sale_sale_trader_fkey]
|
||||||
|
sale_sale.warehouse -> stock_location.id [sale_sale_warehouse_fkey]
|
||||||
|
sale_sale.wb -> purchase_weight_basis.id [sale_sale_wb_fkey]
|
||||||
|
sale_sale.web_shop -> web_shop.id [sale_sale_web_shop_fkey]
|
||||||
|
sale_sale-ignored-account_invoice.sale -> sale_sale.id [sale_sale-ignored-account_invoice_sale_fkey]
|
||||||
|
sale_sale-recreated-account_invoice.sale -> sale_sale.id [sale_sale-recreated-account_invoice_sale_fkey]
|
||||||
|
sale_strategy.sale_line -> sale_line.id [sale_strategy_sale_line_fkey]
|
||||||
|
sale_strategy.strategy -> mtm_strategy.id [sale_strategy_strategy_fkey]
|
||||||
|
sale_valuation.counterparty -> party_party.id [sale_valuation_counterparty_fkey]
|
||||||
|
sale_valuation.currency -> currency_currency.id [sale_valuation_currency_fkey]
|
||||||
|
sale_valuation.product -> product_product.id [sale_valuation_product_fkey]
|
||||||
|
sale_valuation.sale -> sale_sale.id [sale_valuation_sale_fkey]
|
||||||
|
sale_valuation.sale_line -> sale_line.id [sale_valuation_sale_line_fkey]
|
||||||
|
sale_valuation.unit -> product_uom.id [sale_valuation_unit_fkey]
|
||||||
|
shipment_wr.shipment_in -> stock_shipment_in.id [shipment_wr_shipment_in_fkey]
|
||||||
|
shipment_wr.wr -> weight_report.id [shipment_wr_wr_fkey]
|
||||||
|
sof_statement.shipment -> stock_shipment_in.id [sof_statement_shipment_fkey]
|
||||||
|
stock_configuration_location.shipment_internal_transit -> stock_location.id [stock_configuration_location_shipment_internal_transit_fkey]
|
||||||
|
stock_inventory.location -> stock_location.id [stock_inventory_location_fkey]
|
||||||
|
stock_inventory_line.product -> product_product.id [stock_inventory_line_product_fkey]
|
||||||
|
stock_location.address -> party_address.id [stock_location_address_fkey]
|
||||||
|
stock_location.input_location -> stock_location.id [stock_location_input_location_fkey]
|
||||||
|
stock_location.lost_found_location -> stock_location.id [stock_location_lost_found_location_fkey]
|
||||||
|
stock_location.output_location -> stock_location.id [stock_location_output_location_fkey]
|
||||||
|
stock_location.parent -> stock_location.id [stock_location_parent_fkey]
|
||||||
|
stock_location.picking_location -> stock_location.id [stock_location_picking_location_fkey]
|
||||||
|
stock_location.storage_location -> stock_location.id [stock_location_storage_location_fkey]
|
||||||
|
stock_location.supplier_return_location -> stock_location.id [stock_location_supplier_return_location_fkey]
|
||||||
|
stock_location_lead_time.warehouse_from -> stock_location.id [stock_location_lead_time_warehouse_from_fkey]
|
||||||
|
stock_location_lead_time.warehouse_to -> stock_location.id [stock_location_lead_time_warehouse_to_fkey]
|
||||||
|
stock_location_waste.location -> stock_location.id [stock_location_waste_location_fkey]
|
||||||
|
stock_location_waste.warehouse -> stock_location.id [stock_location_waste_warehouse_fkey]
|
||||||
|
stock_move.company -> company_company.id [stock_move_company_fkey]
|
||||||
|
stock_move.currency -> currency_currency.id [stock_move_currency_fkey]
|
||||||
|
stock_move.from_location -> stock_location.id [stock_move_from_location_fkey]
|
||||||
|
stock_move.lot -> lot_lot.id [stock_move_lot_fkey]
|
||||||
|
stock_move.origin_drop -> stock_move.id [stock_move_origin_drop_fkey]
|
||||||
|
stock_move.package -> stock_package.id [stock_move_package_fkey]
|
||||||
|
stock_move.product -> product_product.id [stock_move_product_fkey]
|
||||||
|
stock_move.to_location -> stock_location.id [stock_move_to_location_fkey]
|
||||||
|
stock_move.unit -> product_uom.id [stock_move_unit_fkey]
|
||||||
|
stock_period_cache.location -> stock_location.id [stock_period_cache_location_fkey]
|
||||||
|
stock_period_cache.product -> product_product.id [stock_period_cache_product_fkey]
|
||||||
|
stock_shipment_container.shipment -> stock_shipment_in.id [stock_shipment_container_shipment_fkey]
|
||||||
|
stock_shipment_cost_sale.currency -> currency_currency.id [stock_shipment_cost_sale_currency_fkey]
|
||||||
|
stock_shipment_cost_sale.sale -> sale_sale.id [stock_shipment_cost_sale_sale_fkey]
|
||||||
|
stock_shipment_drop.company -> company_company.id [stock_shipment_drop_company_fkey]
|
||||||
|
stock_shipment_drop.contact_address -> party_address.id [stock_shipment_drop_contact_address_fkey]
|
||||||
|
stock_shipment_drop.customer -> party_party.id [stock_shipment_drop_customer_fkey]
|
||||||
|
stock_shipment_drop.delivery_address -> party_address.id [stock_shipment_drop_delivery_address_fkey]
|
||||||
|
stock_shipment_drop.supplier -> party_party.id [stock_shipment_drop_supplier_fkey]
|
||||||
|
stock_shipment_in.agent -> party_party.id [stock_shipment_in_agent_fkey]
|
||||||
|
stock_shipment_in.carrier -> carrier.id [stock_shipment_in_carrier_fkey]
|
||||||
|
stock_shipment_in.carrier_ -> party_party.id [stock_shipment_in_carrier__fkey]
|
||||||
|
stock_shipment_in.company -> company_company.id [stock_shipment_in_company_fkey]
|
||||||
|
stock_shipment_in.contact_address -> party_address.id [stock_shipment_in_contact_address_fkey]
|
||||||
|
stock_shipment_in.controller -> party_party.id [stock_shipment_in_controller_fkey]
|
||||||
|
stock_shipment_in.cost_currency -> currency_currency.id [stock_shipment_in_cost_currency_fkey]
|
||||||
|
stock_shipment_in.dashboard -> purchase_dashboard.id [stock_shipment_in_dashboard_fkey]
|
||||||
|
stock_shipment_in.done_by -> company_employee.id [stock_shipment_in_done_by_fkey]
|
||||||
|
stock_shipment_in.from_location -> stock_location.id [stock_shipment_in_from_location_fkey]
|
||||||
|
stock_shipment_in.himself -> stock_shipment_in.id [stock_shipment_in_himself_fkey]
|
||||||
|
stock_shipment_in.incoterm -> incoterm_incoterm.id [stock_shipment_in_incoterm_fkey]
|
||||||
|
stock_shipment_in.incoterm_location -> party_address.id [stock_shipment_in_incoterm_location_fkey]
|
||||||
|
stock_shipment_in.received_by -> company_employee.id [stock_shipment_in_received_by_fkey]
|
||||||
|
stock_shipment_in.started_by -> company_employee.id [stock_shipment_in_started_by_fkey]
|
||||||
|
stock_shipment_in.supplier -> party_party.id [stock_shipment_in_supplier_fkey]
|
||||||
|
stock_shipment_in.to_location -> stock_location.id [stock_shipment_in_to_location_fkey]
|
||||||
|
stock_shipment_in.vessel -> trade_vessel.id [stock_shipment_in_vessel_fkey]
|
||||||
|
stock_shipment_in.vessel_type -> stock_vessel_type.id [stock_shipment_in_vessel_type_fkey]
|
||||||
|
stock_shipment_in.warehouse -> stock_location.id [stock_shipment_in_warehouse_fkey]
|
||||||
|
stock_shipment_in.warehouse_input -> stock_location.id [stock_shipment_in_warehouse_input_fkey]
|
||||||
|
stock_shipment_in.warehouse_storage -> stock_location.id [stock_shipment_in_warehouse_storage_fkey]
|
||||||
|
stock_shipment_in_return.assigned_by -> company_employee.id [stock_shipment_in_return_assigned_by_fkey]
|
||||||
|
stock_shipment_in_return.carrier -> carrier.id [stock_shipment_in_return_carrier_fkey]
|
||||||
|
stock_shipment_in_return.company -> company_company.id [stock_shipment_in_return_company_fkey]
|
||||||
|
stock_shipment_in_return.delivery_address -> party_address.id [stock_shipment_in_return_delivery_address_fkey]
|
||||||
|
stock_shipment_in_return.done_by -> company_employee.id [stock_shipment_in_return_done_by_fkey]
|
||||||
|
stock_shipment_in_return.from_location -> stock_location.id [stock_shipment_in_return_from_location_fkey]
|
||||||
|
stock_shipment_in_return.incoterm -> incoterm_incoterm.id [stock_shipment_in_return_incoterm_fkey]
|
||||||
|
stock_shipment_in_return.incoterm_location -> party_address.id [stock_shipment_in_return_incoterm_location_fkey]
|
||||||
|
stock_shipment_in_return.supplier -> party_party.id [stock_shipment_in_return_supplier_fkey]
|
||||||
|
stock_shipment_in_return.to_location -> stock_location.id [stock_shipment_in_return_to_location_fkey]
|
||||||
|
stock_shipment_internal.from_location -> stock_location.id [stock_shipment_internal_from_location_fkey]
|
||||||
|
stock_shipment_internal.to_location -> stock_location.id [stock_shipment_internal_to_location_fkey]
|
||||||
|
stock_shipment_out.carrier -> carrier.id [stock_shipment_out_carrier_fkey]
|
||||||
|
stock_shipment_out.company -> company_company.id [stock_shipment_out_company_fkey]
|
||||||
|
stock_shipment_out.cost_currency -> currency_currency.id [stock_shipment_out_cost_currency_fkey]
|
||||||
|
stock_shipment_out.cost_invoice_line -> account_invoice_line.id [stock_shipment_out_cost_invoice_line_fkey]
|
||||||
|
stock_shipment_out.cost_sale_currency -> currency_currency.id [stock_shipment_out_cost_sale_currency_fkey]
|
||||||
|
stock_shipment_out.customer -> party_party.id [stock_shipment_out_customer_fkey]
|
||||||
|
stock_shipment_out.delivery_address -> party_address.id [stock_shipment_out_delivery_address_fkey]
|
||||||
|
stock_shipment_out.done_by -> company_employee.id [stock_shipment_out_done_by_fkey]
|
||||||
|
stock_shipment_out.from_location -> stock_location.id [stock_shipment_out_from_location_fkey]
|
||||||
|
stock_shipment_out.incoterm -> incoterm_incoterm.id [stock_shipment_out_incoterm_fkey]
|
||||||
|
stock_shipment_out.incoterm_location -> party_address.id [stock_shipment_out_incoterm_location_fkey]
|
||||||
|
stock_shipment_out.packed_by -> company_employee.id [stock_shipment_out_packed_by_fkey]
|
||||||
|
stock_shipment_out.picked_by -> company_employee.id [stock_shipment_out_picked_by_fkey]
|
||||||
|
stock_shipment_out.to_location -> stock_location.id [stock_shipment_out_to_location_fkey]
|
||||||
|
stock_shipment_out.vessel -> trade_vessel.id [stock_shipment_out_vessel_fkey]
|
||||||
|
stock_shipment_out.warehouse -> stock_location.id [stock_shipment_out_warehouse_fkey]
|
||||||
|
stock_shipment_out.warehouse_output -> stock_location.id [stock_shipment_out_warehouse_output_fkey]
|
||||||
|
stock_shipment_out.warehouse_storage -> stock_location.id [stock_shipment_out_warehouse_storage_fkey]
|
||||||
|
stock_shipment_out_return.carrier -> carrier.id [stock_shipment_out_return_carrier_fkey]
|
||||||
|
stock_shipment_out_return.company -> company_company.id [stock_shipment_out_return_company_fkey]
|
||||||
|
stock_shipment_out_return.contact_address -> party_address.id [stock_shipment_out_return_contact_address_fkey]
|
||||||
|
stock_shipment_out_return.cost_currency -> currency_currency.id [stock_shipment_out_return_cost_currency_fkey]
|
||||||
|
stock_shipment_out_return.customer -> party_party.id [stock_shipment_out_return_customer_fkey]
|
||||||
|
stock_shipment_out_return.done_by -> company_employee.id [stock_shipment_out_return_done_by_fkey]
|
||||||
|
stock_shipment_out_return.incoterm -> incoterm_incoterm.id [stock_shipment_out_return_incoterm_fkey]
|
||||||
|
stock_shipment_out_return.incoterm_location -> party_address.id [stock_shipment_out_return_incoterm_location_fkey]
|
||||||
|
stock_shipment_out_return.received_by -> company_employee.id [stock_shipment_out_return_received_by_fkey]
|
||||||
|
stock_shipment_out_return.warehouse -> stock_location.id [stock_shipment_out_return_warehouse_fkey]
|
||||||
|
stock_shipment_out_return.warehouse_input -> stock_location.id [stock_shipment_out_return_warehouse_input_fkey]
|
||||||
|
stock_shipment_out_return.warehouse_storage -> stock_location.id [stock_shipment_out_return_warehouse_storage_fkey]
|
||||||
|
trade_vessel.vessel_type -> stock_vessel_type.id [trade_vessel_vessel_type_fkey]
|
||||||
|
valuation_valuation.counterparty -> party_party.id [valuation_valuation_counterparty_fkey]
|
||||||
|
valuation_valuation.currency -> currency_currency.id [valuation_valuation_currency_fkey]
|
||||||
|
valuation_valuation.line -> purchase_line.id [valuation_valuation_line_fkey]
|
||||||
|
valuation_valuation.lot -> lot_lot.id [valuation_valuation_lot_fkey]
|
||||||
|
valuation_valuation.product -> product_product.id [valuation_valuation_product_fkey]
|
||||||
|
valuation_valuation.purchase -> purchase_purchase.id [valuation_valuation_purchase_fkey]
|
||||||
|
valuation_valuation.sale -> sale_sale.id [valuation_valuation_sale_fkey]
|
||||||
|
valuation_valuation.sale_line -> sale_line.id [valuation_valuation_sale_line_fkey]
|
||||||
|
valuation_valuation.strategy -> mtm_strategy.id [valuation_valuation_strategy_fkey]
|
||||||
|
valuation_valuation.unit -> product_uom.id [valuation_valuation_unit_fkey]
|
||||||
|
valuation_valuation_line.counterparty -> party_party.id [valuation_valuation_line_counterparty_fkey]
|
||||||
|
valuation_valuation_line.currency -> currency_currency.id [valuation_valuation_line_currency_fkey]
|
||||||
|
valuation_valuation_line.line -> purchase_line.id [valuation_valuation_line_line_fkey]
|
||||||
|
valuation_valuation_line.lot -> lot_lot.id [valuation_valuation_line_lot_fkey]
|
||||||
|
valuation_valuation_line.product -> product_product.id [valuation_valuation_line_product_fkey]
|
||||||
|
valuation_valuation_line.purchase -> purchase_purchase.id [valuation_valuation_line_purchase_fkey]
|
||||||
|
valuation_valuation_line.sale -> sale_sale.id [valuation_valuation_line_sale_fkey]
|
||||||
|
valuation_valuation_line.sale_line -> sale_line.id [valuation_valuation_line_sale_line_fkey]
|
||||||
|
valuation_valuation_line.strategy -> mtm_strategy.id [valuation_valuation_line_strategy_fkey]
|
||||||
|
valuation_valuation_line.unit -> product_uom.id [valuation_valuation_line_unit_fkey]
|
||||||
|
web_shop.currency -> currency_currency.id [web_shop_currency_fkey]
|
||||||
|
web_shop.guest_party -> party_party.id [web_shop_guest_party_fkey]
|
||||||
|
web_shop-product_product.product -> product_product.id [web_shop-product_product_product_fkey]
|
||||||
|
web_shop-stock_location.warehouse -> stock_location.id [web_shop-stock_location_warehouse_fkey]
|
||||||
|
web_user.party -> party_party.id [web_user_party_fkey]
|
||||||
|
web_user-party_party_secondary.party -> party_party.id [web_user-party_party_secondary_party_fkey]
|
||||||
|
weight_report.buyer -> party_party.id [weight_report_buyer_fkey]
|
||||||
|
weight_report.carrier -> party_party.id [weight_report_carrier_fkey]
|
||||||
|
weight_report.port_destination -> stock_location.id [weight_report_port_destination_fkey]
|
||||||
|
weight_report.port_loading -> stock_location.id [weight_report_port_loading_fkey]
|
||||||
|
weight_report.seller -> party_party.id [weight_report_seller_fkey]
|
||||||
|
weight_report.vessel -> trade_vessel.id [weight_report_vessel_fkey]
|
||||||
|
workflow_plan.from_location -> stock_location.id [workflow_plan_from_location_fkey]
|
||||||
|
workflow_plan.purchase -> purchase_purchase.id [workflow_plan_purchase_fkey]
|
||||||
|
workflow_plan.to_location -> stock_location.id [workflow_plan_to_location_fkey]
|
||||||
|
|
||||||
|
=== ROW COUNTS ===
|
||||||
|
back_to_back 0
|
||||||
|
commission 0
|
||||||
|
commission_agent 0
|
||||||
|
commission_plan 2
|
||||||
|
commission_plan_line 1
|
||||||
|
currency_currency 4
|
||||||
|
currency_currency_rate 29
|
||||||
|
curve_perf 695
|
||||||
|
derivative_derivative 5
|
||||||
|
derivative_match 0
|
||||||
|
fee_fee 436
|
||||||
|
fee_lots 493
|
||||||
|
forex_bi 1
|
||||||
|
forex_category 2
|
||||||
|
forex_cover_fees 0
|
||||||
|
forex_cover_physical_contract 0
|
||||||
|
forex_cover_physical_sale 0
|
||||||
|
forex_cron 0
|
||||||
|
forex_forex 0
|
||||||
|
lc_letter_incoming 0
|
||||||
|
lc_letter_outgoing 0
|
||||||
|
lc_mt700 1
|
||||||
|
lot_accounting 1
|
||||||
|
lot_fcr 18
|
||||||
|
lot_lot 512
|
||||||
|
lot_move 92
|
||||||
|
lot_qt 426
|
||||||
|
lot_qt_hist 603
|
||||||
|
lot_qt_type 5
|
||||||
|
lot_split_merge 0
|
||||||
|
mtm_component 6
|
||||||
|
mtm_scenario 2
|
||||||
|
mtm_snapshot 0
|
||||||
|
mtm_strategy 2
|
||||||
|
open_position 145
|
||||||
|
optional_scenario 0
|
||||||
|
party_party 386
|
||||||
|
pnl_bi 1
|
||||||
|
position_bi 1
|
||||||
|
price_area 4
|
||||||
|
price_calendar 4
|
||||||
|
price_calendar_line 36
|
||||||
|
price_composite 0
|
||||||
|
price_composition 0
|
||||||
|
price_cron 0
|
||||||
|
price_fixtype 5
|
||||||
|
price_matrix 1
|
||||||
|
price_matrix_line 2
|
||||||
|
price_price 69
|
||||||
|
price_price_value 3,269
|
||||||
|
price_product 2
|
||||||
|
pricing_component 61
|
||||||
|
pricing_estimated 468
|
||||||
|
pricing_period 3
|
||||||
|
pricing_pricing 5
|
||||||
|
pricing_summary 0
|
||||||
|
pricing_trigger 57
|
||||||
|
product_product 57
|
||||||
|
product_template 57
|
||||||
|
purchase_association 4
|
||||||
|
purchase_certification 2
|
||||||
|
purchase_component 3
|
||||||
|
purchase_crop 6
|
||||||
|
purchase_derivative 6
|
||||||
|
purchase_estimated 7
|
||||||
|
purchase_fee 0
|
||||||
|
purchase_fee_lots 0
|
||||||
|
purchase_line 106
|
||||||
|
purchase_lot 0
|
||||||
|
purchase_lot_qt 0
|
||||||
|
purchase_period 4
|
||||||
|
purchase_pricing 66
|
||||||
|
purchase_purchase 106
|
||||||
|
purchase_qt_type 0
|
||||||
|
purchase_strategy 1
|
||||||
|
purchase_trade_payment_term_component 0
|
||||||
|
purchase_trigger 3
|
||||||
|
purchase_valuation 103
|
||||||
|
purchase_weight_basis 3
|
||||||
|
risk_perf 1,397
|
||||||
|
risk_position 0
|
||||||
|
risk_position_var 0
|
||||||
|
risk_var 1
|
||||||
|
risk_var_line 2
|
||||||
|
risk_var_values 0
|
||||||
|
sale_derivative 0
|
||||||
|
sale_fee 0
|
||||||
|
sale_invoice_line 0
|
||||||
|
sale_line 126
|
||||||
|
sale_opportunity 0
|
||||||
|
sale_opportunity_line 0
|
||||||
|
sale_sale 126
|
||||||
|
sale_strategy 0
|
||||||
|
sale_valuation 0
|
||||||
|
shipment_wr 0
|
||||||
|
stock_location 82
|
||||||
|
stock_move 92
|
||||||
|
stock_shipment_drop 0
|
||||||
|
stock_shipment_in 69
|
||||||
|
stock_shipment_in_return 0
|
||||||
|
stock_shipment_out 0
|
||||||
|
stock_shipment_out_return 0
|
||||||
|
trade_vessel 776
|
||||||
|
valuation_valuation 1,375
|
||||||
|
valuation_valuation_line 865
|
||||||
301
Reference Data/python_project/scripts/import_prices.py
Normal file
301
Reference Data/python_project/scripts/import_prices.py
Normal file
@@ -0,0 +1,301 @@
|
|||||||
|
# Add parent directory to Python path so we can import helpers
|
||||||
|
import sys
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
parent_dir = Path(__file__).parent.parent
|
||||||
|
sys.path.insert(0, str(parent_dir))
|
||||||
|
|
||||||
|
import csv
|
||||||
|
from decimal import Decimal
|
||||||
|
from proteus import Model
|
||||||
|
|
||||||
|
from helpers.config import (
|
||||||
|
PRICES_CSV,
|
||||||
|
connect_to_tryton,
|
||||||
|
DB_CONFIG,
|
||||||
|
)
|
||||||
|
|
||||||
|
from helpers.tryton_helpers import (
|
||||||
|
parse_decimal,
|
||||||
|
parse_date,
|
||||||
|
)
|
||||||
|
|
||||||
|
from helpers.migration_mapping import MigrationMapper
|
||||||
|
|
||||||
|
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
# CSV Configuration
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
CSV_FILE_PATH = PRICES_CSV
|
||||||
|
|
||||||
|
# Set to True to skip records that already exist (same price_index + price_date)
|
||||||
|
SKIP_DUPLICATES = True
|
||||||
|
|
||||||
|
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
# Main import function
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
def import_prices(csv_file):
|
||||||
|
"""Import price index values from CSV file with migration mapping tracking"""
|
||||||
|
|
||||||
|
PriceIndex = Model.get('price.price') # table: price_price
|
||||||
|
PriceRecord = Model.get('price.price_value') # table: price_price_value
|
||||||
|
|
||||||
|
print(f"{'='*70}")
|
||||||
|
print(f"IMPORTING PRICES FROM CSV")
|
||||||
|
print(f"{'='*70}\n")
|
||||||
|
print(f"Reading from: {csv_file}\n")
|
||||||
|
|
||||||
|
imported_count = 0
|
||||||
|
skipped_count = 0
|
||||||
|
error_count = 0
|
||||||
|
errors = []
|
||||||
|
|
||||||
|
# Build lookup: name -> PriceIndex instance (avoid repeated DB calls)
|
||||||
|
print("Loading price indexes...")
|
||||||
|
all_indexes = PriceIndex.find([])
|
||||||
|
index_map = {pi.price_index: pi for pi in all_indexes}
|
||||||
|
print(f" Found {len(index_map)} price indexes in database\n")
|
||||||
|
|
||||||
|
# Collect mappings for batch insert at the end
|
||||||
|
price_mappings = []
|
||||||
|
|
||||||
|
try:
|
||||||
|
with MigrationMapper(DB_CONFIG) as mapper:
|
||||||
|
|
||||||
|
with open(csv_file, 'r', encoding='utf-8-sig') as file:
|
||||||
|
reader = csv.DictReader(file)
|
||||||
|
row_num = 0
|
||||||
|
|
||||||
|
for row in reader:
|
||||||
|
row_num += 1
|
||||||
|
|
||||||
|
# Use source_id from CSV if present (optional column)
|
||||||
|
source_id = row.get('source_id', '').strip()
|
||||||
|
index_name = row.get('price_index', '').strip()
|
||||||
|
|
||||||
|
try:
|
||||||
|
print(f"{'='*70}")
|
||||||
|
print(f"Row {row_num}: {index_name} / {row.get('price_date', '').strip()}")
|
||||||
|
print(f"{'='*70}")
|
||||||
|
|
||||||
|
# -- Skip check via migration mapper ----------------
|
||||||
|
if source_id:
|
||||||
|
existing_tryton_id = mapper.get_tryton_id('price_value', source_id)
|
||||||
|
if existing_tryton_id:
|
||||||
|
print(f" ⏭ Already imported (Source ID: {source_id} -> Tryton ID: {existing_tryton_id})\n")
|
||||||
|
skipped_count += 1
|
||||||
|
continue
|
||||||
|
|
||||||
|
# -- Lookup price index -----------------------------
|
||||||
|
if not index_name:
|
||||||
|
raise ValueError("price_index is empty")
|
||||||
|
|
||||||
|
if index_name not in index_map:
|
||||||
|
raise ValueError(f"price_index '{index_name}' not found in database")
|
||||||
|
|
||||||
|
price_index = index_map[index_name]
|
||||||
|
|
||||||
|
# -- Parse fields -----------------------------------
|
||||||
|
price_date = parse_date(row.get('price_date', ''))
|
||||||
|
high_price = parse_decimal(row.get('high_price', ''), 'high_price')
|
||||||
|
low_price = parse_decimal(row.get('low_price', ''), 'low_price')
|
||||||
|
open_price = parse_decimal(row.get('open_price', ''), 'open_price')
|
||||||
|
price_value = parse_decimal(row.get('price_value', ''), 'price_value')
|
||||||
|
|
||||||
|
if not price_date:
|
||||||
|
raise ValueError(f"Invalid or empty price_date: '{row.get('price_date')}'")
|
||||||
|
|
||||||
|
# -- Duplicate check (index + date) -----------------
|
||||||
|
if SKIP_DUPLICATES:
|
||||||
|
existing = PriceRecord.find([
|
||||||
|
('price', '=', price_index.id),
|
||||||
|
('price_date', '=', price_date),
|
||||||
|
])
|
||||||
|
if existing:
|
||||||
|
print(f" ⏭ Duplicate skipped ({index_name} / {price_date})\n")
|
||||||
|
skipped_count += 1
|
||||||
|
continue
|
||||||
|
|
||||||
|
# -- Create record ----------------------------------
|
||||||
|
print(f" Creating price record...")
|
||||||
|
record = PriceRecord()
|
||||||
|
record.price = price_index
|
||||||
|
record.price_date = price_date
|
||||||
|
record.high_price = high_price
|
||||||
|
record.low_price = low_price
|
||||||
|
record.open_price = open_price
|
||||||
|
record.price_value = price_value
|
||||||
|
record.active = True
|
||||||
|
record.save()
|
||||||
|
|
||||||
|
print(f" ✓ Created (ID: {record.id})")
|
||||||
|
print(f" Index : {index_name}")
|
||||||
|
print(f" Date : {price_date}")
|
||||||
|
print(f" High : {high_price} Low: {low_price} Open: {open_price} Value: {price_value}")
|
||||||
|
|
||||||
|
# -- Save migration mapping -------------------------
|
||||||
|
if source_id:
|
||||||
|
price_mappings.append({
|
||||||
|
'object_type': 'price_value',
|
||||||
|
'source_id': source_id,
|
||||||
|
'tryton_model': 'price.price_value',
|
||||||
|
'tryton_id': record.id,
|
||||||
|
'recon_key': f"{index_name}-{price_date}",
|
||||||
|
})
|
||||||
|
|
||||||
|
imported_count += 1
|
||||||
|
print()
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
error_msg = f"Row {row_num} - {index_name or 'Unknown'}: {str(e)}"
|
||||||
|
errors.append(error_msg)
|
||||||
|
error_count += 1
|
||||||
|
print(f" ✗ Error on row {row_num}: {e}\n")
|
||||||
|
import traceback
|
||||||
|
traceback.print_exc()
|
||||||
|
|
||||||
|
# -- Batch save all migration mappings -------------------------
|
||||||
|
if price_mappings:
|
||||||
|
print(f"\n{'='*70}")
|
||||||
|
print("SAVING MIGRATION MAPPINGS")
|
||||||
|
print(f"{'='*70}\n")
|
||||||
|
print(f"Saving {len(price_mappings)} price mappings...")
|
||||||
|
mapper.save_mappings_batch(price_mappings)
|
||||||
|
print(f"✓ Price mappings saved\n")
|
||||||
|
|
||||||
|
# -- Summary -------------------------------------------------------
|
||||||
|
print(f"{'='*70}")
|
||||||
|
print("IMPORT SUMMARY")
|
||||||
|
print(f"{'='*70}")
|
||||||
|
print(f"Successfully imported : {imported_count}")
|
||||||
|
print(f"Skipped (duplicates) : {skipped_count}")
|
||||||
|
print(f"Errors : {error_count}")
|
||||||
|
if price_mappings:
|
||||||
|
print(f"Migration mappings : {len(price_mappings)}")
|
||||||
|
|
||||||
|
if errors:
|
||||||
|
print(f"\nError details:")
|
||||||
|
for error in errors:
|
||||||
|
print(f" - {error}")
|
||||||
|
|
||||||
|
print(f"\n{'='*70}")
|
||||||
|
|
||||||
|
except FileNotFoundError:
|
||||||
|
print(f"✗ Error: CSV file not found at {csv_file}")
|
||||||
|
print(f"Please update PRICES_CSV in helpers/config.py with the correct path.")
|
||||||
|
except Exception as e:
|
||||||
|
print(f"✗ Fatal error: {e}")
|
||||||
|
import traceback
|
||||||
|
traceback.print_exc()
|
||||||
|
|
||||||
|
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
# Verify import
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
def verify_import():
|
||||||
|
"""Display the last 10 imported price records with their migration mappings"""
|
||||||
|
PriceRecord = Model.get('price.price_value')
|
||||||
|
|
||||||
|
print(f"\n{'='*70}")
|
||||||
|
print("VERIFICATION - Price Records")
|
||||||
|
print(f"{'='*70}\n")
|
||||||
|
|
||||||
|
records = PriceRecord.find([], order=[('id', 'DESC')])
|
||||||
|
|
||||||
|
if records:
|
||||||
|
print(f"Found {len(records)} price records (showing last 10):\n")
|
||||||
|
print(f"{'ID':<8} {'Index':<30} {'Date':<12} {'High':>10} {'Low':>10} {'Open':>10} {'Value':>10}")
|
||||||
|
print("-" * 95)
|
||||||
|
|
||||||
|
with MigrationMapper(DB_CONFIG) as mapper:
|
||||||
|
for rec in records[:10]:
|
||||||
|
# Look up source ID from migration mapping
|
||||||
|
source_id = 'N/A'
|
||||||
|
try:
|
||||||
|
cursor = mapper.connection.cursor()
|
||||||
|
cursor.execute("""
|
||||||
|
SELECT source_id[1]
|
||||||
|
FROM public.os_migration_mapping
|
||||||
|
WHERE tryton_id = %s
|
||||||
|
AND 'price_value' = ANY(object_type)
|
||||||
|
ORDER BY write_date DESC
|
||||||
|
LIMIT 1
|
||||||
|
""", (rec.id,))
|
||||||
|
result = cursor.fetchone()
|
||||||
|
if result and result[0]:
|
||||||
|
source_id = str(result[0])
|
||||||
|
cursor.close()
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
index_name = rec.price_index.name if rec.price_index else 'N/A'
|
||||||
|
print(
|
||||||
|
f"{rec.id:<8} {index_name:<30} {str(rec.price_date):<12}"
|
||||||
|
f" {str(rec.high_price):>10} {str(rec.low_price):>10}"
|
||||||
|
f" {str(rec.open_price):>10} {str(rec.price_value):>10}"
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
print("No price records found")
|
||||||
|
|
||||||
|
print()
|
||||||
|
|
||||||
|
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
# Check mapping stats
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
def check_mapping_stats():
|
||||||
|
"""Display statistics about migration mappings for price_value"""
|
||||||
|
print(f"\n{'='*70}")
|
||||||
|
print("MIGRATION MAPPING STATISTICS — price_value")
|
||||||
|
print(f"{'='*70}\n")
|
||||||
|
|
||||||
|
try:
|
||||||
|
with MigrationMapper(DB_CONFIG) as mapper:
|
||||||
|
cursor = mapper.connection.cursor()
|
||||||
|
cursor.execute("""
|
||||||
|
SELECT
|
||||||
|
COUNT(*) AS count,
|
||||||
|
MIN(write_date) AS first_import,
|
||||||
|
MAX(write_date) AS last_import
|
||||||
|
FROM public.os_migration_mapping
|
||||||
|
WHERE 'price_value' = ANY(object_type)
|
||||||
|
""")
|
||||||
|
result = cursor.fetchone()
|
||||||
|
if result and result[0]:
|
||||||
|
print(f"Total price_value mappings : {result[0]}")
|
||||||
|
print(f"First import : {result[1].strftime('%Y-%m-%d %H:%M') if result[1] else 'N/A'}")
|
||||||
|
print(f"Last import : {result[2].strftime('%Y-%m-%d %H:%M') if result[2] else 'N/A'}")
|
||||||
|
else:
|
||||||
|
print("No price_value mappings found yet")
|
||||||
|
cursor.close()
|
||||||
|
except Exception as e:
|
||||||
|
print(f"Error retrieving mapping statistics: {e}")
|
||||||
|
import traceback
|
||||||
|
traceback.print_exc()
|
||||||
|
|
||||||
|
print()
|
||||||
|
|
||||||
|
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
# Entry point
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
def main():
|
||||||
|
print("=" * 70)
|
||||||
|
print("TRYTON PRICE IMPORT SCRIPT WITH MIGRATION MAPPING")
|
||||||
|
print("Using Proteus with XML-RPC Connection")
|
||||||
|
print("=" * 70)
|
||||||
|
print()
|
||||||
|
|
||||||
|
if not connect_to_tryton():
|
||||||
|
return 1
|
||||||
|
|
||||||
|
import_prices(CSV_FILE_PATH)
|
||||||
|
verify_import()
|
||||||
|
check_mapping_stats()
|
||||||
|
|
||||||
|
return 0
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
exit(main())
|
||||||
@@ -38,6 +38,7 @@ SKIP_NON_SUPPLIERS = False # Set to True to skip parties that aren't suppliers
|
|||||||
|
|
||||||
|
|
||||||
def import_purchase_contract_fees(csv_file):
|
def import_purchase_contract_fees(csv_file):
|
||||||
|
|
||||||
"""Import purchase contract line fees from CSV"""
|
"""Import purchase contract line fees from CSV"""
|
||||||
|
|
||||||
print(f"{'='*70}")
|
print(f"{'='*70}")
|
||||||
@@ -184,7 +185,7 @@ def import_purchase_contract_fees(csv_file):
|
|||||||
|
|
||||||
# Set type if found and field exists
|
# Set type if found and field exists
|
||||||
if mode and hasattr(fee, 'type'):
|
if mode and hasattr(fee, 'type'):
|
||||||
fee.type = 'ordered' # Assuming all imported fees are 'ordered'
|
fee.type = 'budgeted' # Assuming all imported fees are 'budgeted'
|
||||||
|
|
||||||
# Set weight_type if found and field exists
|
# Set weight_type if found and field exists
|
||||||
if mode and hasattr(fee, 'weight_type'):
|
if mode and hasattr(fee, 'weight_type'):
|
||||||
@@ -212,6 +213,7 @@ def import_purchase_contract_fees(csv_file):
|
|||||||
fee.save()
|
fee.save()
|
||||||
|
|
||||||
print(f" ✓ Fee created successfully")
|
print(f" ✓ Fee created successfully")
|
||||||
|
print(f" Fee ID: {fee.id}")
|
||||||
print(f" Product: {product.rec_name}")
|
print(f" Product: {product.rec_name}")
|
||||||
print(f" Supplier: {supplier.rec_name}")
|
print(f" Supplier: {supplier.rec_name}")
|
||||||
print(f" Price: {price} {currency.code}")
|
print(f" Price: {price} {currency.code}")
|
||||||
|
|||||||
364
Reference Data/python_project/scripts/import_sale_fees.py
Normal file
364
Reference Data/python_project/scripts/import_sale_fees.py
Normal file
@@ -0,0 +1,364 @@
|
|||||||
|
import sys
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
# Add parent directory to Python path so we can import helpers
|
||||||
|
parent_dir = Path(__file__).parent.parent
|
||||||
|
sys.path.insert(0, str(parent_dir))
|
||||||
|
|
||||||
|
import csv
|
||||||
|
from decimal import Decimal
|
||||||
|
from proteus import config, Model
|
||||||
|
|
||||||
|
from helpers.config import (
|
||||||
|
SALE_FEES_CSV,
|
||||||
|
connect_to_tryton)
|
||||||
|
|
||||||
|
from helpers.tryton_helpers import (
|
||||||
|
find_party_by_name,
|
||||||
|
find_product_by_code,
|
||||||
|
find_sale_contract_by_number,
|
||||||
|
find_contract_line_by_sequence,
|
||||||
|
find_currency_by_code,
|
||||||
|
parse_decimal,
|
||||||
|
ensure_party_is_supplier,
|
||||||
|
find_fee_mode_by_name,
|
||||||
|
find_payable_receivable_by_name,
|
||||||
|
get_existing_fees_for_line,
|
||||||
|
fee_already_exists)
|
||||||
|
|
||||||
|
|
||||||
|
# CSV Configuration
|
||||||
|
CSV_FILE_PATH = SALE_FEES_CSV
|
||||||
|
|
||||||
|
|
||||||
|
# Import options
|
||||||
|
AUTO_ENABLE_SUPPLIER = True # Set to False to skip auto-enabling supplier flag
|
||||||
|
SKIP_NON_SUPPLIERS = False # Set to True to skip parties that aren't suppliers
|
||||||
|
|
||||||
|
|
||||||
|
def import_sale_contract_fees(csv_file):
|
||||||
|
"""Import sale contract line fees from CSV"""
|
||||||
|
|
||||||
|
print(f"{'='*70}")
|
||||||
|
print("IMPORTING SALE CONTRACT LINE FEES")
|
||||||
|
print(f"{'='*70}\n")
|
||||||
|
|
||||||
|
# Get models
|
||||||
|
try:
|
||||||
|
SaleLineFee = Model.get('fee.fee')
|
||||||
|
except Exception as e:
|
||||||
|
print(f"✗ Error: Could not load fee.fee model - {e}")
|
||||||
|
print("Please ensure the model name is correct for your Tryton customization")
|
||||||
|
return
|
||||||
|
|
||||||
|
imported_count = 0
|
||||||
|
skipped_count = 0
|
||||||
|
error_count = 0
|
||||||
|
errors = []
|
||||||
|
|
||||||
|
try:
|
||||||
|
with open(csv_file, 'r', encoding='utf-8-sig') as file:
|
||||||
|
reader = csv.DictReader(file)
|
||||||
|
|
||||||
|
current_contract_number = None
|
||||||
|
current_contract = None
|
||||||
|
current_line_sequence = None
|
||||||
|
current_line = None
|
||||||
|
|
||||||
|
for row_num, row in enumerate(reader, start=2): # Start at 2 (header is row 1)
|
||||||
|
try:
|
||||||
|
# Extract data from CSV
|
||||||
|
contract_number = row.get('contract_number', '').strip()
|
||||||
|
line_sequence = row.get('line_sequence', '').strip()
|
||||||
|
product_code = row.get('product', '').strip()
|
||||||
|
supplier_name = row.get('supplier', '').strip()
|
||||||
|
currency_code = row.get('currency', '').strip()
|
||||||
|
p_r_value = row.get('p_r', '').strip()
|
||||||
|
mode_name = row.get('mode', '').strip()
|
||||||
|
price_value = row.get('price', '').strip()
|
||||||
|
unit_value = row.get('unit', '').strip()
|
||||||
|
|
||||||
|
print(f"Processing row {row_num}: {contract_number} - Line {line_sequence} - {product_code}")
|
||||||
|
|
||||||
|
# Validate required fields
|
||||||
|
if not contract_number:
|
||||||
|
print(f" ✗ Skipping: Missing contract_number\n")
|
||||||
|
skipped_count += 1
|
||||||
|
continue
|
||||||
|
|
||||||
|
if not line_sequence:
|
||||||
|
print(f" ✗ Skipping: Missing line_sequence\n")
|
||||||
|
skipped_count += 1
|
||||||
|
continue
|
||||||
|
|
||||||
|
if not product_code:
|
||||||
|
print(f" ✗ Skipping: Missing product\n")
|
||||||
|
skipped_count += 1
|
||||||
|
continue
|
||||||
|
|
||||||
|
# Cache contract and line if same as previous row
|
||||||
|
if contract_number != current_contract_number:
|
||||||
|
current_contract = find_sale_contract_by_number(contract_number)
|
||||||
|
current_contract_number = contract_number
|
||||||
|
current_line_sequence = None
|
||||||
|
current_line = None
|
||||||
|
|
||||||
|
if not current_contract:
|
||||||
|
print(f" ✗ Skipping: Contract not found\n")
|
||||||
|
skipped_count += 1
|
||||||
|
continue
|
||||||
|
|
||||||
|
# Cache line if same as previous row
|
||||||
|
if line_sequence != current_line_sequence:
|
||||||
|
current_line = find_contract_line_by_sequence(current_contract, line_sequence)
|
||||||
|
current_line_sequence = line_sequence
|
||||||
|
|
||||||
|
if not current_line:
|
||||||
|
print(f" ✗ Skipping: Contract line not found\n")
|
||||||
|
skipped_count += 1
|
||||||
|
continue
|
||||||
|
|
||||||
|
# Find related records
|
||||||
|
product = find_product_by_code(product_code)
|
||||||
|
if not product:
|
||||||
|
print(f" ✗ Skipping: Product not found\n")
|
||||||
|
skipped_count += 1
|
||||||
|
continue
|
||||||
|
|
||||||
|
supplier = find_party_by_name(supplier_name)
|
||||||
|
if not supplier:
|
||||||
|
print(f" ✗ Skipping: Supplier not found\n")
|
||||||
|
skipped_count += 1
|
||||||
|
continue
|
||||||
|
|
||||||
|
# Ensure party has SUPPLIER category
|
||||||
|
supplier, is_supplier = ensure_party_is_supplier(supplier, auto_enable=AUTO_ENABLE_SUPPLIER)
|
||||||
|
|
||||||
|
if not is_supplier:
|
||||||
|
if SKIP_NON_SUPPLIERS:
|
||||||
|
print(f" ⚠ Skipping sale - party does not have SUPPLIER category\n")
|
||||||
|
skipped_count += 1
|
||||||
|
current_sale = None
|
||||||
|
continue
|
||||||
|
else:
|
||||||
|
error_msg = f"Row {row_num}: Party '{supplier.rec_name}' does not have SUPPLIER category"
|
||||||
|
errors.append(error_msg)
|
||||||
|
error_count += 1
|
||||||
|
current_sale = None
|
||||||
|
continue
|
||||||
|
|
||||||
|
currency = find_currency_by_code(currency_code)
|
||||||
|
if not currency:
|
||||||
|
print(f" ✗ Skipping: Currency not found\n")
|
||||||
|
skipped_count += 1
|
||||||
|
continue
|
||||||
|
|
||||||
|
# Parse price
|
||||||
|
price = parse_decimal(price_value, 'price')
|
||||||
|
if price is None:
|
||||||
|
print(f" ✗ Skipping: Invalid price\n")
|
||||||
|
skipped_count += 1
|
||||||
|
continue
|
||||||
|
|
||||||
|
# Determine payable/receivable
|
||||||
|
payable_receivable = find_payable_receivable_by_name(p_r_value)
|
||||||
|
|
||||||
|
# Find fee mode
|
||||||
|
mode = find_fee_mode_by_name(mode_name)
|
||||||
|
|
||||||
|
# Check if fee already exists
|
||||||
|
existing_fees = get_existing_fees_for_line(current_line)
|
||||||
|
if fee_already_exists(existing_fees, product, supplier, price):
|
||||||
|
print(f" ○ Fee already exists for this line\n")
|
||||||
|
skipped_count += 1
|
||||||
|
continue
|
||||||
|
|
||||||
|
# Create the fee
|
||||||
|
fee = SaleLineFee()
|
||||||
|
fee.sale_line = current_line
|
||||||
|
fee.product = product
|
||||||
|
fee.supplier = supplier
|
||||||
|
fee.currency = currency
|
||||||
|
fee.price = price
|
||||||
|
|
||||||
|
# Set type if found and field exists
|
||||||
|
if mode and hasattr(fee, 'type'):
|
||||||
|
fee.type = 'budgeted' # Assuming all imported fees are 'budgeted'
|
||||||
|
|
||||||
|
# Set weight_type if found and field exists
|
||||||
|
if mode and hasattr(fee, 'weight_type'):
|
||||||
|
fee.weight_type = 'brut'
|
||||||
|
|
||||||
|
# Set p_r (payable or receivable) if found and field exists
|
||||||
|
if mode and hasattr(fee, 'p_r'):
|
||||||
|
fee.p_r = payable_receivable
|
||||||
|
|
||||||
|
# Set mode if found and field exists
|
||||||
|
if mode and hasattr(fee, 'mode'):
|
||||||
|
fee.mode = mode
|
||||||
|
|
||||||
|
# Set unit if field exists
|
||||||
|
if unit_value and hasattr(fee, 'unit'):
|
||||||
|
# Try to find the unit
|
||||||
|
Unit = Model.get('product.uom')
|
||||||
|
units = Unit.find([('symbol', '=', unit_value)])
|
||||||
|
if not units:
|
||||||
|
units = Unit.find([('name', '=', unit_value)])
|
||||||
|
if units:
|
||||||
|
fee.unit = units[0]
|
||||||
|
|
||||||
|
# Save the fee
|
||||||
|
fee.save()
|
||||||
|
|
||||||
|
print(f" ✓ Fee created successfully")
|
||||||
|
print(f" Fee ID: {fee.id}")
|
||||||
|
print(f" Product: {product.rec_name}")
|
||||||
|
print(f" Supplier: {supplier.rec_name}")
|
||||||
|
print(f" Price: {price} {currency.code}")
|
||||||
|
print(f" Type: {payable_receivable}")
|
||||||
|
print()
|
||||||
|
|
||||||
|
imported_count += 1
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
error_msg = f"Row {row_num} - {contract_number}: {str(e)}"
|
||||||
|
errors.append(error_msg)
|
||||||
|
error_count += 1
|
||||||
|
print(f"✗ Error on row {row_num}: {e}\n")
|
||||||
|
import traceback
|
||||||
|
traceback.print_exc()
|
||||||
|
|
||||||
|
# Summary
|
||||||
|
print(f"{'='*70}")
|
||||||
|
print("IMPORT SUMMARY")
|
||||||
|
print(f"{'='*70}")
|
||||||
|
print(f"Successfully imported: {imported_count} fees")
|
||||||
|
print(f"Skipped (missing data or already exist): {skipped_count} fees")
|
||||||
|
print(f"Errors: {error_count}")
|
||||||
|
|
||||||
|
if errors:
|
||||||
|
print(f"\nError details:")
|
||||||
|
for error in errors:
|
||||||
|
print(f" - {error}")
|
||||||
|
|
||||||
|
print(f"\n{'='*70}")
|
||||||
|
|
||||||
|
except FileNotFoundError:
|
||||||
|
print(f"✗ Error: CSV file not found at {csv_file}")
|
||||||
|
print(f"Please update CSV_FILE_PATH in the script with the correct path.")
|
||||||
|
except Exception as e:
|
||||||
|
print(f"✗ Fatal error: {e}")
|
||||||
|
import traceback
|
||||||
|
traceback.print_exc()
|
||||||
|
|
||||||
|
|
||||||
|
def verify_import():
|
||||||
|
"""Verify imported sale contract fees"""
|
||||||
|
|
||||||
|
print(f"\n{'='*70}")
|
||||||
|
print("VERIFICATION - Sale Contract Line Fees")
|
||||||
|
print(f"{'='*70}\n")
|
||||||
|
|
||||||
|
try:
|
||||||
|
SaleLineFee = Model.get('fee.fee')
|
||||||
|
|
||||||
|
# Find all fees (or limit to recently created ones)
|
||||||
|
fees = SaleLineFee.find([], order=[('id', 'DESC')])
|
||||||
|
|
||||||
|
if fees:
|
||||||
|
print(f"Found {len(fees)} fees (showing last 10):\n")
|
||||||
|
print(f"{'ID':<8} {'Contract':<15} {'Product':<25} {'Supplier':<25} {'Price':<12} {'Type':<12}")
|
||||||
|
print("-" * 105)
|
||||||
|
|
||||||
|
for fee in fees[:10]: # Show last 10 created
|
||||||
|
fee_id = fee.id
|
||||||
|
|
||||||
|
# Get contract number
|
||||||
|
contract_number = 'N/A'
|
||||||
|
if hasattr(fee, 'line') and fee.line:
|
||||||
|
line = fee.line
|
||||||
|
if hasattr(line, 'sale') and line.sale:
|
||||||
|
contract = line.sale
|
||||||
|
if hasattr(contract, 'number') and contract.number:
|
||||||
|
contract_number = str(contract.number)[:14]
|
||||||
|
|
||||||
|
product = fee.product.rec_name[:24] if hasattr(fee, 'product') and fee.product else 'N/A'
|
||||||
|
supplier = fee.supplier.rec_name[:24] if hasattr(fee, 'supplier') and fee.supplier else 'N/A'
|
||||||
|
price = f"{fee.price:.2f}" if hasattr(fee, 'price') and fee.price else 'N/A'
|
||||||
|
|
||||||
|
# Get type (payable/receivable)
|
||||||
|
fee_type = 'N/A'
|
||||||
|
if hasattr(fee, 'type'):
|
||||||
|
fee_type = fee.type
|
||||||
|
elif hasattr(fee, 'payable_receivable'):
|
||||||
|
fee_type = fee.payable_receivable
|
||||||
|
|
||||||
|
print(f"{fee_id:<8} {contract_number:<15} {product:<25} {supplier:<25} {price:<12} {fee_type:<12}")
|
||||||
|
else:
|
||||||
|
print("No fees found")
|
||||||
|
|
||||||
|
print()
|
||||||
|
|
||||||
|
except Exception as e:
|
||||||
|
print(f"✗ Error during verification: {e}")
|
||||||
|
import traceback
|
||||||
|
traceback.print_exc()
|
||||||
|
|
||||||
|
|
||||||
|
def list_sale_contracts():
|
||||||
|
"""List sale contracts for debugging"""
|
||||||
|
Sale = Model.get('sale.sale')
|
||||||
|
|
||||||
|
print(f"\n{'='*70}")
|
||||||
|
print("AVAILABLE SALE CONTRACTS (first 20)")
|
||||||
|
print(f"{'='*70}")
|
||||||
|
|
||||||
|
contracts = Sale.find([], order=[('id', 'DESC')], limit=20)
|
||||||
|
|
||||||
|
if contracts:
|
||||||
|
print(f"{'ID':<8} {'Number':<20} {'Party':<30} {'State':<12}")
|
||||||
|
print("-" * 70)
|
||||||
|
|
||||||
|
for contract in contracts:
|
||||||
|
contract_id = contract.id
|
||||||
|
number = contract.number[:19] if contract.number else 'N/A'
|
||||||
|
party = contract.party.rec_name[:29] if contract.party else 'N/A'
|
||||||
|
state = contract.state if contract.state else 'N/A'
|
||||||
|
|
||||||
|
print(f"{contract_id:<8} {number:<20} {party:<30} {state:<12}")
|
||||||
|
|
||||||
|
# Show number of lines
|
||||||
|
if hasattr(contract, 'lines') and contract.lines:
|
||||||
|
print(f" Lines: {len(contract.lines)}")
|
||||||
|
else:
|
||||||
|
print("No sale contracts found")
|
||||||
|
|
||||||
|
print(f"{'='*70}\n")
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
print("="*70)
|
||||||
|
print("TRYTON SALE CONTRACT FEE IMPORT SCRIPT")
|
||||||
|
print("Using Proteus with XML-RPC Connection")
|
||||||
|
print("="*70)
|
||||||
|
print()
|
||||||
|
|
||||||
|
# Connect to Tryton using XML-RPC
|
||||||
|
if not connect_to_tryton():
|
||||||
|
return 1
|
||||||
|
|
||||||
|
# Optional: List sale contracts for debugging
|
||||||
|
# Uncomment the following line to see available contracts
|
||||||
|
# list_sale_contracts()
|
||||||
|
|
||||||
|
# Import sale contract fees
|
||||||
|
import_sale_contract_fees(CSV_FILE_PATH)
|
||||||
|
|
||||||
|
# Verify import
|
||||||
|
verify_import()
|
||||||
|
|
||||||
|
return 0
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
exit(main())
|
||||||
Reference in New Issue
Block a user