kts-component-invoice-operate 3.2.207 → 3.2.208
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.esm.js
CHANGED
|
@@ -14354,7 +14354,7 @@ var useColumns = (function (form) {
|
|
|
14354
14354
|
style: {
|
|
14355
14355
|
padding: '0 10px'
|
|
14356
14356
|
}
|
|
14357
|
-
}, isDutyFree(record) ? '***' : parseFloat(value).toFixed(2));
|
|
14357
|
+
}, isDutyFree(record) ? '***' : value ? parseFloat(value).toFixed(2) : '');
|
|
14358
14358
|
}
|
|
14359
14359
|
}
|
|
14360
14360
|
}, {
|
package/dist/index.js
CHANGED
|
@@ -14364,7 +14364,7 @@ var useColumns = (function (form) {
|
|
|
14364
14364
|
style: {
|
|
14365
14365
|
padding: '0 10px'
|
|
14366
14366
|
}
|
|
14367
|
-
}, isDutyFree(record) ? '***' : parseFloat(value).toFixed(2));
|
|
14367
|
+
}, isDutyFree(record) ? '***' : value ? parseFloat(value).toFixed(2) : '');
|
|
14368
14368
|
}
|
|
14369
14369
|
}
|
|
14370
14370
|
}, {
|
package/package.json
CHANGED
|
@@ -546,7 +546,7 @@ export default (form: WrappedFormUtils) => {
|
|
|
546
546
|
rules: getReplenishRules('taxAmount'),
|
|
547
547
|
})(<MyDiv loading={isCipher(changeField, 'taxAmount')} />);
|
|
548
548
|
} else {
|
|
549
|
-
return <span style={{ padding: '0 10px' }}>{isDutyFree(record) ? '***' : parseFloat(value).toFixed(2)}</span>;
|
|
549
|
+
return <span style={{ padding: '0 10px' }}>{isDutyFree(record) ? '***' : value ? parseFloat(value).toFixed(2) : ''}</span>;
|
|
550
550
|
}
|
|
551
551
|
},
|
|
552
552
|
},
|