diff --git a/src/app/routes/order-management/components/bulk-detail/bulk-detail.component.html b/src/app/routes/order-management/components/bulk-detail/bulk-detail.component.html index 8109f880..3a0d5d54 100644 --- a/src/app/routes/order-management/components/bulk-detail/bulk-detail.component.html +++ b/src/app/routes/order-management/components/bulk-detail/bulk-detail.component.html @@ -4,7 +4,7 @@ * @Author : Shiming * @Date : 2021-12-06 20:20:26 * @LastEditors : Shiming - * @LastEditTime : 2022-04-14 10:08:12 + * @LastEditTime : 2022-04-14 20:03:33 * @FilePath : \\tms-obc-web\\src\\app\\routes\\order-management\\components\\bulk-detail\\bulk-detail.component.html * Copyright (C) 2022 huzhenhong. All rights reserved. --> @@ -127,7 +127,7 @@ - + + + + + 运费信息到货后{{i?.goodsResource.paymentDays}}天内支付运费 + +
+ {{ i?.freightPrice }}{{ i?.freightTypeLabel }} ({{ + i?.settlementBasisLabel }},{{ + i?.ruleLabel + }}) +
+ + + {{ item.price + item.surcharge | currency }} + + 到付 + {{item.price | currency}} + {{item.surcharge | currency}} + +
+ 总计:{{ i?.totalAmount | currency }} (运费{{ i?.totalFreight | + currency }}, + 附加费{{ i?.totalSurcharge | currency }},附加费率{{ i?.totalRate * 100 | number: '0.2-2' }}%) +
+
车队长:{{ i?.payeeName }}/{{ i?.payeePhone }}
diff --git a/src/app/routes/tax-management/components/individual-declare/individual-declare.component.ts b/src/app/routes/tax-management/components/individual-declare/individual-declare.component.ts index 0f7c54a0..39d9db59 100644 --- a/src/app/routes/tax-management/components/individual-declare/individual-declare.component.ts +++ b/src/app/routes/tax-management/components/individual-declare/individual-declare.component.ts @@ -53,9 +53,12 @@ export class TaxManagementIndividualDeclareComponent implements OnInit { * 查询参数 */ get reqParams() { - const params = Object.assign({}, this.sf?.value || {}, { - declareStatus: this.selectedIndex - }); + console.log(); + + const params = Object.assign({}, this.sf?.value || {}); + if(this.selectedIndex) { + params.declareStatus = this.selectedIndex + } delete params._$expand; return { ...params }; }