This commit is contained in:
shoopea 2019-10-11 16:14:20 +08:00
parent 75d113da88
commit 9850902699

4
job.go
View File

@ -968,11 +968,11 @@ func jobVaultStatus(j Job) {
}
if currentUserID64 != 0 {
//display info
out := fmt.Sprintf("<pre>%-28s | Dep. | Rcv. | Total\n─────────────────────────────┼───────┼───────┼──────\n", `Item`)
out := fmt.Sprintf("<pre>%-32s | Dep. | Rcv. | Total\n─────────────────────────────┼───────┼───────┼──────\n", `Item`)
for i, itemId := range itemList {
item, err := getObjItem(itemId)
logOnError(err, "jobVaultStatus : getObjItem")
out = fmt.Sprintf("%s%-28s |%6d |%6d |%6d\n", out, item.Name, depositList[i], withdrawList[i], depositList[i]-withdrawList[i])
out = fmt.Sprintf("%s%-32s |%6d |%6d |%6d\n", out, item.Name, depositList[i], withdrawList[i], depositList[i]-withdrawList[i])
}
out = fmt.Sprintf("%s</pre>", out)
log.Printf("Vault Status :\n%s", out)