2026-02-23 18:20:09 +09:00
|
|
|
using EnglewoodLAB.Management;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using UVC.UI.Commands;
|
|
|
|
|
|
|
|
|
|
namespace EnglewoodLAB.UI.Command
|
|
|
|
|
{
|
|
|
|
|
public class SetProductionProgressDataCommand : ICommand
|
|
|
|
|
{
|
|
|
|
|
private List<CompleteInfo> productionProgressData;
|
|
|
|
|
|
|
|
|
|
public SetProductionProgressDataCommand(List<CompleteInfo> productionProgressData)
|
|
|
|
|
{
|
|
|
|
|
this.productionProgressData = productionProgressData;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Execute(object? parameter = null)
|
|
|
|
|
{
|
|
|
|
|
var uiManager = SceneMain.Instance.uiManager;
|
|
|
|
|
var popupCanvas = uiManager.GetCanvas<PopupCanvas>();
|
|
|
|
|
|
2026-03-09 17:00:30 +09:00
|
|
|
popupCanvas.GetPanel<ManufactoringOrderPanel>().SetProductionStatus(productionProgressData);
|
2026-02-23 18:20:09 +09:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|