@@ -217,7 +217,7 @@ exports.getpreviewspecificformData = asyncHandler( async (req, res) => {
217
217
getlandownwershipdetail_land_sql ,
218
218
[ id ]
219
219
) ;
220
- console . log ( "land:" , landOwnership ) ;
220
+ // console.log("land:",landOwnership);
221
221
} else if ( form_type == 2 ) {
222
222
//fetch pond form
223
223
[ [ landDevelopment ] ] = await connection . execute (
@@ -228,7 +228,7 @@ exports.getpreviewspecificformData = asyncHandler( async (req, res) => {
228
228
getlandownwershipdetail_pond_sql ,
229
229
[ id ]
230
230
) ;
231
- console . log ( "pond:" , landOwnership ) ;
231
+ // console.log("pond:",landOwnership);
232
232
} else if ( form_type == 3 ) {
233
233
//fetch plantation form
234
234
[ [ landDevelopment ] ] = await connection . execute (
@@ -239,7 +239,7 @@ exports.getpreviewspecificformData = asyncHandler( async (req, res) => {
239
239
getlandownwershipdetail_plant_sql ,
240
240
[ id ]
241
241
) ;
242
- console . log ( "plantation:" , landOwnership ) ;
242
+ // console.log("plantation:",landOwnership);
243
243
//console.log(landDevelopment);
244
244
} else {
245
245
return res . status ( 400 ) . json ( { error : 'Unknown form type' } ) ;
0 commit comments