feat(dm): added in p&g to the list

This commit is contained in:
2025-05-20 13:42:12 -05:00
parent fb603e74dc
commit b96a750e9e
4 changed files with 177 additions and 2 deletions

View File

@@ -22,6 +22,7 @@ export default function DMButtons() {
name={"Energizer Truck List"}
/>
<ForecastImport fileType={"loreal"} name={"VMI Import"} />
<ForecastImport fileType={"pg"} name={"P&G"} />
</div>
)}
{plantToken[0]?.value === "usday1" && (
@@ -44,6 +45,16 @@ export default function DMButtons() {
{plantToken[0]?.value === "usstp1" && (
<div className="flex flex-row gap-2"></div>
)}
{plantToken[0]?.value === "usiow1" && (
<div className="flex flex-row gap-2">
<ForecastImport fileType={"pg"} name={"P&G"} />
</div>
)}
{plantToken[0]?.value === "usiow2" && (
<div className="flex flex-row gap-2">
<ForecastImport fileType={"pg"} name={"P&G"} />
</div>
)}
</div>
);
}