Skip to content

Commit 619d512

Browse files
committed
some fixes
1 parent 2ba06ee commit 619d512

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
.zedstate
2+
typeormgen.json
3+
typeormgen-mysql.json
4+
typeormgen-sqlite.json
25
# Logs
36
logs
47
*.log

write-model.js

+7-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ const fs = require('fs-extra');
22
const { boolTypes, numberTypes, dateTypes } = require('./constants');
33
const readBase = require('./read-base');
44
const writeAssign = require('./write-assign');
5-
const writeFoot = require('./write-foot');
65
const writeHead = require('./write-head');
76
const writeRules = require('./write-rules');
87
const writeTojson = require('./write-tojson');
@@ -43,9 +42,9 @@ module.exports = function(info, nconf) {
4342
}
4443

4544
// Write constructor
46-
content += `${tab}constructor(props?: GenPartial<${conf.get('model')}>) {
45+
content += `${tab}constructor(props?: GenPartial<${nconf.get('model')}>) {
4746
`;
48-
if (conf.get('base')) {
47+
if (nconf.get('base')) {
4948
content += `${tab}${tab}super(props);
5049
`;
5150
} else {
@@ -83,14 +82,16 @@ function writeColumn(col, info, tab, columns, conf) {
8382
} else {
8483
type = 'Date';
8584
}
86-
} else if (info.type.indexOf('decimal') >= -1) {
85+
} else if (info.type.indexOf('decimal') > -1) {
8786
if (conf.get('big')) {
8887
type = 'Big';
8988
options = `{ type: '${info.type}', transformer: bigTransformer }`;
9089
} else {
91-
const [, precision, scale] = /((\d+)\,(\d+)\)/.exec(info.type);
9290
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+
}
9495
}
9596
}
9697

0 commit comments

Comments
 (0)