kts-component-invoice-operate 3.2.223 → 3.2.224
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
|
@@ -24491,9 +24491,9 @@ var RealEstateInfo = decorator(Form.create())(function (props) {
|
|
|
24491
24491
|
|
|
24492
24492
|
var isParkFee = React.useCallback(function (taxClassificationCode) {
|
|
24493
24493
|
if (taxClassificationCode === '3040502020200000000') {
|
|
24494
|
-
return false;
|
|
24495
|
-
} else {
|
|
24496
24494
|
return true;
|
|
24495
|
+
} else {
|
|
24496
|
+
return false;
|
|
24497
24497
|
}
|
|
24498
24498
|
}, []);
|
|
24499
24499
|
var indexRef = React.useRef([]);
|
package/dist/index.js
CHANGED
|
@@ -24501,9 +24501,9 @@ var RealEstateInfo = GreyReactBox.decorator(ktsComponentsAntdX3.Form.create())(f
|
|
|
24501
24501
|
|
|
24502
24502
|
var isParkFee = React__default['default'].useCallback(function (taxClassificationCode) {
|
|
24503
24503
|
if (taxClassificationCode === '3040502020200000000') {
|
|
24504
|
-
return false;
|
|
24505
|
-
} else {
|
|
24506
24504
|
return true;
|
|
24505
|
+
} else {
|
|
24506
|
+
return false;
|
|
24507
24507
|
}
|
|
24508
24508
|
}, []);
|
|
24509
24509
|
var indexRef = React__default['default'].useRef([]);
|
package/package.json
CHANGED
|
@@ -45,9 +45,9 @@ export default decorator<RealEstateInfoProps, FormComponentProps & RealEstateInf
|
|
|
45
45
|
// 租赁期起止格式必须为“yyyy-MM-dd HH:mm(租赁期起)”+“空格”+“yyyy-MM-dd HH:mm(租赁期止)。
|
|
46
46
|
const isParkFee = React.useCallback((taxClassificationCode?: string) => {
|
|
47
47
|
if (taxClassificationCode === '3040502020200000000') {
|
|
48
|
-
return
|
|
48
|
+
return true
|
|
49
49
|
} else {
|
|
50
|
-
return
|
|
50
|
+
return false;
|
|
51
51
|
}
|
|
52
52
|
}, [])
|
|
53
53
|
|