fantasy-ngzorro 1.0.28 → 1.0.29

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.
@@ -910,7 +910,7 @@
910
910
  /** @type {?} */
911
911
  var statusToColor = {
912
912
  // 黄色
913
- '#FAB13B': ['partshipped', 'committed'],
913
+ '#FAB13B': ['partshipped', 'committed', 'partValid'],
914
914
  // 灰色
915
915
  '#9FA4A2': ['initial', 'uncommitted', 'deleted'],
916
916
  // 红色
@@ -918,7 +918,7 @@
918
918
  // 蓝色
919
919
  '#3B77E3': ['audited', 'finished', 'adjusted', 'invoiced', 'audit'],
920
920
  // 绿色
921
- '#12A34F': ['shipped', 'received', 'checked', 'using', 'reverse'],
921
+ '#12A34F': ['shipped', 'received', 'checked', 'using', 'reverse', 'valid'],
922
922
  // 橙色
923
923
  '#F05B24': ['picking', 'partialReceived', 'partDelete']
924
924
  };
@@ -979,7 +979,7 @@
979
979
  HdDetailTipComponent.decorators = [
980
980
  { type: core.Component, args: [{
981
981
  selector: 'hd-detail-tip',
982
- template: "<nz-content class=\"hd-detail-tip-container\">\n <div class=\"hd-detail-tip-state\" [ngStyle]=\"{'background': statusColor || '#9FA4A2'}\" *ngIf=\"stateText\">{{stateText}}</div>\n <div class=\"hd-detail-tip-billNumber\">{{billNumber}}</div>\n &nbsp;&nbsp;/&nbsp;&nbsp;\n <div class=\"hd-detail-tip-name\">{{tip}}</div>\n</nz-content>\n",
982
+ template: "<nz-content class=\"hd-detail-tip-container\">\n <div *ngIf=\"stateText\" class=\"hd-detail-tip-state\" [ngStyle]=\"{'background': statusColor || '#9FA4A2'}\">{{stateText}}\n </div>\n <div class=\"hd-detail-tip-billNumber\">{{billNumber}}</div>\n <div *ngIf=\"tip\" class=\"hd-detail-tip-name\">&nbsp;&nbsp;/&nbsp;&nbsp;{{tip}}</div>\n</nz-content>",
983
983
  styles: ["::ng-deep .common-btn-group>a{font-size:12px;font-weight:400;color:#12a34f!important;white-space:nowrap}::ng-deep .common-btn-group .common-danger-btn:hover{color:#f05b24!important}::ng-deep .common-btn-group>a:hover{color:#20bd62!important}::ng-deep .common-btn-group>a:not(:last-child)::after{content:'';margin:0 2px}::ng-deep .common-billNumber>a{color:#3b77e3}button{box-shadow:unset;text-shadow:unset}::ng-deep .ant-form-item-label>label{color:#4b504e}::ng-deep .ant-input-number-input{height:28px}::ng-deep .ant-input-number{height:28px}textarea.ant-input{height:auto;min-height:28px}::ng-deep .ant-select-selection--multiple{min-height:28px}::ng-deep .ant-select-selection__rendered>ul>li{height:22px!important;margin-top:3px!important;line-height:22px!important}::ng-deep .ant-advanced-search-form .ant-form-item{margin-bottom:0!important}::ng-deep .ant-select-selection--single{height:28px!important}::ng-deep .ant-input{height:28px}::ng-deep .ant-input[disabled]:hover{border-color:#d9d9d9!important}::ng-deep .ant-select-selection__rendered{line-height:28px!important}::ng-deep .ant-calendar-range-picker-input{text-align:left!important}::ng-deep .ant-calendar-picker{width:100%!important}::ng-deep .ant-row{margin-right:0!important;margin-left:0!important}::ng-deep .ant-col-6{padding-left:12px;padding-right:12px}::ng-deep .ant-col-12{padding-left:12px;padding-right:12px}::ng-deep .ant-col-18{padding-left:12px;padding-right:12px}::ng-deep .ant-col-24{padding-left:12px;padding-right:12px}::ng-deep .ant-alert-info{background-color:#f5f8f6;border:1px solid #cfe3d4}:host ::ng-deep th{background:#f5f8f6!important;font-weight:700!important;white-space:nowrap;font-size:12px;font-family:PingFangSC-Medium,PingFang SC;color:#2a3634;padding:8px!important;box-sizing:border-box}:host ::ng-deep td{font-weight:400;font-style:normal;font-size:12px;color:#2a3634;text-align:left;white-space:nowrap;padding:8px!important;box-sizing:border-box}::ng-deep .ant-pagination-options{display:inline-flex;align-items:center}::ng-deep .ant-time-picker{width:100%}.hd-detail-tip-container{display:flex;align-items:center}.hd-detail-tip-container .hd-detail-tip-state{padding:2px 6px;border-radius:2px;font-size:12px;font-weight:500;color:#fff;margin-right:8px}.hd-detail-tip-container .hd-detail-tip-billNumber{font-size:16px;font-weight:500;color:#2a3634}.hd-detail-tip-container .hd-detail-tip-name{font-size:14px;font-weight:500;color:#5d7267}"]
984
984
  }] }
985
985
  ];