kts-component-invoice-operate 3.2.256 → 3.2.257

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.
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import 'antd/dist/antd.css';
3
+ declare const _default: () => JSX.Element;
4
+ export default _default;
@@ -56,6 +56,8 @@ export default class Invoice extends React.PureComponent<IInvoiceProps> {
56
56
  static readonly SignDigtal: React.FunctionComponent<import("./ui/digtal/Sign").IBuyerProps>;
57
57
  /** 特殊信息-不动产经营租赁服务(数电) */
58
58
  static readonly RealEstateInfo: React.FunctionComponent<import("./ui/digtal/RealEstateInfo").RealEstateInfoProps>;
59
+ /** 特殊信息-不动产销售(数电) */
60
+ static readonly RealEstateSales: React.FunctionComponent<import("./ui/digtal/RealEstateSales").RealEstateInfoProps>;
59
61
  /** 特殊信息-建筑服务(数电) */
60
62
  static readonly Architecture: React.FunctionComponent<import("./ui/digtal/Architecture").RealEstateInfoProps>;
61
63
  static readonly FreightList: typeof FreightList;
@@ -0,0 +1,15 @@
1
+ import React from "react";
2
+ import './index.less';
3
+ export interface RealEstateInfoProps {
4
+ /**
5
+ * 不动产地址数据
6
+ */
7
+ realEstateAddressOptions?: any[];
8
+ /**
9
+ * 不动产地址数据字段名
10
+ */
11
+ realEstateAddressFieldNames?: any;
12
+ }
13
+ /** 特殊信息-不动产销售 */
14
+ declare const _default: React.FunctionComponent<RealEstateInfoProps>;
15
+ export default _default;
package/dist/index.esm.js CHANGED
@@ -26740,9 +26740,358 @@ var LicensePlateNumber = function LicensePlateNumber(props) {
26740
26740
  // )
26741
26741
  // }
26742
26742
 
26743
- var css_248z$s = ".kts-invoice-operate-real-estate-info-digtal {\n padding: 20px;\n border-bottom: 2px solid #9F613E;\n border-left: 2px solid #9F613E;\n border-right: 2px solid #9F613E;\n}\n.kts-invoice-operate-real-estate-info-digtal .real-estate-info-digtal-label {\n color: #9F613E;\n font-weight: bold;\n}\n.kts-invoice-operate-real-estate-info-digtal .ktsAnt3x-row.ktsAnt3x-form-item {\n margin-bottom: 0;\n}\n.kts-invoice-operate-real-estate-info-digtal .ktsAnt3x-row.ktsAnt3x-form-item .ktsAnt3x-form-item-control {\n line-height: normal;\n}\n.kts-invoice-operate-real-estate-info-digtal .break-word {\n word-break: break-word;\n}\n";
26743
+ var css_248z$s = ".kts-invoice-operate-real-estate-info-digtal {\n padding: 20px;\n border-bottom: 2px solid #9F613E;\n border-left: 2px solid #9F613E;\n border-right: 2px solid #9F613E;\n}\n.kts-invoice-operate-real-estate-info-digtal .real-estate-info-digtal-label {\n color: #9F613E;\n font-weight: bold;\n}\n.kts-invoice-operate-real-estate-info-digtal .ktsAnt3x-row.ktsAnt3x-form-item {\n margin-bottom: 0;\n}\n.kts-invoice-operate-real-estate-info-digtal .ktsAntX-row {\n border-bottom: 1px dashed #9F613E;\n}\n.kts-invoice-operate-real-estate-info-digtal .ktsAntX-row:last-child {\n border-bottom: none;\n}\n";
26744
26744
  styleInject(css_248z$s);
26745
26745
 
26746
+ var RangePicker$1 = DatePicker.RangePicker;
26747
+ /** 特殊信息-不动产销售 */
26748
+
26749
+ var RealEstateSales = decorator(Form.create())(function (props) {
26750
+ /** 控制器 */
26751
+ var controller = Invoice.useInvoiceController();
26752
+ var form = props.form;
26753
+ var getFieldDecorator = form.getFieldDecorator;
26754
+ var model = controller.useMemo(function (s) {
26755
+ return s.model;
26756
+ }, []);
26757
+ var readOnly = React.useMemo(function () {
26758
+ return model === 'readOnly';
26759
+ }, [model]);
26760
+ var goodsList = controller.useMemo(function (s) {
26761
+ return s.goodsListState.goodsList;
26762
+ }, []);
26763
+ var indexRef = React.useRef([]);
26764
+ useEffect(function () {
26765
+ var dd = goodsList === null || goodsList === void 0 ? void 0 : goodsList.reduce(function (acc, cur) {
26766
+ if (cur.lineAttribute !== 1) {
26767
+ acc.push(cur.$index);
26768
+ }
26769
+
26770
+ return acc;
26771
+ }, []);
26772
+ indexRef.current = dd;
26773
+ }, [goodsList, indexRef]); // 注册 form
26774
+
26775
+ controller.useForm('realEstateSales', form);
26776
+
26777
+ var getList = function getList() {
26778
+ var decrease = indexRef.current.length > goodsList.length;
26779
+
26780
+ if (decrease) {
26781
+ //已删行列表
26782
+ var diff = indexRef.current.filter(function (item) {
26783
+ return !goodsList.find(function (i) {
26784
+ return i.$index === item;
26785
+ });
26786
+ });
26787
+ var formData = form.getFieldValue('realEstateDataDto');
26788
+
26789
+ if (Array.isArray(formData) && diff.length > 0) {
26790
+ var newForm = formData === null || formData === void 0 ? void 0 : formData.filter(function (item) {
26791
+ return !diff.find(function (i) {
26792
+ return i === item.$index;
26793
+ });
26794
+ });
26795
+ form.setFieldsValue({
26796
+ realEstateDataDto: newForm
26797
+ });
26798
+ } else {
26799
+ form.setFieldsValue({
26800
+ realEstateDataDto: undefined
26801
+ });
26802
+ }
26803
+ }
26804
+
26805
+ return goodsList.filter(function (item) {
26806
+ return item.lineAttribute !== 1;
26807
+ }).map(function (item, index) {
26808
+ if (item.lineAttribute !== 1) {
26809
+ return /*#__PURE__*/React.createElement(Row$1, {
26810
+ gutter: [17, 0]
26811
+ }, /*#__PURE__*/React.createElement(Col$1, {
26812
+ span: 6
26813
+ }, /*#__PURE__*/React.createElement(Form.Item, {
26814
+ label: "\u4E0D\u52A8\u4EA7\u5355\u5143\u4EE3\u7801"
26815
+ }, getFieldDecorator("realEstateDataDto[".concat(index, "].unitCode"), {
26816
+ rules: readOnly ? [] : []
26817
+ })(readOnly ? /*#__PURE__*/React.createElement(MyDiv$4, null) : /*#__PURE__*/React.createElement(Input$2, {
26818
+ autoComplete: 'off'
26819
+ })))), /*#__PURE__*/React.createElement(Col$1, {
26820
+ span: 6
26821
+ }, /*#__PURE__*/React.createElement(Form.Item, {
26822
+ label: "\u7F51\u7B7E\u5408\u540C\u5907\u6848\u7F16\u53F7"
26823
+ }, getFieldDecorator("realEstateDataDto[".concat(index, "].contractNumber"), {
26824
+ rules: readOnly ? [] : []
26825
+ })(readOnly ? /*#__PURE__*/React.createElement(MyDiv$4, null) : /*#__PURE__*/React.createElement(Input$2, {
26826
+ autoComplete: 'off'
26827
+ })))), /*#__PURE__*/React.createElement(Col$1, {
26828
+ span: 6
26829
+ }, /*#__PURE__*/React.createElement(Form.Item, {
26830
+ style: {
26831
+ display: 'none'
26832
+ }
26833
+ }, getFieldDecorator("realEstateDataDto[".concat(index, "].$index"), {
26834
+ initialValue: item.$index
26835
+ })( /*#__PURE__*/React.createElement(Input$2, null))), /*#__PURE__*/React.createElement(Form.Item, {
26836
+ label: "\u4E0D\u52A8\u4EA7\u5730\u5740"
26837
+ }, getFieldDecorator("realEstateDataDto[".concat(index, "].realEstateAddress"), {
26838
+ rules: readOnly ? [] : [{
26839
+ required: true,
26840
+ message: '请选择不动产地址'
26841
+ }]
26842
+ })(readOnly ? /*#__PURE__*/React.createElement(MyArrString$1, null) : /*#__PURE__*/React.createElement(Cascader, {
26843
+ style: {
26844
+ width: '100%'
26845
+ },
26846
+ options: props.realEstateAddressOptions,
26847
+ fieldNames: props.realEstateAddressFieldNames,
26848
+ placeholder: "\u8BF7\u9009\u62E9\u7701\u5E02\u533A\u53BF"
26849
+ })))), /*#__PURE__*/React.createElement(Col$1, {
26850
+ span: 6
26851
+ }, /*#__PURE__*/React.createElement(Form.Item, {
26852
+ label: "\u8BE6\u7EC6\u5730\u5740"
26853
+ }, getFieldDecorator("realEstateDataDto[".concat(index, "].realEstateDetailedAddress"), {
26854
+ rules: readOnly ? [] : [{
26855
+ required: true,
26856
+ message: '请输入详细地址'
26857
+ }, {
26858
+ max: 60,
26859
+ message: '详细地址最多60个字符'
26860
+ }, {
26861
+ validator: function () {
26862
+ var _validator = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(_, value, callback) {
26863
+ var pattern;
26864
+ return _regeneratorRuntime().wrap(function _callee$(_context) {
26865
+ while (1) {
26866
+ switch (_context.prev = _context.next) {
26867
+ case 0:
26868
+ pattern = /街|路|村|乡|镇|道|巷|号/;
26869
+
26870
+ if (pattern.test(value)) {
26871
+ callback();
26872
+ } else {
26873
+ callback('地址必须包含“街”、“路”、“村”、“乡”、“镇”、“道”、“巷”、“号”等任意一个关键词');
26874
+ }
26875
+
26876
+ case 2:
26877
+ case "end":
26878
+ return _context.stop();
26879
+ }
26880
+ }
26881
+ }, _callee);
26882
+ }));
26883
+
26884
+ function validator(_x, _x2, _x3) {
26885
+ return _validator.apply(this, arguments);
26886
+ }
26887
+
26888
+ return validator;
26889
+ }()
26890
+ }]
26891
+ })(readOnly ? /*#__PURE__*/React.createElement(MyDiv$4, null) : /*#__PURE__*/React.createElement(Input$2, {
26892
+ autoComplete: 'off',
26893
+ placeholder: "\u8BF7\u8F93\u5165\u8BE6\u7EC6\u5730\u5740"
26894
+ })))), /*#__PURE__*/React.createElement(Col$1, {
26895
+ span: 6
26896
+ }, /*#__PURE__*/React.createElement(Form.Item, {
26897
+ label: "\u8DE8\u5730\uFF08\u5E02\uFF09\u6807\u5FD7"
26898
+ }, getFieldDecorator("realEstateDataDto[".concat(index, "].crossCitiesSign"), {
26899
+ rules: readOnly ? [] : [{
26900
+ required: true,
26901
+ message: '请选择跨地(市)标志'
26902
+ }]
26903
+ })(readOnly ? /*#__PURE__*/React.createElement(MyNY$1, null) : /*#__PURE__*/React.createElement(Select$2, {
26904
+ placeholder: "\u8BF7\u9009\u62E9",
26905
+ style: {
26906
+ width: '100%'
26907
+ }
26908
+ }, /*#__PURE__*/React.createElement(Select$2.Option, {
26909
+ value: 'Y'
26910
+ }, "\u662F"), /*#__PURE__*/React.createElement(Select$2.Option, {
26911
+ value: 'N'
26912
+ }, "\u5426"))))), /*#__PURE__*/React.createElement(Col$1, {
26913
+ span: 6
26914
+ }, /*#__PURE__*/React.createElement(Form.Item, {
26915
+ label: "\u571F\u5730\u589E\u503C\u7A0E\u9879\u76EE\u7F16\u53F7"
26916
+ }, getFieldDecorator("realEstateDataDto[".concat(index, "].landTaxProjNo"), {
26917
+ rules: readOnly ? [] : []
26918
+ })(readOnly ? /*#__PURE__*/React.createElement(MyDiv$4, null) : /*#__PURE__*/React.createElement(Input$2, {
26919
+ autoComplete: 'off'
26920
+ })))), /*#__PURE__*/React.createElement(Col$1, {
26921
+ span: 6
26922
+ }, /*#__PURE__*/React.createElement(Form.Item, {
26923
+ label: "\u6838\u5B9A\u8BA1\u7A0E\u4EF7\u683C"
26924
+ }, getFieldDecorator("realEstateDataDto[".concat(index, "].approvedTaxableAmount"), {
26925
+ rules: readOnly ? [] : []
26926
+ })(readOnly ? /*#__PURE__*/React.createElement(MyDiv$4, null) : /*#__PURE__*/React.createElement(Input$2, {
26927
+ autoComplete: 'off',
26928
+ type: "number"
26929
+ })))), /*#__PURE__*/React.createElement(Col$1, {
26930
+ span: 6
26931
+ }, /*#__PURE__*/React.createElement(Form.Item, {
26932
+ label: "\u5B9E\u9645\u6210\u4EA4\u542B\u7A0E\u91D1\u989D"
26933
+ }, getFieldDecorator("realEstateDataDto[".concat(index, "].tradedIncludeAmount"), {
26934
+ rules: readOnly ? [] : []
26935
+ })(readOnly ? /*#__PURE__*/React.createElement(MyDiv$4, null) : /*#__PURE__*/React.createElement(Input$2, {
26936
+ autoComplete: 'off',
26937
+ type: "number"
26938
+ })))), /*#__PURE__*/React.createElement(Col$1, {
26939
+ span: 6
26940
+ }, /*#__PURE__*/React.createElement(Form.Item, {
26941
+ label: "\u623F\u5C4B\u4EA7\u6743\u8BC1\u4E66/\u4E0D\u52A8\u4EA7\u6743\u8BC1\u53F7"
26942
+ }, getFieldDecorator("realEstateDataDto[".concat(index, "].realEstateNumber"), {
26943
+ rules: readOnly ? [] : [{
26944
+ max: 40,
26945
+ message: '证书编号最多40个字符'
26946
+ }]
26947
+ })(readOnly ? /*#__PURE__*/React.createElement(MyDiv$4, null) : /*#__PURE__*/React.createElement(Input$2, {
26948
+ autoComplete: 'off'
26949
+ })))), /*#__PURE__*/React.createElement(Col$1, {
26950
+ span: 6
26951
+ }, /*#__PURE__*/React.createElement(Form.Item, {
26952
+ label: "\u9762\u79EF\u5355\u4F4D"
26953
+ }, getFieldDecorator("realEstateDataDto[".concat(index, "].unit"), {
26954
+ rules: readOnly ? [] : [{
26955
+ required: true,
26956
+ message: '请选择面积单位'
26957
+ }]
26958
+ })(readOnly ? /*#__PURE__*/React.createElement(MyDiv$4, null) : /*#__PURE__*/React.createElement(Select$2, {
26959
+ placeholder: "\u8BF7\u9009\u62E9",
26960
+ style: {
26961
+ width: '100%'
26962
+ }
26963
+ }, /*#__PURE__*/React.createElement(Select$2.Option, {
26964
+ value: "\u5E73\u65B9\u5343\u7C73"
26965
+ }, "\u5E73\u65B9\u5343\u7C73"), /*#__PURE__*/React.createElement(Select$2.Option, {
26966
+ value: "\u5E73\u65B9\u7C73"
26967
+ }, "\u5E73\u65B9\u7C73"), /*#__PURE__*/React.createElement(Select$2.Option, {
26968
+ value: "\u516C\u9877"
26969
+ }, "\u516C\u9877"), /*#__PURE__*/React.createElement(Select$2.Option, {
26970
+ value: "\u4EA9"
26971
+ }, "\u4EA9"), /*#__PURE__*/React.createElement(Select$2.Option, {
26972
+ value: "h\u33A1"
26973
+ }, "h\u33A1"), /*#__PURE__*/React.createElement(Select$2.Option, {
26974
+ value: "k\u33A1"
26975
+ }, "k\u33A1"), /*#__PURE__*/React.createElement(Select$2.Option, {
26976
+ value: "\u33A1"
26977
+ }, "\u33A1"))))));
26978
+ }
26979
+ });
26980
+ };
26981
+
26982
+ return /*#__PURE__*/React.createElement("div", {
26983
+ className: "kts-invoice-operate-real-estate-info-digtal"
26984
+ }, /*#__PURE__*/React.createElement("div", {
26985
+ className: 'real-estate-info-digtal-label'
26986
+ }, "\u7279\u5B9A\u4FE1\u606F-\u4E0D\u52A8\u4EA7\u9500\u552E"), getList());
26987
+ });
26988
+
26989
+ var MyDiv$4 = /*#__PURE__*/function (_React$Component) {
26990
+ _inherits(MyDiv, _React$Component);
26991
+
26992
+ var _super = _createSuper(MyDiv);
26993
+
26994
+ function MyDiv() {
26995
+ _classCallCheck(this, MyDiv);
26996
+
26997
+ return _super.apply(this, arguments);
26998
+ }
26999
+
27000
+ _createClass(MyDiv, [{
27001
+ key: "render",
27002
+ value: function render() {
27003
+ return /*#__PURE__*/React.createElement("div", {
27004
+ style: this.props.style
27005
+ }, this.props.value);
27006
+ }
27007
+ }]);
27008
+
27009
+ return MyDiv;
27010
+ }(React.Component);
27011
+
27012
+ var MyArrString$1 = /*#__PURE__*/function (_React$Component2) {
27013
+ _inherits(MyArrString, _React$Component2);
27014
+
27015
+ var _super2 = _createSuper(MyArrString);
27016
+
27017
+ function MyArrString() {
27018
+ _classCallCheck(this, MyArrString);
27019
+
27020
+ return _super2.apply(this, arguments);
27021
+ }
27022
+
27023
+ _createClass(MyArrString, [{
27024
+ key: "render",
27025
+ value: function render() {
27026
+ var _this$props$value;
27027
+
27028
+ return /*#__PURE__*/React.createElement("div", {
27029
+ style: this.props.style
27030
+ }, (_this$props$value = this.props.value) === null || _this$props$value === void 0 ? void 0 : _this$props$value.filter(function (e) {
27031
+ return !!e;
27032
+ }).join(','));
27033
+ }
27034
+ }]);
27035
+
27036
+ return MyArrString;
27037
+ }(React.Component);
27038
+
27039
+ var MyArrMoment$1 = /*#__PURE__*/function (_React$Component3) {
27040
+ _inherits(MyArrMoment, _React$Component3);
27041
+
27042
+ var _super3 = _createSuper(MyArrMoment);
27043
+
27044
+ function MyArrMoment() {
27045
+ _classCallCheck(this, MyArrMoment);
27046
+
27047
+ return _super3.apply(this, arguments);
27048
+ }
27049
+
27050
+ _createClass(MyArrMoment, [{
27051
+ key: "render",
27052
+ value: function render() {
27053
+ var _this$props$value2 = this.props.value,
27054
+ value = _this$props$value2 === void 0 ? [] : _this$props$value2;
27055
+ return /*#__PURE__*/React.createElement("div", {
27056
+ style: this.props.style
27057
+ }, /*#__PURE__*/React.createElement("span", null, hooks.isMoment(value[0]) && value[0].format('YYYY-MM-DD')), /*#__PURE__*/React.createElement("span", {
27058
+ style: {
27059
+ color: '#9F603D',
27060
+ fontWeight: 600
27061
+ }
27062
+ }, " - "), /*#__PURE__*/React.createElement("span", null, hooks.isMoment(value[1]) && value[0].format('YYYY-MM-DD')));
27063
+ }
27064
+ }]);
27065
+
27066
+ return MyArrMoment;
27067
+ }(React.Component);
27068
+
27069
+ var MyNY$1 = /*#__PURE__*/function (_React$Component4) {
27070
+ _inherits(MyNY, _React$Component4);
27071
+
27072
+ var _super4 = _createSuper(MyNY);
27073
+
27074
+ function MyNY() {
27075
+ _classCallCheck(this, MyNY);
27076
+
27077
+ return _super4.apply(this, arguments);
27078
+ }
27079
+
27080
+ _createClass(MyNY, [{
27081
+ key: "render",
27082
+ value: function render() {
27083
+ return /*#__PURE__*/React.createElement("div", {
27084
+ style: this.props.style
27085
+ }, this.props.value === 'Y' ? '是' : '否');
27086
+ }
27087
+ }]);
27088
+
27089
+ return MyNY;
27090
+ }(React.Component);
27091
+
27092
+ var css_248z$t = ".kts-invoice-operate-real-estate-info-digtal {\n padding: 20px;\n border-bottom: 2px solid #9F613E;\n border-left: 2px solid #9F613E;\n border-right: 2px solid #9F613E;\n}\n.kts-invoice-operate-real-estate-info-digtal .real-estate-info-digtal-label {\n color: #9F613E;\n font-weight: bold;\n}\n.kts-invoice-operate-real-estate-info-digtal .ktsAnt3x-row.ktsAnt3x-form-item {\n margin-bottom: 0;\n}\n.kts-invoice-operate-real-estate-info-digtal .ktsAnt3x-row.ktsAnt3x-form-item .ktsAnt3x-form-item-control {\n line-height: normal;\n}\n.kts-invoice-operate-real-estate-info-digtal .break-word {\n word-break: break-word;\n}\n";
27093
+ styleInject(css_248z$t);
27094
+
26746
27095
  var _path$a;
