3 | | $this->render_textarea_input( $post, 'Description', 'description' ); |
4 | | $this->render_text_input( $post, 'Invoice Number', 'invoice_number' ); |
5 | | $this->render_text_input( $post, 'Invoice date', 'invoice_date', '', 'date' ); |
6 | | $this->render_text_input( $post, 'Requested date for payment/due by', 'due_by', '', 'date' ); |
7 | | $this->render_text_input( $post, 'Amount', 'payment_amount', 'No commas, thousands separators or currency symbols. Ex. 1234.56' ); |
8 | | $this->render_select_input( $post, 'Currency', 'currency' ); |
9 | | $this->render_select_input( $post, 'Category', 'payment_category' ); |
| 3 | $this->render_textarea_input( $post, __( 'Description', 'wordcamporg' ), 'description' ); |
| 4 | $this->render_text_input( $post, __( 'Invoice Number', 'wordcamporg' ), 'invoice_number' ); |
| 5 | $this->render_text_input( $post, __( 'Invoice date', 'wordcamporg' ), 'invoice_date', '', 'date' ); |
| 6 | $this->render_text_input( $post, __( 'Requested date for payment/due by', 'wordcamporg' ), 'due_by', '', 'date' ); |
| 7 | $this->render_text_input( $post, __( 'Amount', 'wordcamporg' ), 'payment_amount', __( 'No commas, thousands separators or currency symbols. Ex. 1234.56', 'wordcamporg' ) ); |
| 8 | $this->render_select_input( $post, __( 'Currency', 'wordcamporg' ), 'currency' ); |
| 9 | $this->render_select_input( $post, __( 'Category', 'wordcamporg' ), 'payment_category' ); |
23 | | <?php $this->render_files_input( $post, 'Files', 'files', __( 'Attach supporting documentation including invoices, contracts, or other vendor correspondence. If no supporting documentation is available, please indicate the reason in the notes below.', 'wordcamporg' ) ); ?> |
24 | | <?php $this->render_textarea_input( $post, 'Notes', 'general_notes', 'Any other details you want to share.', false ); ?> |
| 23 | <?php $this->render_files_input( $post, __( 'Files', 'wordcamporg' ), 'files', __( 'Attach supporting documentation including invoices, contracts, or other vendor correspondence. If no supporting documentation is available, please indicate the reason in the notes below.', 'wordcamporg' ) ); ?> |
| 24 | <?php $this->render_textarea_input( $post, __( 'Notes', 'wordcamporg' ), 'general_notes', __( 'Any other details you want to share.', 'wordcamporg' ), false ); ?> |