|
|
@ -130,6 +130,20 @@ namespace BBWY.Client.Views.FallWare |
|
|
|
this.Close(); |
|
|
|
}); |
|
|
|
}); |
|
|
|
var applicationPath = System.IO.Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location); |
|
|
|
string printNames = System.IO.Path.Combine(applicationPath, "printName.init"); |
|
|
|
try |
|
|
|
{ |
|
|
|
if (File.Exists(printNames)) |
|
|
|
{ |
|
|
|
File.Delete(printNames); |
|
|
|
} |
|
|
|
} |
|
|
|
catch |
|
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
public void PrintBox(List<GetWareLSOrderPurchase> GetWareLSOrderPurchases, int nowPageIndex, int totalPageIndex) |
|
|
|