37 lines
1.3 KiB
Python
37 lines
1.3 KiB
Python
import wx
|
|
|
|
import eos.db
|
|
import gui.mainFrame
|
|
from gui import globalEvents as GE
|
|
from gui.fitCommands.calc.cargo.add import CalcAddCargoCommand
|
|
from gui.fitCommands.helpers import CargoInfo, InternalCommandHistory
|
|
|
|
|
|
class GuiImportCargosCommand(wx.Command):
|
|
|
|
def __init__(self, fitID, cargos):
|
|
wx.Command.__init__(self, True, 'Import Cargos')
|
|
self.internalHistory = InternalCommandHistory()
|
|
self.fitID = fitID
|
|
self.cargos = {}
|
|
for itemID, amount, mutation in cargos:
|
|
if itemID not in self.cargos:
|
|
self.cargos[itemID] = 0
|
|
self.cargos[itemID] += amount
|
|
|
|
def Do(self):
|
|
results = []
|
|
for itemID, amount in self.cargos.items():
|
|
cmd = CalcAddCargoCommand(fitID=self.fitID, cargoInfo=CargoInfo(itemID=itemID, amount=amount))
|
|
results.append(self.internalHistory.submit(cmd))
|
|
success = any(results)
|
|
eos.db.commit()
|
|
wx.PostEvent(gui.mainFrame.MainFrame.getInstance(), GE.FitChanged(fitIDs=(self.fitID,)))
|
|
return success
|
|
|
|
def Undo(self):
|
|
success = self.internalHistory.undoAll()
|
|
eos.db.commit()
|
|
wx.PostEvent(gui.mainFrame.MainFrame.getInstance(), GE.FitChanged(fitIDs=(self.fitID,)))
|
|
return success
|