@@ -2,7 +2,6 @@ const fs = require('fs-extra');
2
2
const { boolTypes, numberTypes, dateTypes } = require ( './constants' ) ;
3
3
const readBase = require ( './read-base' ) ;
4
4
const writeAssign = require ( './write-assign' ) ;
5
- const writeFoot = require ( './write-foot' ) ;
6
5
const writeHead = require ( './write-head' ) ;
7
6
const writeRules = require ( './write-rules' ) ;
8
7
const writeTojson = require ( './write-tojson' ) ;
@@ -43,9 +42,9 @@ module.exports = function(info, nconf) {
43
42
}
44
43
45
44
// Write constructor
46
- content += `${ tab } constructor(props?: GenPartial<${ conf . get ( 'model' ) } >) {
45
+ content += `${ tab } constructor(props?: GenPartial<${ nconf . get ( 'model' ) } >) {
47
46
` ;
48
- if ( conf . get ( 'base' ) ) {
47
+ if ( nconf . get ( 'base' ) ) {
49
48
content += `${ tab } ${ tab } super(props);
50
49
` ;
51
50
} else {
@@ -83,14 +82,16 @@ function writeColumn(col, info, tab, columns, conf) {
83
82
} else {
84
83
type = 'Date' ;
85
84
}
86
- } else if ( info . type . indexOf ( 'decimal' ) >= - 1 ) {
85
+ } else if ( info . type . indexOf ( 'decimal' ) > - 1 ) {
87
86
if ( conf . get ( 'big' ) ) {
88
87
type = 'Big' ;
89
88
options = `{ type: '${ info . type } ', transformer: bigTransformer }` ;
90
89
} else {
91
- const [ , precision , scale ] = / ( ( \d + ) \, ( \d + ) \) / . exec ( info . type ) ;
92
90
type = 'number' ;
93
- options = `{ type: 'decimal', precision: ${ precision } , scale: ${ scale } }` ;
91
+ const results = / \( ( \d + ) \, ( \d + ) \) / . exec ( info . type ) ;
92
+ if ( results ) {
93
+ options = `{ type: 'decimal', precision: ${ results [ 1 ] } , scale: ${ results [ 2 ] } }` ;
94
+ }
94
95
}
95
96
}
96
97
0 commit comments