Report - Monthly GST
input->post('financialyear')){
$ab=$this->input->post('financialyear');
echo '('.$ab.')';
echo ' ';
}
if($this->input->post('month')){
$m=$this->input->post('month');
echo '('.$m.')';
echo ' ';
}
if($this->input->post('from_date') && $this->input->post('to_date')){
$frm = $this->input->post('from_date');
$t = $this->input->post('to_date');
echo $frm.'-to-'.$t;
}
?>
| Name | Sales () | Purchase () | Net () |
|---|---|---|---|
| SGST | sgst,2);?> | sgst,2);?> | sgst - $monthly_gst_purchase[0]->sgst; echo round($sgst_net,2);?> |
| CGST | cgst,2);?> | cgst,2);?> | cgst - $monthly_gst_purchase[0]->cgst; echo round($cgst_net,2);?> |
| IGST | igst,2);?> | igst,2);?> | igst - $monthly_gst_purchase[0]->igst; echo round($igst_net,2);?> |
| Total GST | total,2);?> | total,2);?> | total - $monthly_gst_purchase[0]->total; echo round($total_net,2);?> |