26747
27096
 
26748
27097
  function _extends$e() { _extends$e = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$e.apply(this, arguments); }
@@ -26800,7 +27149,7 @@ var Architecture = decorator(Form.create())(function (props) {
26800
27149
  max: 16,
26801
27150
  message: '最多16个字符'
26802
27151
  }]
26803
- })(readOnly ? /*#__PURE__*/React.createElement(MyDiv$4, null) : /*#__PURE__*/React.createElement(Input$2, {
27152
+ })(readOnly ? /*#__PURE__*/React.createElement(MyDiv$5, null) : /*#__PURE__*/React.createElement(Input$2, {
26804
27153
  maxLength: 16,
26805
27154
  autoComplete: 'off',
26806
27155
  placeholder: "\u8BF7\u8F93\u5165"
@@ -26813,7 +27162,7 @@ var Architecture = decorator(Form.create())(function (props) {
26813
27162
  required: true,
26814
27163
  message: '请选择省市区县'
26815
27164
  }]
26816
- })(readOnly ? /*#__PURE__*/React.createElement(MyArrString$1, null) : /*#__PURE__*/React.createElement(Cascader, {
27165
+ })(readOnly ? /*#__PURE__*/React.createElement(MyArrString$2, null) : /*#__PURE__*/React.createElement(Cascader, {
26817
27166
  style: {
26818
27167
  width: '100%'
26819
27168
  },
@@ -26838,7 +27187,7 @@ var Architecture = decorator(Form.create())(function (props) {
26838
27187
  return pattern.test(value) ? Promise.resolve() : Promise.reject('地址必须包含“街”、“路”、“村”、“乡”、“镇”、“道”、“巷”、“号”等任意一个关键词');
26839
27188
  }
26840
27189
  }]
26841
- })(readOnly ? /*#__PURE__*/React.createElement(MyDiv$4, null) : /*#__PURE__*/React.createElement(Input$2, {
27190
+ })(readOnly ? /*#__PURE__*/React.createElement(MyDiv$5, null) : /*#__PURE__*/React.createElement(Input$2, {
26842
27191
  autoComplete: 'off',
26843
27192
  placeholder: "\u8BF7\u8F93\u5165\u8BE6\u7EC6\u5730\u5740"
26844
27193
  })))), /*#__PURE__*/React.createElement(Col$1, {
@@ -26850,7 +27199,7 @@ var Architecture = decorator(Form.create())(function (props) {
26850
27199
  required: true,
26851
27200
  message: '请选择跨地(市)标志'
26852
27201
  }]
26853
- })(readOnly ? /*#__PURE__*/React.createElement(MyNY$1, null) : /*#__PURE__*/React.createElement(Select$2, {
27202
+ })(readOnly ? /*#__PURE__*/React.createElement(MyNY$2, null) : /*#__PURE__*/React.createElement(Select$2, {
26854
27203
  placeholder: "\u8BF7\u9009\u62E9",
26855
27204
  style: {
26856
27205
  width: '100%'
@@ -26880,7 +27229,7 @@ var Architecture = decorator(Form.create())(function (props) {
26880
27229
  required: crossCitiesSign === 'Y',
26881
27230
  message: '请输入跨区域涉税事项报验管理编号'
26882
27231
  }]
26883
- })(readOnly ? /*#__PURE__*/React.createElement(MyDiv$4, null) : /*#__PURE__*/React.createElement(Input$2, {
27232
+ })(readOnly ? /*#__PURE__*/React.createElement(MyDiv$5, null) : /*#__PURE__*/React.createElement(Input$2, {
26884
27233
  readOnly: true,
26885
27234
  autoComplete: 'off',
26886
27235
  addonAfter: props.showGetCrossRegionTaxReportNoButton && /*#__PURE__*/React.createElement(Button$2, {
@@ -26937,13 +27286,13 @@ var Architecture = decorator(Form.create())(function (props) {
26937
27286
  max: 200,
26938
27287
  message: '建筑项目名称最多200个字符'
26939
27288
  }]
26940
- })(readOnly ? /*#__PURE__*/React.createElement(MyDiv$4, null) : /*#__PURE__*/React.createElement(Input$2, {
27289
+ })(readOnly ? /*#__PURE__*/React.createElement(MyDiv$5, null) : /*#__PURE__*/React.createElement(Input$2, {
26941
27290
  autoComplete: 'off',
26942
27291
  placeholder: "\u8BF7\u8F93\u5165"
26943
27292
  }))))));
26944
27293
  });
26945
27294
 
26946
- var MyDiv$4 = /*#__PURE__*/function (_React$Component) {
27295
+ var MyDiv$5 = /*#__PURE__*/function (_React$Component) {
26947
27296
  _inherits(MyDiv, _React$Component);
26948
27297
 
26949
27298
  var _super = _createSuper(MyDiv);
@@ -26966,7 +27315,7 @@ var MyDiv$4 = /*#__PURE__*/function (_React$Component) {
26966
27315
  return MyDiv;
26967
27316
  }(React.Component);
26968
27317
 
26969
- var MyArrString$1 = /*#__PURE__*/function (_React$Component2) {
27318
+ var MyArrString$2 = /*#__PURE__*/function (_React$Component2) {
26970
27319
  _inherits(MyArrString, _React$Component2);
26971
27320
 
26972
27321
  var _super2 = _createSuper(MyArrString);
@@ -26993,7 +27342,7 @@ var MyArrString$1 = /*#__PURE__*/function (_React$Component2) {
26993
27342
  return MyArrString;
26994
27343
  }(React.Component);
26995
27344
 
26996
- var MyArrMoment$1 = /*#__PURE__*/function (_React$Component3) {
27345
+ var MyArrMoment$2 = /*#__PURE__*/function (_React$Component3) {
26997
27346
  _inherits(MyArrMoment, _React$Component3);
26998
27347
 
26999
27348
  var _super3 = _createSuper(MyArrMoment);
@@ -27023,7 +27372,7 @@ var MyArrMoment$1 = /*#__PURE__*/function (_React$Component3) {
27023
27372
  return MyArrMoment;
27024
27373
  }(React.Component);
27025
27374
 
27026
- var MyNY$1 = /*#__PURE__*/function (_React$Component4) {
27375
+ var MyNY$2 = /*#__PURE__*/function (_React$Component4) {
27027
27376
  _inherits(MyNY, _React$Component4);
27028
27377
 
27029
27378
  var _super4 = _createSuper(MyNY);
@@ -27046,8 +27395,8 @@ var MyNY$1 = /*#__PURE__*/function (_React$Component4) {
27046
27395
  return MyNY;
27047
27396
  }(React.Component);
27048
27397
 
27049
- var css_248z$t = ".kts-invoice-operate-goods-table-virtual .ktsAntX-table-body {\n height: 280px;\n}\n.kts-invoice-operate-goods-table-virtual .ktsAntX-table.ktsAntX-table-bordered > .ktsAntX-table-container > .ktsAntX-table-header > table > thead > tr > th {\n padding: 0 10px;\n height: 32px;\n background: #f4f4f4;\n}\n.kts-invoice-operate-goods-table-virtual .ktsAntX-table.ktsAntX-table-bordered > .ktsAntX-table-container > .ktsAntX-table-body > table > tbody > tr > td {\n padding: 0;\n height: 32px;\n}\n.kts-invoice-operate-goods-table-virtual .ktsAntX-table .ktsAntX-table-body {\n position: relative;\n}\n.kts-invoice-operate-goods-table-virtual .ktsAntX-table .ktsAntX-table-body > table {\n position: absolute;\n left: 0;\n top: 0;\n}\n.kts-invoice-operate-goods-table-virtual .ktsAntX-table .ktsAntX-table-tbody {\n position: relative;\n}\n.kts-invoice-operate-goods-table-virtual .ktsAntX-checkbox-wrapper .ktsAntX-checkbox-inner {\n width: 16px;\n height: 16px;\n border: 1px solid #d9d9d9;\n border-radius: 2px;\n top: 1px;\n}\n";
27050
- styleInject(css_248z$t);
27398
+ var css_248z$u = ".kts-invoice-operate-goods-table-virtual .ktsAntX-table-body {\n height: 280px;\n}\n.kts-invoice-operate-goods-table-virtual .ktsAntX-table.ktsAntX-table-bordered > .ktsAntX-table-container > .ktsAntX-table-header > table > thead > tr > th {\n padding: 0 10px;\n height: 32px;\n background: #f4f4f4;\n}\n.kts-invoice-operate-goods-table-virtual .ktsAntX-table.ktsAntX-table-bordered > .ktsAntX-table-container > .ktsAntX-table-body > table > tbody > tr > td {\n padding: 0;\n height: 32px;\n}\n.kts-invoice-operate-goods-table-virtual .ktsAntX-table .ktsAntX-table-body {\n position: relative;\n}\n.kts-invoice-operate-goods-table-virtual .ktsAntX-table .ktsAntX-table-body > table {\n position: absolute;\n left: 0;\n top: 0;\n}\n.kts-invoice-operate-goods-table-virtual .ktsAntX-table .ktsAntX-table-tbody {\n position: relative;\n}\n.kts-invoice-operate-goods-table-virtual .ktsAntX-checkbox-wrapper .ktsAntX-checkbox-inner {\n width: 16px;\n height: 16px;\n border: 1px solid #d9d9d9;\n border-radius: 2px;\n top: 1px;\n}\n";
27399
+ styleInject(css_248z$u);
27051
27400
 
27052
27401
  function TableVirtual$2 (props) {
27053
27402
  var _props$dataSource2;
@@ -27345,8 +27694,8 @@ function _rollBottom$2() {
27345
27694
  return _rollBottom$2.apply(this, arguments);
27346
27695
  }
27347
27696
 
27348
- var css_248z$u = ".kts-invoice-operate-goods-list-itemName-drag-container-u {\n position: relative;\n}\n.kts-invoice-operate-goods-list-itemName-drag-container-u::after {\n content: \" \";\n width: 100%;\n height: 2px;\n background: #0074ff;\n position: absolute;\n left: 0;\n top: 0;\n z-index: 9999;\n}\n.kts-invoice-operate-goods-list-itemName-drag-container-d {\n position: relative;\n}\n.kts-invoice-operate-goods-list-itemName-drag-container-d::after {\n content: \" \";\n width: 100%;\n height: 2px;\n background: #0074ff;\n position: absolute;\n left: 0;\n bottom: 0;\n z-index: 9999;\n}\n";
27349
- styleInject(css_248z$u);
27697
+ var css_248z$v = ".kts-invoice-operate-goods-list-itemName-drag-container-u {\n position: relative;\n}\n.kts-invoice-operate-goods-list-itemName-drag-container-u::after {\n content: \" \";\n width: 100%;\n height: 2px;\n background: #0074ff;\n position: absolute;\n left: 0;\n top: 0;\n z-index: 9999;\n}\n.kts-invoice-operate-goods-list-itemName-drag-container-d {\n position: relative;\n}\n.kts-invoice-operate-goods-list-itemName-drag-container-d::after {\n content: \" \";\n width: 100%;\n height: 2px;\n background: #0074ff;\n position: absolute;\n left: 0;\n bottom: 0;\n z-index: 9999;\n}\n";
27698
+ styleInject(css_248z$v);
27350
27699
 
27351
27700
  function TableRow$2(props) {
27352
27701
  var rowKey = props['data-row-key'];
@@ -28268,8 +28617,8 @@ var useDelRowButton$2 = (function () {
28268
28617
  };
28269
28618
  });
28270
28619
 
28271
- var css_248z$v = ".kts-invoice-operate-freight {\n border-bottom: 2px solid #9F613E;\n border-left: 2px solid #9F613E;\n border-right: 2px solid #9F613E;\n}\n.kts-invoice-operate-freight .real-estate-info-digtal-label {\n padding: 20px 20px 0;\n color: #9F613E;\n font-weight: bold;\n}\n.kts-invoice-operate-freight .ktsAnt3x-row.ktsAnt3x-form-item {\n margin-bottom: 0;\n}\n.kts-invoice-operate-goods-list-digtal .goods-list-digtal-discount-tag {\n display: inline-block;\n height: 20px;\n line-height: 20px;\n border: 1px solid;\n padding: 0 5px;\n border-radius: 4px;\n}\n.kts-invoice-operate-goods-list-digtal .kts-invoice-operate-goods-list-table-tax-rate .ktsAnt3x-select-selection-selected-value {\n float: right;\n}\n.kts-invoice-operate-goods-list-digtal .kts-invoice-operate-freight-list-able {\n display: flex;\n padding: 10px;\n border-bottom: 2px solid #9F613E;\n gap: 10px;\n align-items: center;\n}\n.kts-invoice-operate-goods-list-digtal .ktsAntX-table .ktsAntX-table-row.kts-invoice-operate-goods-be-discount .ktsAntX-table-cell {\n color: #f00;\n}\n.kts-invoice-operate-goods-list-table-digtal .ktsAnt3x-form-item-control.has-error {\n border: 1px solid #f00;\n}\n.kts-invoice-operate-goods-list-table-digtal .kts-invoice-operate-goods-list-table.kts-invoice-operate-prefab .ktsAnt3x-table-row {\n color: rgba(0, 0, 0, 0.25);\n background: #f5f5f5;\n}\n.kts-invoice-operate-goods-list-table-digtal .kts-invoice-operate-goods-list-table-search-protrude {\n background: #ff0;\n color: #000;\n font-weight: bold;\n}\n";
28272
- styleInject(css_248z$v);
28620
+ var css_248z$w = ".kts-invoice-operate-freight {\n border-bottom: 2px solid #9F613E;\n border-left: 2px solid #9F613E;\n border-right: 2px solid #9F613E;\n}\n.kts-invoice-operate-freight .real-estate-info-digtal-label {\n padding: 20px 20px 0;\n color: #9F613E;\n font-weight: bold;\n}\n.kts-invoice-operate-freight .ktsAnt3x-row.ktsAnt3x-form-item {\n margin-bottom: 0;\n}\n.kts-invoice-operate-goods-list-digtal .goods-list-digtal-discount-tag {\n display: inline-block;\n height: 20px;\n line-height: 20px;\n border: 1px solid;\n padding: 0 5px;\n border-radius: 4px;\n}\n.kts-invoice-operate-goods-list-digtal .kts-invoice-operate-goods-list-table-tax-rate .ktsAnt3x-select-selection-selected-value {\n float: right;\n}\n.kts-invoice-operate-goods-list-digtal .kts-invoice-operate-freight-list-able {\n display: flex;\n padding: 10px;\n border-bottom: 2px solid #9F613E;\n gap: 10px;\n align-items: center;\n}\n.kts-invoice-operate-goods-list-digtal .ktsAntX-table .ktsAntX-table-row.kts-invoice-operate-goods-be-discount .ktsAntX-table-cell {\n color: #f00;\n}\n.kts-invoice-operate-goods-list-table-digtal .ktsAnt3x-form-item-control.has-error {\n border: 1px solid #f00;\n}\n.kts-invoice-operate-goods-list-table-digtal .kts-invoice-operate-goods-list-table.kts-invoice-operate-prefab .ktsAnt3x-table-row {\n color: rgba(0, 0, 0, 0.25);\n background: #f5f5f5;\n}\n.kts-invoice-operate-goods-list-table-digtal .kts-invoice-operate-goods-list-table-search-protrude {\n background: #ff0;\n color: #000;\n font-weight: bold;\n}\n";
28621
+ styleInject(css_248z$w);
28273
28622
 
28274
28623
  var FreightList = /*#__PURE__*/function (_React$Component) {
28275
28624
  _inherits(FreightList, _React$Component);
@@ -28499,8 +28848,8 @@ var Main$4 = decorator(Form.create())(function (props) {
28499
28848
  }))));
28500
28849
  });
28501
28850
 
28502
- var css_248z$w = ".kts-invoice-operate-goods-table-virtual .ktsAntX-table-body {\n height: 280px;\n}\n.kts-invoice-operate-goods-table-virtual .ktsAntX-table.ktsAntX-table-bordered > .ktsAntX-table-container > .ktsAntX-table-header > table > thead > tr > th {\n padding: 0 10px;\n height: 32px;\n background: #f4f4f4;\n}\n.kts-invoice-operate-goods-table-virtual .ktsAntX-table.ktsAntX-table-bordered > .ktsAntX-table-container > .ktsAntX-table-body > table > tbody > tr > td {\n padding: 0;\n height: 32px;\n}\n.kts-invoice-operate-goods-table-virtual .ktsAntX-table .ktsAntX-table-body {\n position: relative;\n}\n.kts-invoice-operate-goods-table-virtual .ktsAntX-table .ktsAntX-table-body > table {\n position: absolute;\n left: 0;\n top: 0;\n}\n.kts-invoice-operate-goods-table-virtual .ktsAntX-table .ktsAntX-table-tbody {\n position: relative;\n}\n.kts-invoice-operate-goods-table-virtual .ktsAntX-checkbox-wrapper .ktsAntX-checkbox-inner {\n width: 16px;\n height: 16px;\n border: 1px solid #d9d9d9;\n border-radius: 2px;\n top: 1px;\n}\n";
28503
- styleInject(css_248z$w);
28851
+ var css_248z$x = ".kts-invoice-operate-goods-table-virtual .ktsAntX-table-body {\n height: 280px;\n}\n.kts-invoice-operate-goods-table-virtual .ktsAntX-table.ktsAntX-table-bordered > .ktsAntX-table-container > .ktsAntX-table-header > table > thead > tr > th {\n padding: 0 10px;\n height: 32px;\n background: #f4f4f4;\n}\n.kts-invoice-operate-goods-table-virtual .ktsAntX-table.ktsAntX-table-bordered > .ktsAntX-table-container > .ktsAntX-table-body > table > tbody > tr > td {\n padding: 0;\n height: 32px;\n}\n.kts-invoice-operate-goods-table-virtual .ktsAntX-table .ktsAntX-table-body {\n position: relative;\n}\n.kts-invoice-operate-goods-table-virtual .ktsAntX-table .ktsAntX-table-body > table {\n position: absolute;\n left: 0;\n top: 0;\n}\n.kts-invoice-operate-goods-table-virtual .ktsAntX-table .ktsAntX-table-tbody {\n position: relative;\n}\n.kts-invoice-operate-goods-table-virtual .ktsAntX-checkbox-wrapper .ktsAntX-checkbox-inner {\n width: 16px;\n height: 16px;\n border: 1px solid #d9d9d9;\n border-radius: 2px;\n top: 1px;\n}\n";
28852
+ styleInject(css_248z$x);
28504
28853
 
28505
28854
  function TableVirtual$3 (props) {
28506
28855
  var _props$dataSource2;
@@ -28798,8 +29147,8 @@ function _rollBottom$3() {
28798
29147
  return _rollBottom$3.apply(this, arguments);
28799
29148
  }
28800
29149
 
28801
- var css_248z$x = ".kts-invoice-operate-goods-list-itemName-drag-container-u {\n position: relative;\n}\n.kts-invoice-operate-goods-list-itemName-drag-container-u::after {\n content: \" \";\n width: 100%;\n height: 2px;\n background: #0074ff;\n position: absolute;\n left: 0;\n top: 0;\n z-index: 9999;\n}\n.kts-invoice-operate-goods-list-itemName-drag-container-d {\n position: relative;\n}\n.kts-invoice-operate-goods-list-itemName-drag-container-d::after {\n content: \" \";\n width: 100%;\n height: 2px;\n background: #0074ff;\n position: absolute;\n left: 0;\n bottom: 0;\n z-index: 9999;\n}\n";
28802
- styleInject(css_248z$x);
29150
+ var css_248z$y = ".kts-invoice-operate-goods-list-itemName-drag-container-u {\n position: relative;\n}\n.kts-invoice-operate-goods-list-itemName-drag-container-u::after {\n content: \" \";\n width: 100%;\n height: 2px;\n background: #0074ff;\n position: absolute;\n left: 0;\n top: 0;\n z-index: 9999;\n}\n.kts-invoice-operate-goods-list-itemName-drag-container-d {\n position: relative;\n}\n.kts-invoice-operate-goods-list-itemName-drag-container-d::after {\n content: \" \";\n width: 100%;\n height: 2px;\n background: #0074ff;\n position: absolute;\n left: 0;\n bottom: 0;\n z-index: 9999;\n}\n";
29151
+ styleInject(css_248z$y);
28803
29152
 
28804
29153
  function TableRow$3(props) {
28805
29154
  var rowKey = props['data-row-key'];
@@ -29565,8 +29914,8 @@ var useDelRowButton$3 = (function () {
29565
29914
  };
29566
29915
  });
29567
29916
 
29568
- var css_248z$y = ".kts-invoice-operate-freight {\n border-bottom: 2px solid #9F613E;\n border-left: 2px solid #9F613E;\n border-right: 2px solid #9F613E;\n}\n.kts-invoice-operate-freight .real-estate-info-digtal-label {\n padding: 20px 20px 0;\n color: #9F613E;\n font-weight: bold;\n}\n.kts-invoice-operate-freight .ktsAnt3x-row.ktsAnt3x-form-item {\n margin-bottom: 0;\n}\n.kts-invoice-operate-goods-list-digtal .goods-list-digtal-discount-tag {\n display: inline-block;\n height: 20px;\n line-height: 20px;\n border: 1px solid;\n padding: 0 5px;\n border-radius: 4px;\n}\n.kts-invoice-operate-goods-list-digtal .kts-invoice-operate-goods-list-table-tax-rate .ktsAnt3x-select-selection-selected-value {\n float: right;\n}\n.kts-invoice-operate-goods-list-digtal .kts-invoice-operate-freight-list-able {\n display: flex;\n padding: 10px;\n border-bottom: 2px solid #9F613E;\n gap: 10px;\n align-items: center;\n}\n.kts-invoice-operate-goods-list-digtal .ktsAntX-table .ktsAntX-table-row.kts-invoice-operate-goods-be-discount .ktsAntX-table-cell {\n color: #f00;\n}\n.kts-invoice-operate-goods-list-table-digtal .ktsAnt3x-form-item-control.has-error {\n border: 1px solid #f00;\n}\n.kts-invoice-operate-goods-list-table-digtal .kts-invoice-operate-goods-list-table.kts-invoice-operate-prefab .ktsAnt3x-table-row {\n color: rgba(0, 0, 0, 0.25);\n background: #f5f5f5;\n}\n.kts-invoice-operate-goods-list-table-digtal .kts-invoice-operate-goods-list-table-search-protrude {\n background: #ff0;\n color: #000;\n font-weight: bold;\n}\n";
29569
- styleInject(css_248z$y);
29917
+ var css_248z$z = ".kts-invoice-operate-freight {\n border-bottom: 2px solid #9F613E;\n border-left: 2px solid #9F613E;\n border-right: 2px solid #9F613E;\n}\n.kts-invoice-operate-freight .real-estate-info-digtal-label {\n padding: 20px 20px 0;\n color: #9F613E;\n font-weight: bold;\n}\n.kts-invoice-operate-freight .ktsAnt3x-row.ktsAnt3x-form-item {\n margin-bottom: 0;\n}\n.kts-invoice-operate-goods-list-digtal .goods-list-digtal-discount-tag {\n display: inline-block;\n height: 20px;\n line-height: 20px;\n border: 1px solid;\n padding: 0 5px;\n border-radius: 4px;\n}\n.kts-invoice-operate-goods-list-digtal .kts-invoice-operate-goods-list-table-tax-rate .ktsAnt3x-select-selection-selected-value {\n float: right;\n}\n.kts-invoice-operate-goods-list-digtal .kts-invoice-operate-freight-list-able {\n display: flex;\n padding: 10px;\n border-bottom: 2px solid #9F613E;\n gap: 10px;\n align-items: center;\n}\n.kts-invoice-operate-goods-list-digtal .ktsAntX-table .ktsAntX-table-row.kts-invoice-operate-goods-be-discount .ktsAntX-table-cell {\n color: #f00;\n}\n.kts-invoice-operate-goods-list-table-digtal .ktsAnt3x-form-item-control.has-error {\n border: 1px solid #f00;\n}\n.kts-invoice-operate-goods-list-table-digtal .kts-invoice-operate-goods-list-table.kts-invoice-operate-prefab .ktsAnt3x-table-row {\n color: rgba(0, 0, 0, 0.25);\n background: #f5f5f5;\n}\n.kts-invoice-operate-goods-list-table-digtal .kts-invoice-operate-goods-list-table-search-protrude {\n background: #ff0;\n color: #000;\n font-weight: bold;\n}\n";
29918
+ styleInject(css_248z$z);
29570
29919
 
29571
29920
  var PayList = /*#__PURE__*/function (_React$Component) {
29572
29921
  _inherits(PayList, _React$Component);
@@ -30176,8 +30525,8 @@ var getItemCode = function getItemCode(record, editGood) {
30176
30525
  return record.productCode;
30177
30526
  };
30178
30527
 
30179
- var css_248z$z = ".kts-invoice-operate-goods-endow-code-button-list {\n display: flex;\n flex-direction: column;\n}\n.kts-invoice-operate-goods-endow-code-button-list > button {\n margin-bottom: 10px;\n}\n";
30180
- styleInject(css_248z$z);
30528
+ var css_248z$A = ".kts-invoice-operate-goods-endow-code-button-list {\n display: flex;\n flex-direction: column;\n}\n.kts-invoice-operate-goods-endow-code-button-list > button {\n margin-bottom: 10px;\n}\n";
30529
+ styleInject(css_248z$A);
30181
30530
 
30182
30531
  var TreeNode = Tree.TreeNode;
30183
30532
  var confirm = Modal$1.confirm;
@@ -31401,8 +31750,8 @@ function AddComparisonDrawer() {
31401
31750
  // })
31402
31751
  // }
31403
31752
 
31404
- var css_248z$A = ".kts-invoice-operate-meitan-modal {\n display: flex;\n flex-direction: column;\n}\n.kts-invoice-operate-meitan-modal .kts-invoice-operate-meitan-title {\n line-height: 30px;\n}\n.kts-invoice-operate-meitan-modal .kts-invoice-operate-meitan-title .kts-invoice-operate-meitan-title2 {\n margin-left: 24px;\n}\n.kts-invoice-operate-meitan-modal .kts-invoice-operate-meitan-content {\n margin-top: 20px;\n padding: 20px;\n background-color: #f9fafd;\n}\n.kts-invoice-operate-meitan-modal .kts-invoice-operate-meitan-content .content-item {\n background-color: #fff;\n margin: 20px 24px;\n padding: 20px;\n}\n.kts-invoice-operate-meitan-modal .ktsAntX-space-item {\n margin: 5px 0;\n}\n.kts-invoice-operate-meitan-modal .ktsAntX-form-item-explain {\n margin-top: 20px;\n}\n.kts-invoice-operate-meitan-button {\n display: flex!important;\n justify-content: center;\n align-items: center;\n padding: 2px 20px!important;\n}\n";
31405
- styleInject(css_248z$A);
31753
+ var css_248z$B = ".kts-invoice-operate-meitan-modal {\n display: flex;\n flex-direction: column;\n}\n.kts-invoice-operate-meitan-modal .kts-invoice-operate-meitan-title {\n line-height: 30px;\n}\n.kts-invoice-operate-meitan-modal .kts-invoice-operate-meitan-title .kts-invoice-operate-meitan-title2 {\n margin-left: 24px;\n}\n.kts-invoice-operate-meitan-modal .kts-invoice-operate-meitan-content {\n margin-top: 20px;\n padding: 20px;\n background-color: #f9fafd;\n}\n.kts-invoice-operate-meitan-modal .kts-invoice-operate-meitan-content .content-item {\n background-color: #fff;\n margin: 20px 24px;\n padding: 20px;\n}\n.kts-invoice-operate-meitan-modal .ktsAntX-space-item {\n margin: 5px 0;\n}\n.kts-invoice-operate-meitan-modal .ktsAntX-form-item-explain {\n margin-top: 20px;\n}\n.kts-invoice-operate-meitan-button {\n display: flex!important;\n justify-content: center;\n align-items: center;\n padding: 2px 20px!important;\n}\n";
31754
+ styleInject(css_248z$B);
31406
31755
 
31407
31756
  var MeiTanModal = (function () {
31408
31757
  var controller = Invoice.useInvoiceController();
@@ -31664,6 +32013,8 @@ var Invoice = /*#__PURE__*/function (_React$PureComponent) {
31664
32013
 
31665
32014
  /** 特殊信息-不动产经营租赁服务(数电) */
31666
32015
 
32016
+ /** 特殊信息-不动产销售(数电) */
32017
+
31667
32018
  /** 特殊信息-建筑服务(数电) */
31668
32019
 
31669
32020
  /** 货物列表(数电) */
@@ -31700,6 +32051,7 @@ Invoice.Stakeholder = Stakeholder$1;
31700
32051
  Invoice.StakeFarmerholder = StakeFarmerholder;
31701
32052
  Invoice.SignDigtal = SignDigtal;
31702
32053
  Invoice.RealEstateInfo = RealEstateInfo;
32054
+ Invoice.RealEstateSales = RealEstateSales;
31703
32055
  Invoice.Architecture = Architecture;
31704
32056
  Invoice.FreightList = FreightList;
31705
32057
  Invoice.PayList = PayList;
@@ -31824,8 +32176,8 @@ var Digtal = function Digtal(props) {
31824
32176
  ), /*#__PURE__*/React.createElement(ImportGoodsDrawer, null), /*#__PURE__*/React.createElement(EndowCodeDrawer, null), /*#__PURE__*/React.createElement(MeiTanModal, null), " ");
31825
32177
  };
31826
32178
 
31827
- var css_248z$B = ".taxdetailsbox {\n display: flex;\n justify-content: flex-start;\n flex-direction: row;\n}\n.taxdetailsbox .taxrightbox {\n width: 340px;\n position: absolute;\n right: 30px;\n top: 79px;\n bottom: 50px;\n min-height: 300px;\n}\n.taxdetailsbox .taxrightbox .taxdesc {\n height: calc(100vh - 323px);\n min-height: 105px;\n overflow: auto;\n}\n";
31828
- styleInject(css_248z$B);
32179
+ var css_248z$C = ".taxdetailsbox {\n display: flex;\n justify-content: flex-start;\n flex-direction: row;\n}\n.taxdetailsbox .taxrightbox {\n width: 340px;\n position: absolute;\n right: 30px;\n top: 79px;\n bottom: 50px;\n min-height: 300px;\n}\n.taxdetailsbox .taxrightbox .taxdesc {\n height: calc(100vh - 323px);\n min-height: 105px;\n overflow: auto;\n}\n";
32180
+ styleInject(css_248z$C);
31829
32181
 
31830
32182
  function TaxClassificationModal(props) {
31831
32183
  var _props$info6;