randmarcomps 1.392.0 → 1.393.0
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.
- package/dist/randmarcomps.js +11 -0
- package/dist/randmarcomps.umd.cjs +6 -6
- package/package.json +1 -1
package/dist/randmarcomps.js
CHANGED
|
@@ -93743,6 +93743,13 @@ function RequisitionsTable({
|
|
|
93743
93743
|
enableSorting: !0,
|
|
93744
93744
|
enableFiltering: !0
|
|
93745
93745
|
},
|
|
93746
|
+
{
|
|
93747
|
+
accessorKey: "QuantityOrdered",
|
|
93748
|
+
header: "Quantity Ordered",
|
|
93749
|
+
cell: ({ row: S }) => S.original.QuantityOrdered ?? "—",
|
|
93750
|
+
enableSorting: !0,
|
|
93751
|
+
enableFiltering: !0
|
|
93752
|
+
},
|
|
93746
93753
|
{
|
|
93747
93754
|
accessorKey: "SubTotal",
|
|
93748
93755
|
header: "Sub Total",
|
|
@@ -93829,6 +93836,10 @@ function RequisitionsTable({
|
|
|
93829
93836
|
new Set(
|
|
93830
93837
|
o.map((_) => _.RequisitionDate).filter((_) => _ != null).map(String)
|
|
93831
93838
|
)
|
|
93839
|
+
), S.QuantityOrdered = Array.from(
|
|
93840
|
+
new Set(
|
|
93841
|
+
o.map((_) => _.QuantityOrdered).filter((_) => _ != null).map(String)
|
|
93842
|
+
)
|
|
93832
93843
|
), S.Location = Array.from(
|
|
93833
93844
|
new Set(o.map((_) => _.Location).filter((_) => _ != null))
|
|
93834
93845
|
), S.RequestedBy = Array.from(
|