示例#1
0
 class Meta:
     model = PeriodSelected
     fields = ('start_date', 'end_date')
     widgets = {
         'start_date': DateInput(),
         'end_date': DateInput(),
     }
示例#2
0
 class Meta:
     model = JournalVoucher
     fields = ('voucher_date', 'dr_ledger',
               'cr_ledger', 'amount', 'narration')
     widgets = {
         'voucher_date': DateInput(),
     }
示例#3
0
 class Meta:
     model = SaleVoucherAccounts
     fields = ('nature_transactions_sales', 'voucher_date',
               'consignee_name', 'consignee_address', 'consignee_gstin',
               'consignee_pan', 'consignee_pan', 'consignee_contact',
               'consignee_state', 'other_details', 'consignee_country',
               'despatch_no', 'despatch_info', 'destination',
               'landing_bill', 'landing_date', 'vechicle_no',
               'supply_place', 'supplier_ref', 'ref_no', 'party_ac',
               'gst_details', 'bill_no', 'bill_date', 'port_code',
               'delivery_terms', 'shipper_place', 'flight_no',
               'loading_port', 'discharge_port', 'supply_country')
     widgets = {
         'voucher_date': DateInput(),
         'bill_date': DateInput(),
         'landing_date': DateInput(),
     }
 class Meta:
     model = PurchaseVoucherAccounts
     fields = ('nature_transactions_purchase', 'voucher_date',
               'consignee_name', 'consignee_address', 'consignee_pan',
               'consignee_gstin', 'consignee_contact', 'consignee_state',
               'consignee_country', 'supply_state', 'other_details',
               'delivery_note', 'supplier_ref', 'ref_no', 'party_ac',
               'receipt_no', 'despatch_info', 'destination',
               'delivery_terms', 'shipper_place', 'flight_no',
               'loading_port', 'discharge_port', 'to_country')
     widgets = {
         'voucher_date': DateInput(),
     }
 class Meta:
     model = CreditNoteAccountsVoucher
     fields = ('nature_transactions_sales', 'voucher_date', 'sales_date',
               'sales_invno', 'sales_amount', 'manual', 'sale_voucher',
               'supply_place', 'delivery_note', 'supplier_ref', 'mode',
               'ref_no', 'party_ac', 'despatch_no', 'despatch_info',
               'gst_details', 'issue_reason', 'note_no', 'date_after_no',
               'bill_no', 'bill_date', 'port_code', 'destination',
               'landing_bill', 'landing_date', 'vechicle_no',
               'shipper_place', 'flight_no', 'loading_port',
               'discharge_port', 'supply_country')
     widgets = {
         'voucher_date': DateInput(),
         'bill_date': DateInput(),
         'date_after_no': DateInput(),
         'date_entry': DateInput(),
         'sales_date': DateInput(),
         'landing_date': DateInput(),
     }
示例#6
0
 class Meta:
     model = ContraVoucher
     fields = ('voucher_date', 'account', 'total_amt')
     widgets = {
         'voucher_date': DateInput(),
     }
示例#7
0
 class Meta:
     model = BankReconciliation
     fields = ('transaction_type', 'instrument_no', 'bank_date')
     widgets = {
         'bank_date': DateInput(),
     }