This commit is contained in:
2026-08-07 15:44:19 +08:00
parent 56729c8cc9
commit a8c495a102
4 changed files with 710 additions and 81 deletions
+5
View File
@@ -12,8 +12,12 @@ export const config = {
exportName: '发货模板',
enableAllDept: false,
enableProjectSelect: true,
excludeVoidedProjects: true,
enableAttachmentTable: true,
enableTransportPlanForm: true,
enableShippingTemplateFreight: true,
editableRoadAddress: true,
fixedTransportAddressType: true,
enableTemplateCodePreview: true,
attachmentTitle: '附件',
defaultForm: {
@@ -178,6 +182,7 @@ export const option = {
labelWidth: '0px',
className: 'business-crud-page__full-form-item',
},
{ label: '运费信息', prop: 'freightJson', hide: true, display: false },
{
label: '',
prop: 'attachmentTitle',
+1 -1
View File
@@ -97,7 +97,7 @@ const formatGoodsInfo = row => {
const text = Object.entries(groups)
.map(([unit, group]) => {
const quantity = `${formatGoodsQuantity(group.quantity)}${unit}`;
return `${group.typeName}${group.count}货物 | ${quantity}`;
return `${group.typeName}${group.count}货物 | ${quantity}`;
})
.join('; ');