binxie
2023-06-26 b5c5eb130ca0848124f9d136af4be142ad5aac07
force-app/main/default/lwc/lexSaleAndDelivery/lexSaleAndDelivery.js
@@ -15,15 +15,14 @@
        label: '出库日',
        fieldName: 'Outbound_Date__c',
        type: 'date',
        initialWidth: 130,
        hideDefaultActions: true,
        sortable: true
        sortable: true,
        wrapText: true,
    },
    {
        label: '出库单号',
        fieldName: 'url',
        type: 'url',
        initialWidth: 175,
        typeAttributes: {
            label: {
                fieldName: 'Name'
@@ -31,8 +30,8 @@
            target: '_blank'
        },
        hideDefaultActions: true,
        initialWidth: 225,
        sortable: true
        sortable: true,
        wrapText: true,
    },
    {
        label: '客户名',
@@ -45,21 +44,21 @@
        label: '科室',
        fieldName: 'Order_ForCustomerText__c',
        hideDefaultActions: true,
        initialWidth: 120
        wrapText: true,
    },
    {
        label: '出库单状态',
        fieldName: 'SummonsStatus_c__c',
        hideDefaultActions: true,
        sortable: true,
        initialWidth: 100
        wrapText: true,
    },
    {
        label: '开票状态',
        fieldName: 'Billed_Status__c',
        hideDefaultActions: true,
        sortable: true,
        initialWidth: 100
        wrapText: true,
    },
    {
        label: '未发票金额(元)',
@@ -69,13 +68,14 @@
        typeAttributes: {
            minimumFractionDigits: 2,
        },
        initialWidth: 150
        wrapText: true,
    },
    {
        label: '创建日期',
        fieldName: 'CreatedDate',
        hideDefaultActions: true,
        sortable: true,
        wrapText: true,
        type: "date",
        typeAttributes: {
            timeZone: "Asia/Shanghai",
@@ -85,7 +85,6 @@
            hour: "2-digit",
            minute: "2-digit"
        },
        initialWidth: 200
    }
];
export default class LexSaleAndDelivery extends NavigationMixin(LightningElement) {