Skip to content

Commit

Permalink
Merge pull request #735 from NUTFes/develop
Browse files Browse the repository at this point in the history
請求書の振込期限を初期値を8月30日に変更
  • Loading branch information
Kubosaka authored Apr 12, 2024
2 parents fc2e17d + edde80c commit eebd270
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ interface FormDateFormat {
export default function AddPdfDetailModal(props: ModalProps) {
const today = new Date();
const yyyy = String(today.getFullYear());
const mm = String(today.getMonth() + 1).padStart(2, '0');
const dd = String(today.getDate()).padStart(2, '0');
const mm = '08';
const dd = '30';
const weekdays = ['日', '月', '火', '水', '木', '金', '土'];
const toReiwaYear = (year: number) => {
const reiwaStartYear = 2019;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ const MyDocument = (props: MyDocumentProps) => (
</Text>
<View>
<View style={styles.marginButtom}>
<Text>技大祭実行委員</Text>
<Text>技大祭実行委員会</Text>
<Text>〒940-2137</Text>
<Text>新潟県長岡市上富岡町1603-1</Text>
<Text>長岡技術科学大学 大学集会施設</Text>
Expand Down

0 comments on commit eebd270

Please sign in to comment.