-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathonline-gst-nil-filing.php
310 lines (244 loc) · 11.6 KB
/
online-gst-nil-filing.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
<?php include('header.php');?>
<!-- BANNER-inner -->
<div class="banner-inner">
<img src="images/GSTnil.jpeg" alt="" class="innar-img">
</div>
<!-- consumer-complaint -->
<div class="consumer-complaint">
<div class="container">
<h2>GST Nil</h2>
<p>All taxpayer who is having <b>GST</b> Registration but not having the eligibility to pay the tax needs to file GSTR-1 even if he has no business activity during the session. The tax payer can file a Nil GSTR-1 in such cases. The outward supplies include all taxable as well as exempt supplies.</p>
<br><br>
<div class="row">
<div class="col-md-5">
<div class="complaint-form" data-aos-duration="1500" data-aos="zoom-in">
<!-- <form method="post" enctype="multipart/form-data">
<div class="input-cont">
<label for="name">Name </label>
<input type="text" placeholder=" : Name" name="name" value="" >
</div>
<div class="input-cont">
<label for="name">Phone no </label>
<input type="text" value="" placeholder=" : Phone no" >
</div>
<div class="input-cont">
<label for="name">Email </label>
<input type="email" placeholder=" : Email" value="" name="email">
</div>
<div class="input-cont">
<label for="name">Address </label>
<input type="text" placeholder=" : Address" value="" name="address">
</div>
<div class="input-cont">
<label for="name">Aadhar card number: </label>
<input type="text" value="" placeholder=" : Aadhar card number:" >
</div>
<div class="input-cont">
<label for="name">Select State: </label>
<select name="state" id="state">
<option value="west bengal">WEST BENGAL</option>
<option value="west bengal">WEST BENGAL</option>
<option value="west bengal">WEST BENGAL</option>
<option value="west bengal">WEST BENGAL</option>
</select>
</div>
<div class="input-cont">
<label for="name">Problem Details: </label>
<textarea name="message" id="message" placeholder=" : Say Something about your problem in short or in details" ></textarea>
</div>
<div class="input-cont">
<label for="name">Select Fees : </label>
<select name="fess" id="fess">
<option value="599">599 /- </option>
<option value="799">799 /- </option>
</select>
</div>
<div class="input-cont">
<label for="name">Uplode Image: <sub>( optional max size 2MB )</sub> </label>
<input type="file" id="myFile" >
</div>
<div class="input-cont" style="margin:25px 0 0; width: 35%; ">
<input type="submit" name="book_sub" value="submit" class="input-success" style="">
</div>
</form>-->
<form method="post" enctype="multipart/form-data">
<div class="input-cont">
<label for="name">Name </label>
<input type="text" placeholder=" Name" name="name" required>
</div>
<div class="input-cont">
<label for="name">Phone no </label>
<input type="text" placeholder=" Phone no" name="phone" required pattern="[0-9]+">
</div>
<div class="input-cont">
<label for="name">Email </label>
<input type="email" placeholder=" Email" required name="email">
</div>
<div class="input-cont">
<label for="name">Address </label>
<input type="text" placeholder=" Address" required="" name="address">
</div>
<div class="input-cont">
<label for="name">Aadhar card number: </label>
<input type="text" placeholder=" Aadhar card number" name="adhar" required>
</div>
<div class="input-cont">
<label for="name">Select State: </label>
<select name="state" id="state" required>
<option value="">State</option>
<?php
$table1='state_list';
$stmt=$show->state($table1);
$num=$stmt->rowCount();
if($num>0){
while($row=$stmt->fetch(PDO::FETCH_ASSOC)){
echo "<option value='".$row['state']."'>".$row['state']."</option>";
}
}
?>
</select>
</div>
<div class="input-cont">
<label for="name">Select Fees : </label>
<select name="fees" required id="fess">
<option value="399">399 /- </option>
</select>
</div>
<div class="input-cont">
<label for="name">Uplode Image: <sub>( optional max size 2MB )</sub> </label>
<input type="file" id="myFile" name="file" onchange="return fileValidation('myFile','2000')" >
</div>
<div class="input-cont" style="margin:25px 0 0; width: 35%; ">
<input type="submit" name="book_sub" value="submit" class="input-success" style="">
</div>
</form>
<?php if(isset($_POST['book_sub'])){
$uid=$show->getid('ids','USR');
$img=$show->imageEdit($_FILES['file']['name']);
$data = array(
'user_id' => $uid,
'name' => htmlentities(strip_tags($_POST['name'])),
'phone' => htmlentities(strip_tags($_POST['phone'])),
'email' => htmlentities(strip_tags($_POST['email'])),
'address'=>htmlentities(strip_tags($_POST['address'])),
'state'=>htmlentities(strip_tags($_POST['state'])),
'adhar'=>htmlentities(strip_tags($_POST['adhar'])),
'fees'=>htmlentities(strip_tags($_POST['fees'])),
'image'=>$img,
'date'=>date('Y-m-d'),
'payment_status'=>'Pending',
'status'=>'Pending',
'type'=>'gst_nil'
);
// print_r($data);
move_uploaded_file($_FILES['file']['tmp_name'],"product_img/".$img);
$em=htmlentities(strip_tags($_POST['email']));
if($show->insert('business_forms',$data)){
$id=$db->lastInsertId();
echo '<script>
setTimeout(function() {
swal({
title: "Thank You!",
text: "You will be redirected to payment now.",
type: "success"
}, function() {
window.location = "pay_now.php?oid='.$id.'";
});
}, 1000);
</script>';
}
}?>
</div>
</div>
<div class="col-md-7">
<div class="complaint-online">
<h5>GOODS AND SERVICES TAX NIL FILING</h5>
<h6><b> Do I have to file Nil GSTR3B return?</b><br>
The taxpayers should file GSTR-3B return for the months of July and August for all taxpayers having GST registration. Even for those businesses that had no business activity during the month of July and August must file nil GSTR-3B return.</h6>
<br>
<h6><b>Do I have to file Nil GSTR-1 return?</b><br>
Yes, nil GSTR-1 return must be filed by all regular taxpayers having GST registration even if there were no sales transaction in a month. If the taxpayer fails to file GSTR-1 return, a penalty of Rs.100 per day shall apply.
</h6>
<br>
<h6><b>Procedure for filing nil GSTR1 return</b><br>
In GSTR-1 return, the taxpayer provides information about all sales transactions in the previous month and upload invoices issued to the GSTN portal. The taxpayer shall still state on NIL transactions even if the business makes NIL sales. The taxpayer shall file the NIL returns on the GST portal by logging into the GST portal. submit that no transactions were done, e-sign and file GSTR-1 return.
</h6>
<br>
<h6><b>Do I have to file nil GSTR-2 return?</b><br>
Yes, nil GSTR-2 return must be filed by a taxpayer even if there were no purchase transactions in a month. If GSTR-2 return is not filed, a penalty of Rs.100 will be charged. While filing GSRT-2 return, most of the information is auto-populated based on GSTR-1 return filed by all taxpayers. Hence, if there were no purchases, the auto-populated form of GSTR-2 would show that non- activity of business. The taxpayer can verify GSTR-2, e-sign and submit a nil GSTR-2 return easily.
</h6>
<br>
<h6><b>Do I have to file nil GSTR-3 return?</b><br>
Yes, nil GSTR-3 return must be filed by a taxpayer even if there were no business activity in a month. Upon failure to file the GSTR-3 returns, a penalty of Rs.100 per day shall apply. Since most of GSTR-3 return is auto-populated, filing of nil GSTR-3 return would be very easy. The taxpayer would have to login to the GST Portal, verify the amount of tax payable, if any, e-sign and submit the GSTR-3 return.
</h6>
</div>
<div class="complaint-online">
<h5>Fees:-</h5>
<table>
<tr>
<td>GST Nil Filing</td>
<td>Monthly </td>
<td>Price Rs 599</td>
</tr>
<tr>
<td>GST Nil Filing</td>
<td>quarterly.</td>
<td>Price Rs 799</td>
</tr>
</table>
</div>
</div>
</div>
<div class="row">
<h2>How We Work</h2>
<div class="col-md-4">
<div class="box-work">
<p>Fill our Form and Make the Payment.</p>
</div>
</div>
<div class="col-md-4">
<div class="box-work">
<p>Upload all the Necessary documents.</p>
</div>
</div>
<div class="col-md-4">
<div class="box-work">
<p>Congratulations! Your GST-Cancel has been successfully submitted.</p>
</div>
</div>
<div class="col-md-3">
</div>
<div class="col-md-3">
<div class="box-work">
<p>Get a Call from Our GST Expert.</p>
</div>
</div>
<div class="col-md-3">
<div class="box-work">
<p>Our experts will proceed for your GST- Cancel after you approved it.</p>
</div>
</div>
</div>
</div>
<div class="faq">
<div class="container">
<h3>FAQ</h3>
<h6><b>Please check the frequesntly asked questions</b></h6>
<br><br>
<div class="col-md-12">
<div class="faq-box">
<h5>Is it mandatory for all the registered taxpayers to file the GST Nil Return?</h5>
<p> No. Filing the GST Nil Return is mandatory only for the taxpayer with no sales or purchase input within a certain time period.</p>
<h5>Can I file my GST Nil Return on a yearly basis?</h5>
<p>No. As per the GST Act, 2017, the GST Nil Return can be filed only on monthly or quarterly basis</p>
<h5>Will I have to file the GST Nil Return after filing the regular GST Returns?</h5>
<p>GST Nil Return filing is applicable only for the registered taxpayers with zero sales or purchase record within a fixed timeline. If a business individual is filing the standard GST Returns, it means he/she is not applicable for the GST Nil Return filing.</p>
<h5>Should I visit the GST authority to file the GST Nil Return?</h5>
<p>No. Online Legal Service provides a complete online procedure for GST Nil Return filing so that you do not have to physically present anywhere to complete the filing process.</p>
<h5>How should I know that I am eligible for the GST Nil Return filing or not?</h5>
<p>Following the provisions of the GST Act, 2017, a business personnel becomes eligible for GST Nil Return filing in case of no sales/purchase input during a time period.</p>
</div>
</div>
</div>
</div>
<?php include('footer.php');?>