changes
This commit is contained in:
@@ -41,7 +41,7 @@
|
||||
<div class="field">
|
||||
<label class="label">{{ $lang("open-date") }}:</label>
|
||||
<div class="control">
|
||||
{{ `${$dayjs(record.create_time).format("DD/MM/YYYY")}` }}
|
||||
{{ `${$dayjs(record.create_time).format("L")}` }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -407,7 +407,7 @@ async function loadData() {
|
||||
remainingTTTHNV = Math.max(0, remainingTTTHNV);
|
||||
|
||||
return {
|
||||
to_date: sch.to_date ? $dayjs(sch.to_date).format("DD/MM/YYYY") : "—",
|
||||
to_date: sch.to_date ? $dayjs(sch.to_date).format("L") : "—",
|
||||
amount: scheduleAmount,
|
||||
luy_ke_sang_dot: luyKeSangDot,
|
||||
thuc_thanh_toan: thucThanhToan,
|
||||
@@ -433,7 +433,7 @@ async function loadData() {
|
||||
customer_code: txn.customer__code || "",
|
||||
customer_name: txn.customer__fullname || "",
|
||||
trade_code: txn.product__trade_code || txn.code || "",
|
||||
contract_date: txn.date ? $dayjs(txn.date).format("DD/MM/YYYY") : "—",
|
||||
contract_date: txn.date ? $dayjs(txn.date).format("L") : "—",
|
||||
contract_date_raw: txn.date,
|
||||
sale_price: salePriceNum,
|
||||
ttthnv_paid: ttthnvPaid,
|
||||
|
||||
@@ -37,7 +37,7 @@
|
||||
<div class="field">
|
||||
<label class="label">Ngày hạch toán:</label>
|
||||
<div class="control">
|
||||
{{ $dayjs(record.date).format("DD/MM/YYYY") }}
|
||||
{{ $dayjs(record.date).format("L") }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -102,7 +102,7 @@
|
||||
<div class="field">
|
||||
<label class="label">{{ $lang("time") }}:</label>
|
||||
<div class="control">
|
||||
{{ `${$dayjs(record.create_time).format("DD/MM/YYYY")}` }}
|
||||
{{ `${$dayjs(record.create_time).format("L")}` }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -209,7 +209,7 @@
|
||||
>
|
||||
</td>
|
||||
<td class="has-text-centered">
|
||||
{{ $dayjs(item.date).format("DD/MM/YYYY HH:mm:ss") }}
|
||||
{{ $dayjs(item.date).format("L HH:mm:ss") }}
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
||||
Reference in New Issue
Block a user