Merge pull request '콘텐츠 정산 - 헤더 순서 변경' (#7) from test into main
Reviewed-on: #7
This commit is contained in:
commit
e6f27a4529
|
@ -59,7 +59,6 @@
|
||||||
<td colspan="5">
|
<td colspan="5">
|
||||||
합계
|
합계
|
||||||
</td>
|
</td>
|
||||||
<td>{{ sumField('orderPrice').toLocaleString() }} 캔</td>
|
|
||||||
<td>{{ sumField('numberOfPeople').toLocaleString() }}</td>
|
<td>{{ sumField('numberOfPeople').toLocaleString() }}</td>
|
||||||
<td>{{ sumField('totalCan').toLocaleString() }} 캔</td>
|
<td>{{ sumField('totalCan').toLocaleString() }} 캔</td>
|
||||||
<td>{{ sumField('totalKrw').toLocaleString() }} 원</td>
|
<td>{{ sumField('totalKrw').toLocaleString() }} 원</td>
|
||||||
|
@ -67,6 +66,7 @@
|
||||||
<td>{{ sumField('settlementAmount').toLocaleString() }} 원</td>
|
<td>{{ sumField('settlementAmount').toLocaleString() }} 원</td>
|
||||||
<td>{{ sumField('tax').toLocaleString() }} 원</td>
|
<td>{{ sumField('tax').toLocaleString() }} 원</td>
|
||||||
<td>{{ sumField('depositAmount').toLocaleString() }} 원</td>
|
<td>{{ sumField('depositAmount').toLocaleString() }} 원</td>
|
||||||
|
<td />
|
||||||
</tr>
|
</tr>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -123,6 +123,12 @@ export default {
|
||||||
end_date: null,
|
end_date: null,
|
||||||
items: [],
|
items: [],
|
||||||
headers: [
|
headers: [
|
||||||
|
{
|
||||||
|
text: '판매일',
|
||||||
|
align: 'center',
|
||||||
|
sortable: false,
|
||||||
|
value: 'saleDate',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
text: '크리에이터',
|
text: '크리에이터',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
|
@ -133,18 +139,8 @@ export default {
|
||||||
text: '제목',
|
text: '제목',
|
||||||
sortable: false,
|
sortable: false,
|
||||||
value: 'title',
|
value: 'title',
|
||||||
},
|
|
||||||
{
|
|
||||||
text: '등록일',
|
|
||||||
align: 'center',
|
align: 'center',
|
||||||
sortable: false,
|
width: "300px"
|
||||||
value: 'registrationDate',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
text: '판매일',
|
|
||||||
align: 'center',
|
|
||||||
sortable: false,
|
|
||||||
value: 'saleDate',
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: '구분',
|
text: '구분',
|
||||||
|
@ -199,7 +195,13 @@ export default {
|
||||||
align: 'center',
|
align: 'center',
|
||||||
sortable: false,
|
sortable: false,
|
||||||
value: 'depositAmount',
|
value: 'depositAmount',
|
||||||
}
|
},
|
||||||
|
{
|
||||||
|
text: '등록일',
|
||||||
|
align: 'center',
|
||||||
|
sortable: false,
|
||||||
|
value: 'registrationDate',
|
||||||
|
},
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue