This commit is contained in:
2021-02-19 01:34:34 +00:00
parent 0db453db75
commit 00bcc95d67

View File

@@ -898,7 +898,7 @@ async function fetchWarehouseCount(vm) {
async function createTableHeaders(vm) { async function createTableHeaders(vm) {
/* /*
If the column is a text, left-align it If the column is a text, left-align it
If the column is a number or number + unit, right-align it (like excel) If the column is a number or number + unit, (or date) right-align it (like excel)
*/ */
vm.headers.push({ vm.headers.push({
text: vm.$ay.t("Part"), text: vm.$ay.t("Part"),
@@ -925,7 +925,7 @@ async function createTableHeaders(vm) {
}); });
vm.headers.push({ vm.headers.push({
text: vm.$ay.t("PurchaseOrderReceiptReceivedDate"), text: vm.$ay.t("PurchaseOrderReceiptReceivedDate"),
align: "left", align: "right",
value: "receivedDate" value: "receivedDate"
}); });