Compare commits
No commits in common. "e6f27a45291bc07dffdbee0ad0a03388a70cf451" and "6a33d1c024e7ec056e50356dbd69f307d60020ee" have entirely different histories.
e6f27a4529
...
6a33d1c024
|
@ -59,6 +59,7 @@
|
|||
<td colspan="5">
|
||||
합계
|
||||
</td>
|
||||
<td>{{ sumField('orderPrice').toLocaleString() }} 캔</td>
|
||||
<td>{{ sumField('numberOfPeople').toLocaleString() }}</td>
|
||||
<td>{{ sumField('totalCan').toLocaleString() }} 캔</td>
|
||||
<td>{{ sumField('totalKrw').toLocaleString() }} 원</td>
|
||||
|
@ -66,7 +67,6 @@
|
|||
<td>{{ sumField('settlementAmount').toLocaleString() }} 원</td>
|
||||
<td>{{ sumField('tax').toLocaleString() }} 원</td>
|
||||
<td>{{ sumField('depositAmount').toLocaleString() }} 원</td>
|
||||
<td />
|
||||
</tr>
|
||||
</template>
|
||||
|
||||
|
@ -123,12 +123,6 @@ export default {
|
|||
end_date: null,
|
||||
items: [],
|
||||
headers: [
|
||||
{
|
||||
text: '판매일',
|
||||
align: 'center',
|
||||
sortable: false,
|
||||
value: 'saleDate',
|
||||
},
|
||||
{
|
||||
text: '크리에이터',
|
||||
align: 'center',
|
||||
|
@ -139,8 +133,18 @@ export default {
|
|||
text: '제목',
|
||||
sortable: false,
|
||||
value: 'title',
|
||||
},
|
||||
{
|
||||
text: '등록일',
|
||||
align: 'center',
|
||||
width: "300px"
|
||||
sortable: false,
|
||||
value: 'registrationDate',
|
||||
},
|
||||
{
|
||||
text: '판매일',
|
||||
align: 'center',
|
||||
sortable: false,
|
||||
value: 'saleDate',
|
||||
},
|
||||
{
|
||||
text: '구분',
|
||||
|
@ -195,13 +199,7 @@ export default {
|
|||
align: 'center',
|
||||
sortable: false,
|
||||
value: 'depositAmount',
|
||||
},
|
||||
{
|
||||
text: '등록일',
|
||||
align: 'center',
|
||||
sortable: false,
|
||||
value: 'registrationDate',
|
||||
},
|
||||
}
|
||||
],
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue