|
@ -39,6 +39,7 @@ using BBWY.Client.Extensions; |
|
|
using BBWY.Client.Views.PackTaskAbort; |
|
|
using BBWY.Client.Views.PackTaskAbort; |
|
|
using System.Windows.Controls; |
|
|
using System.Windows.Controls; |
|
|
using BBWY.Client.Views.SomeArrival; |
|
|
using BBWY.Client.Views.SomeArrival; |
|
|
|
|
|
using BBWY.Client.Views.PackTask; |
|
|
|
|
|
|
|
|
namespace BBWY.Client.ViewModels.PackTask |
|
|
namespace BBWY.Client.ViewModels.PackTask |
|
|
{ |
|
|
{ |
|
@ -1563,6 +1564,21 @@ namespace BBWY.Client.ViewModels.PackTask |
|
|
{ |
|
|
{ |
|
|
var model = (SealBoxModel)obj; |
|
|
var model = (SealBoxModel)obj; |
|
|
|
|
|
|
|
|
|
|
|
var datas = sealBoxService.GetWareSealBoxList(null, null, null, model.SealBoxId, 1, 10); |
|
|
|
|
|
if (datas != null && datas.Data != null && datas.Success) |
|
|
|
|
|
{ |
|
|
|
|
|
var dataModel = datas.Data; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var flashModel = dataModel.WaitSealBoxModels.SingleOrDefault(w => w.SealBoxId == model.SealBoxId); |
|
|
|
|
|
|
|
|
|
|
|
if (flashModel != null) |
|
|
|
|
|
{ |
|
|
|
|
|
model.SealBoxSkus = flashModel.SealBoxSkus; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
SealBoxPrintDetailsWindow printDetailsWindow = new SealBoxPrintDetailsWindow(model, sealBoxService); |
|
|
SealBoxPrintDetailsWindow printDetailsWindow = new SealBoxPrintDetailsWindow(model, sealBoxService); |
|
|
printDetailsWindow.ShowDialog(); |
|
|
printDetailsWindow.ShowDialog(); |
|
|
} |
|
|
} |
|
|